x-http-client
Version:
An http client to simplify sending requests (HTTP & JSONP) in the browser.
18 lines (15 loc) • 438 B
JavaScript
var watcher = require('@john-yuan/dev-browserify-watcher');
var watch = function () {
watcher.watch({
entry: 'lib/class/HttpClient.js',
output: 'dist/HttpClient.js',
paths: 'lib/**/*.js',
browserifyOptions: {
standalone: 'HttpClient',
debug: true,
detectGlobals: false,
plugin: [ 'bundle-collapser/plugin' ]
}
});
};
exports.watch = watch;