forked from maxerdwien/flot-cursors-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.js
40 lines (33 loc) · 1.15 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
33
34
35
36
37
38
39
40
/* eslint-disable */
var args = process.argv.slice(2);
var fs = require('fs');
var concat = require('concat');
var tmp = require('tmp');
var distDir = './dist/es5';
var distFile = 'jquery.flot.cursors.js';
if (!fs.existsSync(distDir)) {
fs.mkdirSync(distDir)
}
function concatenateFiles(destinationPath, callback) {
concat([
'./jquery.flot.cursors.js',
'./jquery.thumb.plugin.js'
], destinationPath);
}
if (args[0] === 'test') {
console.log('testing distribution ...');
var tmpobj = tmp.fileSync();
concatenateFiles(tmpobj.name, function(err, result) {
var origBuild = fs.readFileSync(distDir + '/' + distFile, 'utf8');
var newBuild = fs.readFileSync(tmpobj.name, 'utf8');
if (newBuild !== origBuild) {
console.log('The distribution file dist/es5/jquery.flot.cursors.js is not up to date. Type "npm run build" to fix it !');
process.exitCode = 1;
return;
}
console.log('Ok');
});
} else {
console.log('building ', distDir + '/' + distFile);
concatenateFiles(distDir + '/' + distFile);
}