diff --git a/README.md b/README.md index 00222b7..29152c0 100644 --- a/README.md +++ b/README.md @@ -29,11 +29,11 @@ gulp.task('vue-compile', function() { * v0: Vueify's API is used internally. Therefore, any valid option for Vueify is valid here as well. See [Vueify options here](https://github.com/vuejs/vueify#configuring-options). Additionally, `options.ESModules` boolean option is available for removing the closure that Vueify adds automatically (which breaks ES modules). Passing `modules: false` in Babel's `env` preset automatically activates this option. -* v1: Will use [`vue-component-compiler`](https://github.com/vuejs/vue-component-compiler) internally when it's ready ([info here](https://github.com/vuejs/vue-component-compiler/issues/28)). +* v1: Uses [`vue-component-compiler`](https://github.com/vuejs/vue-component-compiler) internally ([more info here](https://github.com/vuejs/vue-component-compiler/issues/28)). `options.esModule` (default `true`), `options.parserConfig`, `options.templateCompilerConfig`, `options.babel`. Beta release does not support `style` tags. ## Examples -* v0: Compiling `*.vue` components to plain JavaScript using Babel and ES modules: +* Compiling `*.vue` components to plain JavaScript using Babel and ES modules: ```javascript return gulp.src('components/**/*.vue') @@ -43,7 +43,7 @@ return gulp.src('components/**/*.vue') babelrc: false, presets: [ ['env', { - modules: false, // Keep ES modules + modules: false, // Keep ES modules in 'script' tag targets: { browsers: [ '> 1%', 'last 2 versions' ] } diff --git a/package.json b/package.json index 1e4aba4..c4307f4 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "gulp-vue-compiler", - "version": "0.0.1", + "version": "1.0.0-beta.0", "description": "Vue single file component compiler plugin for Gulp", "main": "index.js", "scripts": {