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

storm-component-boilerplate

Package Overview
Dependencies
Maintainers
1
Versions
22
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

storm-component-boilerplate - npm Package Compare versions

Comparing version 0.2.8 to 0.2.9

23

gulpfile.js

@@ -84,13 +84,15 @@ /*global require*/

gulp.task('js:async', function() {
return gulp.src('src/*.js')
gulp.task('js:es5-browserify', function() {
return browserify({
entries: 'src/' + pkg.name + '.js',
debug: true
})
.transform(babelify, {presets: ['es2015']})
.bundle()
.pipe(source(pkg.name + '.js'))
.pipe(buffer())
.pipe(uglify())
.pipe(header(banner, {pkg : pkg}))
.pipe(browserify({
insertGlobals : true,
debug : false,
standalone: componentName()
}))
.pipe(uglify())
.pipe(rename({suffix: '.async.min'}))
.pipe(gulp.dest('dist'));
.pipe(rename({suffix: '.standalone'}))
.pipe(gulp.dest('dist/'));
});

@@ -106,2 +108,3 @@

gulp.task('js', ['js:es6', 'js:es5']);
// gulp.task('js', ['js:es6', 'js:es5-browserify']);

@@ -108,0 +111,0 @@ gulp.task('copy', function() {

{
"name": "storm-component-boilerplate",
"version": "0.2.8",
"version": "0.2.9",
"description": "",

@@ -5,0 +5,0 @@ "author": "stormid",

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