|
|
@ -1,5 +1,6 @@ |
|
|
|
const fs = require('fs') |
|
|
|
const fs = require('fs') |
|
|
|
const path = require('path') |
|
|
|
const path = require('path') |
|
|
|
|
|
|
|
const pump = require('pump') |
|
|
|
const browserify = require('browserify') |
|
|
|
const browserify = require('browserify') |
|
|
|
const tests = fs.readdirSync(path.join(__dirname, 'lib')) |
|
|
|
const tests = fs.readdirSync(path.join(__dirname, 'lib')) |
|
|
|
const bundlePath = path.join(__dirname, 'bundle.js') |
|
|
|
const bundlePath = path.join(__dirname, 'bundle.js') |
|
|
@ -9,11 +10,16 @@ const b = browserify() |
|
|
|
const writeStream = fs.createWriteStream(bundlePath) |
|
|
|
const writeStream = fs.createWriteStream(bundlePath) |
|
|
|
|
|
|
|
|
|
|
|
tests.forEach(function (fileName) { |
|
|
|
tests.forEach(function (fileName) { |
|
|
|
b.add(path.join(__dirname, 'lib', fileName)) |
|
|
|
const filePath = path.join(__dirname, 'lib', fileName) |
|
|
|
|
|
|
|
console.log(`bundling test "${filePath}"`) |
|
|
|
|
|
|
|
b.add(filePath) |
|
|
|
}) |
|
|
|
}) |
|
|
|
|
|
|
|
|
|
|
|
b.bundle() |
|
|
|
pump( |
|
|
|
.pipe(writeStream) |
|
|
|
b.bundle(), |
|
|
|
.on('error', (err) => { |
|
|
|
writeStream, |
|
|
|
throw err |
|
|
|
(err) => { |
|
|
|
}) |
|
|
|
if (err) throw err |
|
|
|
|
|
|
|
console.log('bundle completed.') |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
) |