123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385 |
- /*-----------------------------------------------------------------------------
- | Copyright (c) Jupyter Development Team.
- | Distributed under the terms of the Modified BSD License.
- |----------------------------------------------------------------------------*/
- /**
- * Ensure the integrity of the packages in the repo.
- *
- * Ensure the core package version dependencies match everywhere.
- * Ensure imported packages match dependencies.
- * Ensure a consistent version of all packages.
- * Manage the metapackage meta package.
- */
- import * as path from 'path';
- import * as utils from './utils';
- import { ensurePackage, IEnsurePackageOptions } from './ensure-package';
- type Dict<T> = { [key: string]: T };
- // Data to ignore.
- let MISSING: Dict<string[]> = {
- '@jupyterlab/buildutils': ['path'],
- '@jupyterlab/testutils': ['fs'],
- '@jupyterlab/vega4-extension': ['vega-embed'],
- '@jupyterlab/vega5-extension': ['vega-embed']
- };
- let UNUSED: Dict<string[]> = {
- '@jupyterlab/apputils': ['@types/react'],
- '@jupyterlab/application': ['font-awesome'],
- '@jupyterlab/apputils-extension': ['es6-promise'],
- '@jupyterlab/services': ['node-fetch', 'ws'],
- '@jupyterlab/testutils': ['node-fetch', 'identity-obj-proxy'],
- '@jupyterlab/test-csvviewer': ['csv-spectrum'],
- '@jupyterlab/vega4-extension': ['vega', 'vega-lite'],
- '@jupyterlab/vega5-extension': ['vega', 'vega-lite'],
- '@jupyterlab/ui-components': ['@blueprintjs/icons']
- };
- // Packages that are allowed to have differing versions
- let DIFFERENT_VERSIONS: Array<string> = ['vega-lite', 'vega', 'vega-embed'];
- let SKIP_CSS: Dict<string[]> = {
- '@jupyterlab/application': ['@jupyterlab/rendermime'],
- '@jupyterlab/application-extension': ['@jupyterlab/apputils'],
- '@jupyterlab/completer': ['@jupyterlab/codeeditor'],
- '@jupyterlab/docmanager': ['@jupyterlab/statusbar'], // Statusbar styles should not be used by status reporters
- '@jupyterlab/docregistry': [
- '@jupyterlab/codeeditor', // Only used for model
- '@jupyterlab/codemirror', // Only used for Mode.findByFileName
- '@jupyterlab/rendermime' // Only used for model
- ],
- '@jupyterlab/documentsearch': [
- '@jupyterlab/cells',
- '@jupyterlab/codeeditor',
- '@jupyterlab/codemirror',
- '@jupyterlab/fileeditor',
- '@jupyterlab/notebook'
- ],
- '@jupyterlab/filebrowser': ['@jupyterlab/statusbar'],
- '@jupyterlab/fileeditor': ['@jupyterlab/statusbar'],
- '@jupyterlab/help-extension': ['@jupyterlab/application'],
- '@jupyterlab/shortcuts-extension': ['@jupyterlab/application'],
- '@jupyterlab/tabmanager-extension': ['@jupyterlab/application'],
- '@jupyterlab/theme-dark-extension': [
- '@jupyterlab/application',
- '@jupyterlab/apputils'
- ],
- '@jupyterlab/theme-light-extension': [
- '@jupyterlab/application',
- '@jupyterlab/apputils'
- ],
- '@jupyterlab/ui-extension': ['@blueprintjs/icons']
- };
- let pkgData: Dict<any> = {};
- let pkgPaths: Dict<string> = {};
- let pkgNames: Dict<string> = {};
- let depCache: Dict<string> = {};
- let locals: Dict<string> = {};
- /**
- * Ensure the metapackage package.
- *
- * @returns An array of messages for changes.
- */
- function ensureMetaPackage(): string[] {
- let basePath = path.resolve('.');
- let mpPath = path.join(basePath, 'packages', 'metapackage');
- let mpJson = path.join(mpPath, 'package.json');
- let mpData = utils.readJSONFile(mpJson);
- let messages: string[] = [];
- let seen: Dict<boolean> = {};
- utils.getCorePaths().forEach(pkgPath => {
- if (path.resolve(pkgPath) === path.resolve(mpPath)) {
- return;
- }
- let name = pkgNames[pkgPath];
- if (!name) {
- return;
- }
- seen[name] = true;
- let data = pkgData[name];
- let valid = true;
- // Ensure it is a dependency.
- if (!mpData.dependencies[name]) {
- valid = false;
- mpData.dependencies[name] = '^' + data.version;
- }
- if (!valid) {
- messages.push(`Updated: ${name}`);
- }
- });
- // Make sure there are no extra deps.
- Object.keys(mpData.dependencies).forEach(name => {
- if (!(name in seen)) {
- messages.push(`Removing dependency: ${name}`);
- delete mpData.dependencies[name];
- }
- });
- // Write the files.
- if (messages.length > 0) {
- utils.writePackageData(mpJson, mpData);
- }
- // Update the global data.
- pkgData[mpData.name] = mpData;
- return messages;
- }
- /**
- * Ensure the jupyterlab application package.
- */
- function ensureJupyterlab(): string[] {
- let basePath = path.resolve('.');
- let corePath = path.join(basePath, 'dev_mode', 'package.json');
- let corePackage = utils.readJSONFile(corePath);
- corePackage.jupyterlab.extensions = {};
- corePackage.jupyterlab.mimeExtensions = {};
- corePackage.jupyterlab.linkedPackages = {};
- corePackage.dependencies = {};
- let singletonPackages = corePackage.jupyterlab.singletonPackages;
- let vendorPackages = corePackage.jupyterlab.vendor;
- utils.getCorePaths().forEach(pkgPath => {
- let dataPath = path.join(pkgPath, 'package.json');
- let data: any;
- try {
- data = utils.readJSONFile(dataPath);
- } catch (e) {
- return;
- }
- // Determine whether to include the package.
- if (!data.jupyterlab) {
- return;
- }
- // Skip if explicitly marked as not a core dep.
- if (
- 'coreDependency' in data.jupyterlab &&
- !data.jupyterlab.coreDependency
- ) {
- return;
- }
- // Skip if it is not marked as an extension or a core dep.
- if (
- !data.jupyterlab.coreDependency &&
- !data.jupyterlab.extension &&
- !data.jupyterlab.mimeExtension
- ) {
- return;
- }
- // Make sure it is included as a dependency.
- corePackage.dependencies[data.name] = '^' + String(data.version);
- // Add its dependencies to the core dependencies if they are in the
- // singleton packages or vendor packages.
- let deps = data.dependencies || {};
- for (let dep in deps) {
- if (singletonPackages.indexOf(dep) !== -1) {
- corePackage.dependencies[dep] = deps[dep];
- }
- if (vendorPackages.indexOf(dep) !== -1) {
- corePackage.dependencies[dep] = deps[dep];
- }
- }
- let jlab = data.jupyterlab;
- if (!jlab) {
- return;
- }
- // Handle extensions.
- ['extension', 'mimeExtension'].forEach(item => {
- let ext = jlab[item];
- if (ext === true) {
- ext = '';
- }
- if (typeof ext !== 'string') {
- return;
- }
- corePackage.jupyterlab[item + 's'][data.name] = ext;
- });
- });
- utils.getLernaPaths().forEach(pkgPath => {
- let dataPath = path.join(pkgPath, 'package.json');
- let data: any;
- try {
- data = utils.readJSONFile(dataPath);
- } catch (e) {
- return;
- }
- // watch all src, build, and test files in the Jupyterlab project
- let relativePath = utils.ensureUnixPathSep(
- path.join('..', path.relative(basePath, pkgPath))
- );
- corePackage.jupyterlab.linkedPackages[data.name] = relativePath;
- });
- // Write the package.json back to disk.
- if (utils.writePackageData(corePath, corePackage)) {
- return ['Updated dev mode'];
- }
- return [];
- }
- /**
- * Ensure the repo integrity.
- */
- export async function ensureIntegrity(): Promise<boolean> {
- let messages: Dict<string[]> = {};
- // Pick up all the package versions.
- let paths = utils.getLernaPaths();
- // These two are not part of the workspaces but should be kept
- // in sync.
- paths.push('./jupyterlab/tests/mock_packages/extension');
- paths.push('./jupyterlab/tests/mock_packages/mimeextension');
- const cssImports: Dict<Array<string>> = {};
- // Get the package graph.
- const graph = utils.getPackageGraph();
- // Gather all of our package data and other metadata.
- paths.forEach(pkgPath => {
- // Read in the package.json.
- let data: any;
- try {
- data = utils.readJSONFile(path.join(pkgPath, 'package.json'));
- } catch (e) {
- console.error(e);
- return;
- }
- pkgData[data.name] = data;
- pkgPaths[data.name] = pkgPath;
- pkgNames[pkgPath] = data.name;
- locals[data.name] = pkgPath;
- });
- // Build up an ordered list of CSS imports for each local package.
- Object.keys(locals).forEach(name => {
- const data = pkgData[name];
- const deps: Dict<string> = data.dependencies || {};
- const skip = SKIP_CSS[name] || [];
- const cssData: Dict<Array<string>> = {};
- if (data.jupyterlab && data.jupyterlab.extraStyles) {
- Object.keys(data.jupyterlab.extraStyles).forEach(depName => {
- cssData[depName] = data.jupyterlab.extraStyles[depName];
- });
- }
- Object.keys(deps).forEach(depName => {
- // Bail for skipped imports and known extra styles.
- if (skip.indexOf(depName) !== -1 || depName in cssData) {
- return;
- }
- const depData = graph.getNodeData(depName);
- if (depData.style) {
- cssData[depName] = [depData.style];
- }
- });
- // Get our CSS imports in dependency order.
- cssImports[name] = [];
- graph.dependenciesOf(name).forEach(depName => {
- if (depName in cssData) {
- cssData[depName].forEach(cssPath => {
- cssImports[name].push(`${depName}/${cssPath}`);
- });
- }
- });
- });
- // Update the metapackage.
- let pkgMessages = ensureMetaPackage();
- if (pkgMessages.length > 0) {
- let pkgName = '@jupyterlab/metapackage';
- if (!messages[pkgName]) {
- messages[pkgName] = [];
- }
- messages[pkgName] = messages[pkgName].concat(pkgMessages);
- }
- // Validate each package.
- for (let name in locals) {
- let unused = UNUSED[name] || [];
- // Allow jest-junit to be unused in the test suite.
- if (name.indexOf('@jupyterlab/test-') === 0) {
- unused.push('jest-junit');
- }
- let options: IEnsurePackageOptions = {
- pkgPath: pkgPaths[name],
- data: pkgData[name],
- depCache,
- missing: MISSING[name],
- unused,
- locals,
- cssImports: cssImports[name],
- differentVersions: DIFFERENT_VERSIONS
- };
- if (name === '@jupyterlab/metapackage') {
- options.noUnused = false;
- }
- let pkgMessages = await ensurePackage(options);
- if (pkgMessages.length > 0) {
- messages[name] = pkgMessages;
- }
- }
- // Handle the top level package.
- let corePath = path.resolve('.', 'package.json');
- let coreData: any = utils.readJSONFile(corePath);
- if (utils.writePackageData(corePath, coreData)) {
- messages['top'] = ['Update package.json'];
- }
- // Handle the JupyterLab application top package.
- pkgMessages = ensureJupyterlab();
- if (pkgMessages.length > 0) {
- let pkgName = '@jupyterlab/application-top';
- if (!messages[pkgName]) {
- messages[pkgName] = [];
- }
- messages[pkgName] = messages[pkgName].concat(pkgMessages);
- }
- // Handle any messages.
- if (Object.keys(messages).length > 0) {
- console.log(JSON.stringify(messages, null, 2));
- if ('--force' in process.argv) {
- console.log(
- '\n\nPlease run `jlpm run integrity` locally and commit the changes'
- );
- process.exit(1);
- }
- utils.run('jlpm install');
- console.log('\n\nMade integrity changes!');
- console.log('Please commit the changes by running:');
- console.log('git commit -a -m "Package integrity updates"');
- return false;
- }
- console.log('Repo integrity verified!');
- return true;
- }
- if (require.main === module) {
- void ensureIntegrity();
- }
|