在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
开源软件名称(OpenSource Name):deepak1556/gulp-browserify开源软件地址(OpenSource Url):https://github.com/deepak1556/gulp-browserify开源编程语言(OpenSource Language):JavaScript 100.0%开源软件介绍(OpenSource Introduction):gulp-bro for a similar plugin, or the recipes by gulp team for reference on using browserify with gulp.NOTE: THIS PLUGIN IS NO LONGER MAINTAINED , checkoutgulp-browserify
UsageInstall
Examplevar gulp = require('gulp');
var browserify = require('gulp-browserify');
// Basic usage
gulp.task('scripts', function() {
// Single entry point to browserify
gulp.src('src/js/app.js')
.pipe(browserify({
insertGlobals : true,
debug : !gulp.env.production
}))
.pipe(gulp.dest('./build/js'))
}); Make sure to pipe only entry points. Browserify will take care of other dependencies for you. OptionstransformType : Specifies a pipeline of functions (or module names) through which the browserified bundle will be run. Check out the list of transforms on node-browserify. Languages that compile to JavaScriptIf you want to bundle files with extensions other than Let's say you want to browserify CoffeeScript, install var gulp = require('gulp');
var browserify = require('gulp-browserify');
var rename = require('gulp-rename');
gulp.task('coffee', function() {
gulp.src('src/coffee/app.coffee', { read: false })
.pipe(browserify({
transform: ['coffeeify'],
extensions: ['.coffee']
}))
.pipe(rename('app.js'))
.pipe(gulp.dest('./build/js'))
}); If you forget debugType : Enable source map support. extensionsType: Array of extensions that you want to skip in With ignoreType: Array of paths which should be passed to the ignore function of browserify. resolveType: Custom module name resolution function. From node-browserify documentation:
Obviously, this function must implement the same API as browser-resolve. Other OptionsAny other options you provide will be passed through to browserify. This is useful for setting things like Custom optionsnobuiltinsRemove builtins modules defined in gulp.task('scripts', function() {
gulp.src(['src/index.js'])
.pipe(browserify({
nobuiltins: 'events querystring'
}))
.pipe(gulp.dest('./build/js'))
}); Browserify-ShimExample configuration gulp.task('scripts', function() {
//single entry point to browserify
gulp.src(['src/index.js'])
.pipe(browserify({
shim: {
angular: {
path: '/vendor/angular/angular.js',
exports: 'angular'
},
'angular-route': {
path: '/vendor/angular-route/angular-route.js',
exports: 'ngRoute',
depends: {
angular: 'angular'
}
}
}
}))
.pipe(concat('dest.js'))
.pipe(gulp.dest('./build'))
}); More information about configuring browserify-shim can be found here. EventsOther than standard Node.js stream events, gulp-browserify emits its own events. prebundle.on('prebundle', function(bundler){}) Event triggered just before invoking This is especially useful if you want to gulp.task('scripts', function() {
gulp.src('src/js/app.js')
.pipe(browserify({
insertGlobals : true,
debug : !gulp.env.production
}))
.on('prebundle', function(bundle) {
bundle.external('domready');
bundle.external('react');
})
.pipe(gulp.dest('./build/js'))
}); postbundle.on('postbundle', function(src){}) Event triggered after the bundle process is over and provides the bundled data as an argument to the callback. LicenseCopyright (c) 2014 Robo (deepak1556) https://github.com/deepak1556 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. |
2023-10-27
2022-08-15
2022-08-17
2022-09-23
2022-08-13
请发表评论