diff --git a/.circleci/config.yml b/.circleci/config.yml index 43040f9..03d74ca 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -3,7 +3,7 @@ jobs: build: working_directory: ~/project docker: - - image: alekzonder/puppeteer # base pluginImage: node/8-slim + - image: circleci/node:12-browsers steps: - checkout - run: diff --git a/CHANGELOG.md b/CHANGELOG.md index 68120e2..e9e48e6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,18 @@ All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines. + +## [5.1.7](https://github.com/vuejs/rollup-plugin-vue/compare/v5.1.6...v5.1.7) (2020-05-11) + + +### Bug Fixes + +* bump component-compiler to allow tree-shaking ([a85e6d9](https://github.com/vuejs/rollup-plugin-vue/commit/a85e6d9)) +* provide scopeId to template compiler when the component has scoped styles ([#337](https://github.com/vuejs/rollup-plugin-vue/issues/337)) ([1fec2c5](https://github.com/vuejs/rollup-plugin-vue/commit/1fec2c5)) +* some wording ([#339](https://github.com/vuejs/rollup-plugin-vue/issues/339)) ([6a94a53](https://github.com/vuejs/rollup-plugin-vue/commit/6a94a53)) + + + ## [5.1.6](https://github.com/vuejs/rollup-plugin-vue/compare/v5.1.5...v5.1.6) (2020-01-22) diff --git a/README.md b/README.md index be2df1f..53b52cc 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,7 @@ ## Introduction -As vue-loader is for webpack and vueify is for browserify, similarly its for rollup. As we know, webpack and browserify concat stuff and make it runnable in browser. Its difficult to share .vue components. **Now roll your [Vue](http://vuejs.org/) components.** +As vue-loader is for webpack and vueify is for browserify, so is this for rollup. As we know, webpack and browserify concat stuff and make it runnable in the browser. It's difficult to share .vue components. **Now roll your [Vue](http://vuejs.org/) components.** With rollup you can break your application into reusable modules. diff --git a/cookbook/ssr/package.json b/cookbook/ssr/package.json index 954f7a4..edffa57 100644 --- a/cookbook/ssr/package.json +++ b/cookbook/ssr/package.json @@ -5,7 +5,7 @@ }, "main": "./dist/MyComponent.js", "devDependencies": { - "rollup": "^0.59.4", + "rollup": "^1.1.0", "rollup-plugin-vue": "link:../.." } } diff --git a/cookbook/ssr/src/MyComponent.vue b/cookbook/ssr/src/MyComponent.vue index 9d14df0..1e8647a 100644 --- a/cookbook/ssr/src/MyComponent.vue +++ b/cookbook/ssr/src/MyComponent.vue @@ -1,5 +1,7 @@