gulp-instant-vue
v1.0.0
Published
Only pass through a compiled vue file where one of it's components (a separate .html or .js) have been changed.
Downloads
4
Maintainers
Readme
gulp-instant-vue
Only pass through a compiled vue file where one of it's components (a separate .html or .js) have been changed.
This plugin is heavily based on two other plugins, to meet the need for compiling separate files into vue files. The plugins in question are gulp-vuemaker and gulp-changed-in-place.
Install
$ yarn add gulp-instant-vue --dev
Usage
var gulp = require('gulp')
var watch = require('gulp-watch')
var instantVue = require('gulp-instant-vue')
var source = ['src/app/**/*.+(js|html)']
gulp.task('watch', function () {
return watch(source, function () {
gulp.src(source)
.pipe(instantVue())
.pipe(gulp.dest('build'))
})
})
API
instantVue(options)
firstPass
boolean
Default =
false
Makes
gulp-instant-vue
pass through all files once on the first run.
cache
Object
Default = as global variable
Object of {key: value} for all the files. Value will be hash.
License
The MIT License (MIT)
Copyright (c) 2017 John Wennstrøm
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.