Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@belym.a.2105/gulp-webmake

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@belym.a.2105/gulp-webmake

> Bundles CommonJS and Node.JS modules for web browsers using Gulp.

  • 0.0.43
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
2
increased by100%
Maintainers
1
Weekly downloads
 
Created
Source

gulp-webmake

Bundles CommonJS and Node.JS modules for web browsers using Gulp.

Usage

Install this plugin using npm:

npm install --save-dev gulp-webmake

In order to save the bundle lib/index.js and lib/client.js in build/, add this to your gulpfile.js:

var webmake = require('gulp-webmake');

gulp.task('templates', function(){
  gulp.src([
    'lib/index.js',
    'lib/client.js'
  ])
  .pipe(webmake())
  .pipe(gulp.dest('build/'));
});

Options

The gulp-webmake plugin takes an optional options object which is passed through to webmake.

Please refer to the webmake documentation for further details as well as why webmake could be an alternative to https://github.com/substack/node-browserify.

Changelog

0.0.41 - 09/25/2016

  • updating to recent versions of the module's dependencies
  • updating fixtures to match the output of webmake 0.3.40
  • Renaming spec folder to test

0.0.4 - 04/15/2015

  • updating to recent versions of the module's dependencies

0.0.3 - 02/10/2015

  • updating to recent versions of the module's dependencies
  • updated tests

0.0.2 - 07/05/2014

  • upgrade to through2
  • throws an error on streams (currently not supported by webmake)
  • improved error handling using PluginError
  • push null file instead of null literal when file.isNull()
  • re-use file and push it so it can also be processed
  • return next() so the next gulp plugin gets run

0.0.1 - 05/26/2014

Initial release.

Contributors

Licence

MIT

Keywords

FAQs

Package last updated on 07 Apr 2020

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