-
-
Notifications
You must be signed in to change notification settings - Fork 87
/
Copy pathbuild.js
32 lines (26 loc) · 1.03 KB
/
build.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
'use strict';
var request = require('request')
, fs = require('fs')
, path = require('path')
, browserify = require('browserify')
;
function bundle() {
// This is function is the important part and should be similar to what you would use for your project
var builtFile = path.join(__dirname, 'js', 'bundle.js');
browserify()
// this resolves main file of our package
.require(require.resolve('./'), { entry: true })
.bundle({ debug: true })
.on('end', function () {
console.log('Build succeeded, open index.html to see the result.');
})
.on('error', console.error.bind(console))
.pipe(fs.createWriteStream(builtFile, 'utf8'))
}
// Normally jquery.js would be in vendor folder already, but I wanted to avoid spreading jquerys all over github ;)
// So lets download jquery and then run the bundler.
request('http://code.jquery.com/jquery-1.8.3.min.js', function(err, resp, body) {
var jqueryFile = path.join(__dirname, 'js/vendor/jquery.js');
fs.writeFileSync(jqueryFile, body);
bundle();
});