
Research
Malicious npm Packages Impersonate Flashbots SDKs, Targeting Ethereum Wallet Credentials
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
gulp-vue-compiler-fix
Advanced tools
This plugin compiles Vue single file components (SFC) to plain JavaScript.
npm install gulp-vue-compiler --save-dev
Any other plugin or dependency such as babel-core
should be installed as well.
var vueCompiler = require('gulp-vue-compiler');
gulp.task('vue-compile', function() {
return gulp.src('components/**/*.vue')
.pipe(vueCompiler({ /* options */ }))
.pipe(gulp.dest('./dist/'));
});
options.newExtension
: Optionally modifies the output files extension to the new string.
v0: Vueify's API is used internally. Therefore, any valid option for Vueify is valid here as well. See Vueify options here. 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: Uses vue-component-compiler
internally (more info here). options.esModule
(default true
), options.parserConfig
, options.templateCompilerConfig
, options.babel
. Beta release does not support style
tags.
*.vue
components to plain JavaScript using Babel and ES modules:return gulp.src('components/**/*.vue')
.pipe(vueCompiler({
newExtension: 'js', // *.vue => *.js
babel: {
babelrc: false,
presets: [
['env', {
modules: false, // Keep ES modules in 'script' tag
targets: {
browsers: [ '> 1%', 'last 2 versions' ]
}
}],
'stage-3'
]
}
}))
.pipe(gulp.dest('./dist/'));
FAQs
Vue single file component compiler plugin for Gulp
The npm package gulp-vue-compiler-fix receives a total of 2 weekly downloads. As such, gulp-vue-compiler-fix popularity was classified as not popular.
We found that gulp-vue-compiler-fix demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
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.
Research
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
Security News
Ruby maintainers from Bundler and rbenv teams are building rv to bring Python uv's speed and unified tooling approach to Ruby development.
Security News
Following last week’s supply chain attack, Nx published findings on the GitHub Actions exploit and moved npm publishing to Trusted Publishers.