1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- /* -----------------------------------------------------------------------------
- | Copyright (c) Jupyter Development Team.
- | Distributed under the terms of the Modified BSD License.
- |----------------------------------------------------------------------------*/
- import * as fs from 'fs-extra';
- import * as path from 'path';
- import * as glob from 'glob';
- import { exitOnUuncaughtException, readJSONFile } from './utils';
- exitOnUuncaughtException();
- // Get all of the packages.
- const basePath = path.resolve('.');
- const baseConfig = readJSONFile(path.join(basePath, 'package.json'));
- const packageConfig = baseConfig.workspaces.packages;
- const skipSource = process.argv.indexOf('packages') === -1;
- const skipExamples = process.argv.indexOf('examples') === -1;
- // Handle the packages
- for (let i = 0; i < packageConfig.length; i++) {
- if (skipSource && packageConfig[i] === 'packages/*') {
- continue;
- }
- if (skipExamples && packageConfig[i] === 'examples/*') {
- continue;
- }
- const files = glob.sync(path.join(basePath, packageConfig[i]));
- for (let j = 0; j < files.length; j++) {
- try {
- handlePackage(files[j]);
- } catch (e) {
- console.error(e);
- }
- }
- }
- /**
- * Handle an individual package on the path - update the dependency.
- */
- function handlePackage(packagePath: string): void {
- // Read in the package.json.
- const packageJSONPath = path.join(packagePath, 'package.json');
- let data: any;
- try {
- data = require(packageJSONPath);
- } catch (e) {
- console.debug('skipping', packagePath);
- return;
- }
- if (!data.scripts || !data.scripts.clean) {
- return;
- }
- const targets = data.scripts.clean.split('&&');
- for (let i = 0; i < targets.length; i++) {
- let target = targets[i].replace('rimraf', '').trim();
- target = path.join(packagePath, target);
- if (fs.existsSync(target)) {
- fs.removeSync(target);
- }
- }
- }
|