x-query-string
Version:
A query string encoder and decoder. Can be used to encode arrays and objects.
17 lines (15 loc) • 467 B
JavaScript
var watcher = require('@john-yuan/dev-browserify-watcher');
exports.watch = function () {
watcher.watch({
entry: 'index.js',
output: 'dist/querystring.js',
paths: ['util/**/*.js', 'index.js', 'encode.js', 'decode.js'],
browserifyOptions: {
debug: true,
standalone: 'QS',
detectGlobals: false,
plugin: [ 'bundle-collapser/plugin' ]
},
chokidarOptions: {},
});
};