New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

gulp-vuejs

Package Overview
Dependencies
Maintainers
1
Versions
6
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

gulp-vuejs

Fast and uncomplicated .vue file compiler for Gulp.

  • 1.0.3
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
0
decreased by-100%
Maintainers
1
Weekly downloads
 
Created
Source

gulp-vue

Plain and simple fast(blazingly if you wish) and uncomplicated .vue file compiler for Gulp. Compiles all templates to an object. Template namespace is configurable and filled dynamically based on your template app structure. No inline stylesheets and javascripts. This is bad practice.

Install

With npm do:

npm install gulp-vue --save-dev

Then use it in your gulp file like:

const vue = require('gulp-vue')

gulp.task('templates', 'Builds all Vue components.', () => {
    gulp.src('./src/js/**/*.vue')
    .pipe(vue('templates.js', {
        namespace: 'global.tpl',
        prefixStart: 'modules',
        prefixIgnore: ['templates'],
    }))
    .on('error', notify.onError('Error: <%= error.message %>'))
    .pipe(size(extend({title: 'templates'}, sizeOptions)))
    .pipe(gulp.dest(BUILD_DIR))
    .pipe(ifElse(watcher, livereload))
})

Keywords

FAQs

Package last updated on 10 May 2017

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc