123456789101112131415161718192021222324 |
- // Copyright (c) Jupyter Development Team.
- // Distributed under the terms of the Modified BSD License.
- var childProcess = require('child_process');
- var fs = require('fs');
- // Build all of the example folders.
- dirs = fs.readdirSync('examples');
- var cmd;
- for (var i = 0; i < dirs.length; i++) {
- if (dirs[i].indexOf('.') !== -1) {
- continue;
- }
- if (dirs[i].indexOf('node_modules') !== -1) {
- continue;
- }
- console.log('Building: ' + dirs[i] + '...');
- process.chdir('examples/' + dirs[i]);
- childProcess.execSync('npm run update', { stdio: [0, 1, 2] });
- childProcess.execSync('npm run build', { stdio: [0, 1, 2] });
- process.chdir('../..');
- }
- console.log('\n********\nDone!');
|