@teambit/bit 2.0.71 → 2.0.73

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/bootstrap.js CHANGED
@@ -47,6 +47,13 @@ function _cli() {
47
47
  };
48
48
  return data;
49
49
  }
50
+ function _path() {
51
+ const data = _interopRequireDefault(require("path"));
52
+ _path = function () {
53
+ return data;
54
+ };
55
+ return data;
56
+ }
50
57
  function _legacy2() {
51
58
  const data = require("@teambit/legacy.constants");
52
59
  _legacy2 = function () {
@@ -118,6 +125,7 @@ process.emit = function (name, data) {
118
125
  return originalEmit.apply(process, arguments);
119
126
  };
120
127
  async function bootstrap() {
128
+ enableHoistedDependencyResolution();
121
129
  enableLoaderIfPossible();
122
130
  printBitVersionIfAsked();
123
131
  warnIfRunningAsRoot();
@@ -125,6 +133,42 @@ async function bootstrap() {
125
133
  await ensureDirectories();
126
134
  await _legacy().Analytics.promptAnalyticsIfNeeded();
127
135
  }
136
+
137
+ /**
138
+ * Bridge the workspace's privately hoisted dependencies onto the resolution path when the last
139
+ * install used pnpm's global virtual store. The whole implementation - the layout detection, the
140
+ * NODE_PATH half, and the ESM loader - lives in
141
+ * `@teambit/dependency-resolver/dist/hoisted-resolution-bridge` so the install flow can re-apply
142
+ * it after the install that switches a workspace onto the global store (this pre-aspect gate
143
+ * still reflects the old layout during that run). Deep-required lazily so CLI startup never pays
144
+ * for the dependency-resolver barrel, and best-effort: a workspace where the package is absent
145
+ * or broken has nothing to bridge.
146
+ */
147
+ function enableHoistedDependencyResolution() {
148
+ try {
149
+ // eslint-disable-next-line global-require, import/no-dynamic-require
150
+ const bridge = require('@teambit/dependency-resolver/dist/hoisted-resolution-bridge.js');
151
+ // the running installation's own needs come first - a store-linked installation (its
152
+ // packages living in global-store slots) requires the bridge regardless of which workspace,
153
+ // if any, this process operates on
154
+ bridge.ensureSelfInstallationBridge();
155
+ const workspaceRoot = findWorkspaceRoot(process.cwd());
156
+ if (workspaceRoot && bridge.isGlobalVirtualStoreLayout(workspaceRoot)) {
157
+ bridge.ensureHoistedDependencyResolution(workspaceRoot);
158
+ }
159
+ } catch {
160
+ // pre-aspect bootstrap must never fail the CLI over the bridge
161
+ }
162
+ }
163
+ function findWorkspaceRoot(from) {
164
+ let dir = _path().default.resolve(from);
165
+ for (;;) {
166
+ if (_fsExtra().default.existsSync(_path().default.join(dir, _legacy2().WORKSPACE_JSONC))) return dir;
167
+ const parent = _path().default.dirname(dir);
168
+ if (parent === dir) return undefined;
169
+ dir = parent;
170
+ }
171
+ }
128
172
  async function ensureDirectories() {
129
173
  await _fsExtra().default.ensureDir(_legacy2().GLOBAL_CONFIG);
130
174
  await _fsExtra().default.ensureDir(_legacy2().GLOBAL_LOGS);
@@ -1 +1 @@
1
- {"version":3,"names":["_chalk","data","_interopRequireDefault","require","_fsExtra","_semver","_bit","_legacy","_cli","_legacy2","_legacy3","_legacy4","e","__esModule","default","RECOMMENDED_NODE_VERSIONS","SUPPORTED_NODE_VERSIONS","process","env","MEMFS_DONT_WARN","EventEmitter","defaultMaxListeners","on","err","handleUnhandledRejection","originalEmit","emit","name","message","includes","code","apply","arguments","bootstrap","enableLoaderIfPossible","printBitVersionIfAsked","warnIfRunningAsRoot","verifyNodeVersionCompatibility","ensureDirectories","Analytics","promptAnalyticsIfNeeded","fs","ensureDir","GLOBAL_CONFIG","GLOBAL_LOGS","nodeVersion","versions","node","split","isCompatible","semver","satisfies","console","log","chalk","red","exit","isRecommended","yellow","isRoot","getuid","printWarning","argv","harmonyVersion","getBitVersion","safeCommandsForLoader","shouldDisableConsole","shouldDisableLoader","loader"],"sources":["bootstrap.ts"],"sourcesContent":["import chalk from 'chalk';\nimport fs from 'fs-extra';\nimport semver from 'semver';\nimport { getBitVersion } from '@teambit/bit.get-bit-version';\nimport { Analytics } from '@teambit/legacy.analytics';\nimport { handleUnhandledRejection } from '@teambit/cli';\nimport { GLOBAL_CONFIG, GLOBAL_LOGS } from '@teambit/legacy.constants';\nimport { printWarning, shouldDisableConsole, shouldDisableLoader } from '@teambit/legacy.logger';\nimport { loader } from '@teambit/legacy.loader';\n\nconst RECOMMENDED_NODE_VERSIONS = '>=20.0.0 <25.0.0';\nconst SUPPORTED_NODE_VERSIONS = '>=16.0.0 <25.0.0';\n\nprocess.env.MEMFS_DONT_WARN = 'true'; // suppress fs experimental warnings from memfs\n\nrequire('events').EventEmitter.defaultMaxListeners = 100; // set max listeners to a more appropriate numbers\n\nrequire('regenerator-runtime/runtime');\n\n// eslint-disable-next-line @typescript-eslint/no-misused-promises\nprocess.on('unhandledRejection', async (err: any) => handleUnhandledRejection(err));\n\nconst originalEmit = process.emit;\n// @ts-ignore - TS complains about the return type of originalEmit.apply\nprocess.emit = function (name, data) {\n // --------------------------------------------\n\n // 1. avoid punycode deprecation warning\n //\n // this fix is based on yarn fix for the similar issue, see code here:\n // https://github.com/yarnpkg/berry/blob/2cf0a8fe3e4d4bd7d4d344245d24a85a45d4c5c9/packages/yarnpkg-pnp/sources/loader/applyPatch.ts#L414-L435\n // ignore punycode deprecation warning\n // ignoring this warning for now, as the main issue is that\n // this package https://www.npmjs.com/package/uri-js?activeTab=readme is using it and it's deprecated\n // the package have the correct punycode version as a dependency from the user land\n // but it uses it incorrectly, it should use it with a trailing slash\n // the require in their code is require('punycode') and not require('punycode/') (with trailing slash)\n // As this package is not maintained anymore, we can't fix it from our side\n // see more at:\n // https://github.com/garycourt/uri-js/issues/97\n // https://github.com/garycourt/uri-js/pull/95\n // on the bit repo we overriding the uri-js package with a fixed version (see overrides in workspace.jsonc)\n // \"uri-js\": \"npm:uri-js-replace\"\n // but we don't want to override it automatically for all the users\n // there are many other packages (like webpack, eslint, etc) that are using this uri-js package\n // so if we won't ignore it, all users will get this warning\n //\n // 2. ignore util._extend deprecation warning\n //\n // this warning is coming from the http-proxy package\n // see: https://github.com/http-party/node-http-proxy/pull/1666\n if (\n // filter out the warning\n (name === `warning` &&\n typeof data === `object` &&\n ((data.name === `DeprecationWarning` && data.message.includes(`punycode`)) || data.code === `DEP0040`)) ||\n (data.name === `DeprecationWarning` && data.message.includes(`util._extend`)) ||\n data.code === `DEP0060`\n )\n return false;\n\n // --------------------------------------------\n\n // eslint-disable-next-line prefer-rest-params\n return originalEmit.apply(process, arguments as unknown as Parameters<typeof process.emit>);\n};\n\nexport async function bootstrap() {\n enableLoaderIfPossible();\n printBitVersionIfAsked();\n warnIfRunningAsRoot();\n verifyNodeVersionCompatibility();\n await ensureDirectories();\n await Analytics.promptAnalyticsIfNeeded();\n}\n\nasync function ensureDirectories() {\n await fs.ensureDir(GLOBAL_CONFIG);\n await fs.ensureDir(GLOBAL_LOGS);\n}\n\nfunction verifyNodeVersionCompatibility() {\n const nodeVersion = process.versions.node.split('-')[0];\n const isCompatible = semver.satisfies(nodeVersion, SUPPORTED_NODE_VERSIONS);\n if (!isCompatible) {\n // eslint-disable-next-line no-console\n console.log(\n chalk.red(\n `Node version ${nodeVersion} is not supported, please use Node.js ${SUPPORTED_NODE_VERSIONS}.\nIf you must use legacy versions of Node.js, please use our binary installation methods. https://docs.bit.dev/docs/installation`\n )\n );\n process.exit(1);\n }\n const isRecommended = semver.satisfies(nodeVersion, RECOMMENDED_NODE_VERSIONS);\n if (!isRecommended) {\n // eslint-disable-next-line no-console\n console.log(\n chalk.yellow(\n `warning - use Node ${RECOMMENDED_NODE_VERSIONS} for best performance. Using Node ${nodeVersion} may cause regressions.`\n )\n );\n }\n}\n\nfunction warnIfRunningAsRoot() {\n const isRoot = process.getuid && process.getuid() === 0;\n if (isRoot) {\n printWarning('running bit as root might cause permission issues later');\n }\n}\n\nexport function printBitVersionIfAsked() {\n if (process.argv[2]) {\n if (['-V', '-v', '--version'].includes(process.argv[2])) {\n const harmonyVersion = getBitVersion();\n console.log(harmonyVersion); // eslint-disable-line no-console\n process.exit();\n }\n }\n}\n\n/**\n * once Yargs and Harmony are fully loaded we have all commands instances and we are able to\n * determine whether or not the loader should be loaded.\n * in this phase, all we have are the args from the cli, so we can only guess when it's ok to start\n * the loader. the reason we start it here is to have the loader report the progress of bit\n * bootstrap process, which can slow at times.\n */\nfunction enableLoaderIfPossible() {\n const safeCommandsForLoader = [\n 'status',\n 's', // status alias\n 'compile',\n 'start',\n 'add',\n 'show',\n 'tag',\n 'build',\n 'create',\n 'test',\n 'install',\n 'update',\n 'link',\n 'import',\n 'log',\n 'checkout',\n 'merge',\n 'diff',\n 'env',\n 'envs',\n ];\n if (safeCommandsForLoader.includes(process.argv[2]) && !shouldDisableConsole && !shouldDisableLoader) {\n loader.on();\n // loader.start('loading bit...');\n }\n}\n"],"mappings":"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","ignoreList":[]}
1
+ {"version":3,"names":["_chalk","data","_interopRequireDefault","require","_fsExtra","_semver","_bit","_legacy","_cli","_path","_legacy2","_legacy3","_legacy4","e","__esModule","default","RECOMMENDED_NODE_VERSIONS","SUPPORTED_NODE_VERSIONS","process","env","MEMFS_DONT_WARN","EventEmitter","defaultMaxListeners","on","err","handleUnhandledRejection","originalEmit","emit","name","message","includes","code","apply","arguments","bootstrap","enableHoistedDependencyResolution","enableLoaderIfPossible","printBitVersionIfAsked","warnIfRunningAsRoot","verifyNodeVersionCompatibility","ensureDirectories","Analytics","promptAnalyticsIfNeeded","bridge","ensureSelfInstallationBridge","workspaceRoot","findWorkspaceRoot","cwd","isGlobalVirtualStoreLayout","ensureHoistedDependencyResolution","from","dir","path","resolve","fs","existsSync","join","WORKSPACE_JSONC","parent","dirname","undefined","ensureDir","GLOBAL_CONFIG","GLOBAL_LOGS","nodeVersion","versions","node","split","isCompatible","semver","satisfies","console","log","chalk","red","exit","isRecommended","yellow","isRoot","getuid","printWarning","argv","harmonyVersion","getBitVersion","safeCommandsForLoader","shouldDisableConsole","shouldDisableLoader","loader"],"sources":["bootstrap.ts"],"sourcesContent":["import chalk from 'chalk';\nimport fs from 'fs-extra';\nimport semver from 'semver';\nimport { getBitVersion } from '@teambit/bit.get-bit-version';\nimport { Analytics } from '@teambit/legacy.analytics';\nimport { handleUnhandledRejection } from '@teambit/cli';\nimport path from 'path';\nimport { GLOBAL_CONFIG, GLOBAL_LOGS, WORKSPACE_JSONC } from '@teambit/legacy.constants';\nimport { printWarning, shouldDisableConsole, shouldDisableLoader } from '@teambit/legacy.logger';\nimport { loader } from '@teambit/legacy.loader';\n\nconst RECOMMENDED_NODE_VERSIONS = '>=20.0.0 <25.0.0';\nconst SUPPORTED_NODE_VERSIONS = '>=16.0.0 <25.0.0';\n\nprocess.env.MEMFS_DONT_WARN = 'true'; // suppress fs experimental warnings from memfs\n\nrequire('events').EventEmitter.defaultMaxListeners = 100; // set max listeners to a more appropriate numbers\n\nrequire('regenerator-runtime/runtime');\n\n// eslint-disable-next-line @typescript-eslint/no-misused-promises\nprocess.on('unhandledRejection', async (err: any) => handleUnhandledRejection(err));\n\nconst originalEmit = process.emit;\n// @ts-ignore - TS complains about the return type of originalEmit.apply\nprocess.emit = function (name, data) {\n // --------------------------------------------\n\n // 1. avoid punycode deprecation warning\n //\n // this fix is based on yarn fix for the similar issue, see code here:\n // https://github.com/yarnpkg/berry/blob/2cf0a8fe3e4d4bd7d4d344245d24a85a45d4c5c9/packages/yarnpkg-pnp/sources/loader/applyPatch.ts#L414-L435\n // ignore punycode deprecation warning\n // ignoring this warning for now, as the main issue is that\n // this package https://www.npmjs.com/package/uri-js?activeTab=readme is using it and it's deprecated\n // the package have the correct punycode version as a dependency from the user land\n // but it uses it incorrectly, it should use it with a trailing slash\n // the require in their code is require('punycode') and not require('punycode/') (with trailing slash)\n // As this package is not maintained anymore, we can't fix it from our side\n // see more at:\n // https://github.com/garycourt/uri-js/issues/97\n // https://github.com/garycourt/uri-js/pull/95\n // on the bit repo we overriding the uri-js package with a fixed version (see overrides in workspace.jsonc)\n // \"uri-js\": \"npm:uri-js-replace\"\n // but we don't want to override it automatically for all the users\n // there are many other packages (like webpack, eslint, etc) that are using this uri-js package\n // so if we won't ignore it, all users will get this warning\n //\n // 2. ignore util._extend deprecation warning\n //\n // this warning is coming from the http-proxy package\n // see: https://github.com/http-party/node-http-proxy/pull/1666\n if (\n // filter out the warning\n (name === `warning` &&\n typeof data === `object` &&\n ((data.name === `DeprecationWarning` && data.message.includes(`punycode`)) || data.code === `DEP0040`)) ||\n (data.name === `DeprecationWarning` && data.message.includes(`util._extend`)) ||\n data.code === `DEP0060`\n )\n return false;\n\n // --------------------------------------------\n\n // eslint-disable-next-line prefer-rest-params\n return originalEmit.apply(process, arguments as unknown as Parameters<typeof process.emit>);\n};\n\nexport async function bootstrap() {\n enableHoistedDependencyResolution();\n enableLoaderIfPossible();\n printBitVersionIfAsked();\n warnIfRunningAsRoot();\n verifyNodeVersionCompatibility();\n await ensureDirectories();\n await Analytics.promptAnalyticsIfNeeded();\n}\n\n/**\n * Bridge the workspace's privately hoisted dependencies onto the resolution path when the last\n * install used pnpm's global virtual store. The whole implementation - the layout detection, the\n * NODE_PATH half, and the ESM loader - lives in\n * `@teambit/dependency-resolver/dist/hoisted-resolution-bridge` so the install flow can re-apply\n * it after the install that switches a workspace onto the global store (this pre-aspect gate\n * still reflects the old layout during that run). Deep-required lazily so CLI startup never pays\n * for the dependency-resolver barrel, and best-effort: a workspace where the package is absent\n * or broken has nothing to bridge.\n */\nfunction enableHoistedDependencyResolution() {\n try {\n // eslint-disable-next-line global-require, import/no-dynamic-require\n const bridge = require('@teambit/dependency-resolver/dist/hoisted-resolution-bridge.js') as {\n isGlobalVirtualStoreLayout(workspaceRoot: string): boolean;\n ensureHoistedDependencyResolution(workspaceRoot: string): void;\n ensureSelfInstallationBridge(): void;\n };\n // the running installation's own needs come first - a store-linked installation (its\n // packages living in global-store slots) requires the bridge regardless of which workspace,\n // if any, this process operates on\n bridge.ensureSelfInstallationBridge();\n const workspaceRoot = findWorkspaceRoot(process.cwd());\n if (workspaceRoot && bridge.isGlobalVirtualStoreLayout(workspaceRoot)) {\n bridge.ensureHoistedDependencyResolution(workspaceRoot);\n }\n } catch {\n // pre-aspect bootstrap must never fail the CLI over the bridge\n }\n}\n\nfunction findWorkspaceRoot(from: string): string | undefined {\n let dir = path.resolve(from);\n for (;;) {\n if (fs.existsSync(path.join(dir, WORKSPACE_JSONC))) return dir;\n const parent = path.dirname(dir);\n if (parent === dir) return undefined;\n dir = parent;\n }\n}\n\nasync function ensureDirectories() {\n await fs.ensureDir(GLOBAL_CONFIG);\n await fs.ensureDir(GLOBAL_LOGS);\n}\n\nfunction verifyNodeVersionCompatibility() {\n const nodeVersion = process.versions.node.split('-')[0];\n const isCompatible = semver.satisfies(nodeVersion, SUPPORTED_NODE_VERSIONS);\n if (!isCompatible) {\n // eslint-disable-next-line no-console\n console.log(\n chalk.red(\n `Node version ${nodeVersion} is not supported, please use Node.js ${SUPPORTED_NODE_VERSIONS}.\nIf you must use legacy versions of Node.js, please use our binary installation methods. https://docs.bit.dev/docs/installation`\n )\n );\n process.exit(1);\n }\n const isRecommended = semver.satisfies(nodeVersion, RECOMMENDED_NODE_VERSIONS);\n if (!isRecommended) {\n // eslint-disable-next-line no-console\n console.log(\n chalk.yellow(\n `warning - use Node ${RECOMMENDED_NODE_VERSIONS} for best performance. Using Node ${nodeVersion} may cause regressions.`\n )\n );\n }\n}\n\nfunction warnIfRunningAsRoot() {\n const isRoot = process.getuid && process.getuid() === 0;\n if (isRoot) {\n printWarning('running bit as root might cause permission issues later');\n }\n}\n\nexport function printBitVersionIfAsked() {\n if (process.argv[2]) {\n if (['-V', '-v', '--version'].includes(process.argv[2])) {\n const harmonyVersion = getBitVersion();\n console.log(harmonyVersion); // eslint-disable-line no-console\n process.exit();\n }\n }\n}\n\n/**\n * once Yargs and Harmony are fully loaded we have all commands instances and we are able to\n * determine whether or not the loader should be loaded.\n * in this phase, all we have are the args from the cli, so we can only guess when it's ok to start\n * the loader. the reason we start it here is to have the loader report the progress of bit\n * bootstrap process, which can slow at times.\n */\nfunction enableLoaderIfPossible() {\n const safeCommandsForLoader = [\n 'status',\n 's', // status alias\n 'compile',\n 'start',\n 'add',\n 'show',\n 'tag',\n 'build',\n 'create',\n 'test',\n 'install',\n 'update',\n 'link',\n 'import',\n 'log',\n 'checkout',\n 'merge',\n 'diff',\n 'env',\n 'envs',\n ];\n if (safeCommandsForLoader.includes(process.argv[2]) && !shouldDisableConsole && !shouldDisableLoader) {\n loader.on();\n // loader.start('loading bit...');\n }\n}\n"],"mappings":";;;;;;;AAAA,SAAAA,OAAA;EAAA,MAAAC,IAAA,GAAAC,sBAAA,CAAAC,OAAA;EAAAH,MAAA,YAAAA,CAAA;IAAA,OAAAC,IAAA;EAAA;EAAA,OAAAA,IAAA;AAAA;AACA,SAAAG,SAAA;EAAA,MAAAH,IAAA,GAAAC,sBAAA,CAAAC,OAAA;EAAAC,QAAA,YAAAA,CAAA;IAAA,OAAAH,IAAA;EAAA;EAAA,OAAAA,IAAA;AAAA;AACA,SAAAI,QAAA;EAAA,MAAAJ,IAAA,GAAAC,sBAAA,CAAAC,OAAA;EAAAE,OAAA,YAAAA,CAAA;IAAA,OAAAJ,IAAA;EAAA;EAAA,OAAAA,IAAA;AAAA;AACA,SAAAK,KAAA;EAAA,MAAAL,IAAA,GAAAE,OAAA;EAAAG,IAAA,YAAAA,CAAA;IAAA,OAAAL,IAAA;EAAA;EAAA,OAAAA,IAAA;AAAA;AACA,SAAAM,QAAA;EAAA,MAAAN,IAAA,GAAAE,OAAA;EAAAI,OAAA,YAAAA,CAAA;IAAA,OAAAN,IAAA;EAAA;EAAA,OAAAA,IAAA;AAAA;AACA,SAAAO,KAAA;EAAA,MAAAP,IAAA,GAAAE,OAAA;EAAAK,IAAA,YAAAA,CAAA;IAAA,OAAAP,IAAA;EAAA;EAAA,OAAAA,IAAA;AAAA;AACA,SAAAQ,MAAA;EAAA,MAAAR,IAAA,GAAAC,sBAAA,CAAAC,OAAA;EAAAM,KAAA,YAAAA,CAAA;IAAA,OAAAR,IAAA;EAAA;EAAA,OAAAA,IAAA;AAAA;AACA,SAAAS,SAAA;EAAA,MAAAT,IAAA,GAAAE,OAAA;EAAAO,QAAA,YAAAA,CAAA;IAAA,OAAAT,IAAA;EAAA;EAAA,OAAAA,IAAA;AAAA;AACA,SAAAU,SAAA;EAAA,MAAAV,IAAA,GAAAE,OAAA;EAAAQ,QAAA,YAAAA,CAAA;IAAA,OAAAV,IAAA;EAAA;EAAA,OAAAA,IAAA;AAAA;AACA,SAAAW,SAAA;EAAA,MAAAX,IAAA,GAAAE,OAAA;EAAAS,QAAA,YAAAA,CAAA;IAAA,OAAAX,IAAA;EAAA;EAAA,OAAAA,IAAA;AAAA;AAAgD,SAAAC,uBAAAW,CAAA,WAAAA,CAAA,IAAAA,CAAA,CAAAC,UAAA,GAAAD,CAAA,KAAAE,OAAA,EAAAF,CAAA;AAEhD,MAAMG,yBAAyB,GAAG,kBAAkB;AACpD,MAAMC,uBAAuB,GAAG,kBAAkB;AAElDC,OAAO,CAACC,GAAG,CAACC,eAAe,GAAG,MAAM,CAAC,CAAC;;AAEtCjB,OAAO,CAAC,QAAQ,CAAC,CAACkB,YAAY,CAACC,mBAAmB,GAAG,GAAG,CAAC,CAAC;;AAE1DnB,OAAO,CAAC,6BAA6B,CAAC;;AAEtC;AACAe,OAAO,CAACK,EAAE,CAAC,oBAAoB,EAAE,MAAOC,GAAQ,IAAK,IAAAC,+BAAwB,EAACD,GAAG,CAAC,CAAC;AAEnF,MAAME,YAAY,GAAGR,OAAO,CAACS,IAAI;AACjC;AACAT,OAAO,CAACS,IAAI,GAAG,UAAUC,IAAI,EAAE3B,IAAI,EAAE;EACnC;;EAEA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACE;EACC2B,IAAI,KAAK,SAAS,IACjB,OAAO3B,IAAI,KAAK,QAAQ,KACtBA,IAAI,CAAC2B,IAAI,KAAK,oBAAoB,IAAI3B,IAAI,CAAC4B,OAAO,CAACC,QAAQ,CAAC,UAAU,CAAC,IAAK7B,IAAI,CAAC8B,IAAI,KAAK,SAAS,CAAC,IACvG9B,IAAI,CAAC2B,IAAI,KAAK,oBAAoB,IAAI3B,IAAI,CAAC4B,OAAO,CAACC,QAAQ,CAAC,cAAc,CAAE,IAC7E7B,IAAI,CAAC8B,IAAI,KAAK,SAAS,EAEvB,OAAO,KAAK;;EAEd;;EAEA;EACA,OAAOL,YAAY,CAACM,KAAK,CAACd,OAAO,EAAEe,SAAuD,CAAC;AAC7F,CAAC;AAEM,eAAeC,SAASA,CAAA,EAAG;EAChCC,iCAAiC,CAAC,CAAC;EACnCC,sBAAsB,CAAC,CAAC;EACxBC,sBAAsB,CAAC,CAAC;EACxBC,mBAAmB,CAAC,CAAC;EACrBC,8BAA8B,CAAC,CAAC;EAChC,MAAMC,iBAAiB,CAAC,CAAC;EACzB,MAAMC,mBAAS,CAACC,uBAAuB,CAAC,CAAC;AAC3C;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,SAASP,iCAAiCA,CAAA,EAAG;EAC3C,IAAI;IACF;IACA,MAAMQ,MAAM,GAAGxC,OAAO,CAAC,gEAAgE,CAItF;IACD;IACA;IACA;IACAwC,MAAM,CAACC,4BAA4B,CAAC,CAAC;IACrC,MAAMC,aAAa,GAAGC,iBAAiB,CAAC5B,OAAO,CAAC6B,GAAG,CAAC,CAAC,CAAC;IACtD,IAAIF,aAAa,IAAIF,MAAM,CAACK,0BAA0B,CAACH,aAAa,CAAC,EAAE;MACrEF,MAAM,CAACM,iCAAiC,CAACJ,aAAa,CAAC;IACzD;EACF,CAAC,CAAC,MAAM;IACN;EAAA;AAEJ;AAEA,SAASC,iBAAiBA,CAACI,IAAY,EAAsB;EAC3D,IAAIC,GAAG,GAAGC,eAAI,CAACC,OAAO,CAACH,IAAI,CAAC;EAC5B,SAAS;IACP,IAAII,kBAAE,CAACC,UAAU,CAACH,eAAI,CAACI,IAAI,CAACL,GAAG,EAAEM,0BAAe,CAAC,CAAC,EAAE,OAAON,GAAG;IAC9D,MAAMO,MAAM,GAAGN,eAAI,CAACO,OAAO,CAACR,GAAG,CAAC;IAChC,IAAIO,MAAM,KAAKP,GAAG,EAAE,OAAOS,SAAS;IACpCT,GAAG,GAAGO,MAAM;EACd;AACF;AAEA,eAAelB,iBAAiBA,CAAA,EAAG;EACjC,MAAMc,kBAAE,CAACO,SAAS,CAACC,wBAAa,CAAC;EACjC,MAAMR,kBAAE,CAACO,SAAS,CAACE,sBAAW,CAAC;AACjC;AAEA,SAASxB,8BAA8BA,CAAA,EAAG;EACxC,MAAMyB,WAAW,GAAG9C,OAAO,CAAC+C,QAAQ,CAACC,IAAI,CAACC,KAAK,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC;EACvD,MAAMC,YAAY,GAAGC,iBAAM,CAACC,SAAS,CAACN,WAAW,EAAE/C,uBAAuB,CAAC;EAC3E,IAAI,CAACmD,YAAY,EAAE;IACjB;IACAG,OAAO,CAACC,GAAG,CACTC,gBAAK,CAACC,GAAG,CACP,gBAAgBV,WAAW,yCAAyC/C,uBAAuB;AACnG,+HACM,CACF,CAAC;IACDC,OAAO,CAACyD,IAAI,CAAC,CAAC,CAAC;EACjB;EACA,MAAMC,aAAa,GAAGP,iBAAM,CAACC,SAAS,CAACN,WAAW,EAAEhD,yBAAyB,CAAC;EAC9E,IAAI,CAAC4D,aAAa,EAAE;IAClB;IACAL,OAAO,CAACC,GAAG,CACTC,gBAAK,CAACI,MAAM,CACV,sBAAsB7D,yBAAyB,qCAAqCgD,WAAW,yBACjG,CACF,CAAC;EACH;AACF;AAEA,SAAS1B,mBAAmBA,CAAA,EAAG;EAC7B,MAAMwC,MAAM,GAAG5D,OAAO,CAAC6D,MAAM,IAAI7D,OAAO,CAAC6D,MAAM,CAAC,CAAC,KAAK,CAAC;EACvD,IAAID,MAAM,EAAE;IACV,IAAAE,uBAAY,EAAC,yDAAyD,CAAC;EACzE;AACF;AAEO,SAAS3C,sBAAsBA,CAAA,EAAG;EACvC,IAAInB,OAAO,CAAC+D,IAAI,CAAC,CAAC,CAAC,EAAE;IACnB,IAAI,CAAC,IAAI,EAAE,IAAI,EAAE,WAAW,CAAC,CAACnD,QAAQ,CAACZ,OAAO,CAAC+D,IAAI,CAAC,CAAC,CAAC,CAAC,EAAE;MACvD,MAAMC,cAAc,GAAG,IAAAC,oBAAa,EAAC,CAAC;MACtCZ,OAAO,CAACC,GAAG,CAACU,cAAc,CAAC,CAAC,CAAC;MAC7BhE,OAAO,CAACyD,IAAI,CAAC,CAAC;IAChB;EACF;AACF;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,SAASvC,sBAAsBA,CAAA,EAAG;EAChC,MAAMgD,qBAAqB,GAAG,CAC5B,QAAQ,EACR,GAAG;EAAE;EACL,SAAS,EACT,OAAO,EACP,KAAK,EACL,MAAM,EACN,KAAK,EACL,OAAO,EACP,QAAQ,EACR,MAAM,EACN,SAAS,EACT,QAAQ,EACR,MAAM,EACN,QAAQ,EACR,KAAK,EACL,UAAU,EACV,OAAO,EACP,MAAM,EACN,KAAK,EACL,MAAM,CACP;EACD,IAAIA,qBAAqB,CAACtD,QAAQ,CAACZ,OAAO,CAAC+D,IAAI,CAAC,CAAC,CAAC,CAAC,IAAI,CAACI,+BAAoB,IAAI,CAACC,8BAAmB,EAAE;IACpGC,iBAAM,CAAChE,EAAE,CAAC,CAAC;IACX;EACF;AACF","ignoreList":[]}
@@ -1,5 +1,5 @@
1
- import * as compositions_0 from '/home/circleci/Library/Caches/Bit/capsules/8891be5ad/teambit.harmony_bit@2.0.71/dist/bit.compositions.js';
2
- import * as overview_0 from '/home/circleci/Library/Caches/Bit/capsules/8891be5ad/teambit.harmony_bit@2.0.71/dist/bit.docs.js';
1
+ import * as compositions_0 from '/home/circleci/Library/Caches/Bit/capsules/8891be5ad/teambit.harmony_bit@2.0.73/dist/bit.compositions.js';
2
+ import * as overview_0 from '/home/circleci/Library/Caches/Bit/capsules/8891be5ad/teambit.harmony_bit@2.0.73/dist/bit.docs.js';
3
3
 
4
4
  export const compositions = [compositions_0];
5
5
  export const overview = [overview_0];
package/package.json CHANGED
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "name": "@teambit/bit",
3
- "version": "2.0.71",
3
+ "version": "2.0.73",
4
4
  "homepage": "https://bit.cloud/teambit/harmony/bit",
5
5
  "main": "dist/index.js",
6
6
  "componentId": {
7
7
  "scope": "teambit.harmony",
8
8
  "name": "bit",
9
- "version": "2.0.71"
9
+ "version": "2.0.73"
10
10
  },
11
11
  "dependencies": {
12
12
  "comment-json": "4.2.5",
@@ -44,141 +44,142 @@
44
44
  "@apollo/client": "3.6.9",
45
45
  "@teambit/harmony": "0.4.12",
46
46
  "@teambit/design.ui.brand.logo": "1.96.19",
47
- "@teambit/cli": "0.0.1363",
48
- "@teambit/legacy.extension-data": "0.0.146",
47
+ "@teambit/cli": "0.0.1364",
48
+ "@teambit/legacy.extension-data": "0.0.147",
49
49
  "@teambit/bit.get-bit-version": "0.0.26",
50
- "@teambit/legacy.analytics": "0.0.104",
51
- "@teambit/legacy.constants": "0.0.40",
50
+ "@teambit/legacy.analytics": "0.0.105",
51
+ "@teambit/legacy.constants": "0.0.41",
52
52
  "@teambit/legacy.loader": "0.0.29",
53
- "@teambit/legacy.logger": "0.0.55",
54
- "@teambit/aspect-loader": "1.0.1096",
53
+ "@teambit/legacy.logger": "0.0.56",
55
54
  "@teambit/bit-error": "0.0.404",
56
- "@teambit/clear-cache": "0.0.580",
55
+ "@teambit/clear-cache": "0.0.581",
57
56
  "@teambit/component-id": "1.2.4",
58
- "@teambit/config": "0.0.1538",
59
- "@teambit/envs": "1.0.1096",
60
- "@teambit/generator": "1.0.1097",
61
- "@teambit/host-initializer": "0.0.809",
57
+ "@teambit/config": "0.0.1539",
62
58
  "@teambit/legacy-bit-id": "1.1.3",
63
- "@teambit/legacy.bit-map": "0.0.201",
64
- "@teambit/legacy.consumer-component": "0.0.145",
65
- "@teambit/legacy.consumer-config": "0.0.144",
66
- "@teambit/legacy.consumer": "0.0.144",
67
- "@teambit/legacy.scope-api": "0.0.199",
68
- "@teambit/scope.modules.find-scope-path": "0.0.42",
69
- "@teambit/workspace.modules.node-modules-linker": "0.0.375",
70
- "@teambit/workspace.modules.workspace-locator": "0.0.41",
71
- "@teambit/api-reference": "1.0.1096",
72
- "@teambit/api-server": "1.0.1128",
73
- "@teambit/application": "1.0.1096",
74
- "@teambit/aspect": "1.0.1096",
75
- "@teambit/babel": "1.0.1096",
76
- "@teambit/builder": "1.0.1096",
77
- "@teambit/bundler": "1.0.1096",
78
- "@teambit/cache": "0.0.1456",
79
- "@teambit/changelog": "1.0.1096",
80
- "@teambit/checkout": "1.0.1097",
81
- "@teambit/cli-mcp-server": "0.0.227",
82
- "@teambit/cloud": "0.0.1395",
83
- "@teambit/code": "1.0.1096",
84
- "@teambit/command-bar": "1.0.1096",
85
- "@teambit/community": "1.0.791",
86
- "@teambit/compiler": "1.0.1096",
87
- "@teambit/component-compare": "1.0.1096",
88
- "@teambit/component-log": "1.0.1096",
89
- "@teambit/component-sizer": "1.0.1096",
90
- "@teambit/component-tree": "1.0.1096",
91
- "@teambit/component-writer": "1.0.1096",
92
- "@teambit/component": "1.0.1096",
93
- "@teambit/compositions": "1.0.1096",
94
- "@teambit/config-merger": "0.0.963",
95
- "@teambit/config-store": "0.0.244",
96
- "@teambit/dependencies": "1.0.1096",
97
- "@teambit/dependency-resolver": "1.0.1096",
98
- "@teambit/deprecation": "1.0.1096",
99
- "@teambit/dev-files": "1.0.1096",
100
- "@teambit/diagnostic": "1.0.1096",
101
- "@teambit/docs": "1.0.1096",
102
- "@teambit/doctor": "0.0.781",
103
- "@teambit/eject": "1.0.1096",
104
- "@teambit/empty-env": "0.0.11",
105
- "@teambit/env": "1.0.1096",
106
- "@teambit/eslint": "1.0.1096",
107
- "@teambit/export": "1.0.1096",
108
- "@teambit/express": "0.0.1462",
109
- "@teambit/forking": "1.0.1096",
110
- "@teambit/formatter": "1.0.1096",
111
- "@teambit/git": "1.0.1096",
112
- "@teambit/global-config": "0.0.1367",
113
- "@teambit/graph": "1.0.1096",
114
- "@teambit/graphql": "1.0.1096",
115
- "@teambit/harmony-ui-app": "1.0.1096",
116
- "@teambit/importer": "1.0.1096",
117
- "@teambit/insights": "1.0.1097",
118
- "@teambit/install": "1.0.1096",
119
- "@teambit/internalize": "0.0.95",
120
- "@teambit/ipc-events": "1.0.1096",
121
- "@teambit/isolator": "1.0.1096",
122
- "@teambit/issues": "1.0.1096",
123
- "@teambit/jest": "1.0.1096",
124
- "@teambit/lanes": "1.0.1117",
125
- "@teambit/linter": "1.0.1096",
126
- "@teambit/lister": "1.0.1096",
127
- "@teambit/logger": "0.0.1456",
128
- "@teambit/mdx": "1.0.1097",
129
- "@teambit/merge-lanes": "1.0.1117",
130
- "@teambit/merging": "1.0.1099",
131
- "@teambit/mocha": "1.0.881",
132
- "@teambit/mover": "1.0.1096",
133
- "@teambit/multi-compiler": "1.0.1096",
134
- "@teambit/multi-tester": "1.0.1096",
135
- "@teambit/new-component-helper": "1.0.1096",
136
- "@teambit/node": "1.0.1096",
137
- "@teambit/notifications": "1.0.1097",
138
- "@teambit/objects": "0.0.603",
139
- "@teambit/panels": "0.0.1366",
140
- "@teambit/pkg": "1.0.1096",
141
- "@teambit/pnpm": "1.0.1135",
142
- "@teambit/prettier": "1.0.1096",
143
- "@teambit/preview": "1.0.1096",
144
- "@teambit/pubsub": "1.0.1096",
145
- "@teambit/react-router": "1.0.1096",
146
- "@teambit/react": "1.0.1096",
147
- "@teambit/readme": "1.0.1097",
148
- "@teambit/refactoring": "1.0.1096",
149
- "@teambit/remove": "1.0.1096",
150
- "@teambit/renaming": "1.0.1097",
151
- "@teambit/ripple": "0.0.182",
152
- "@teambit/schema": "1.0.1096",
153
- "@teambit/scope": "1.0.1096",
154
- "@teambit/scripts": "0.0.315",
155
- "@teambit/sidebar": "1.0.1096",
156
- "@teambit/snapping": "1.0.1096",
157
- "@teambit/stash": "1.0.1097",
158
- "@teambit/status": "1.0.1121",
159
- "@teambit/tester": "1.0.1096",
160
- "@teambit/tracker": "1.0.1096",
161
- "@teambit/typescript": "1.0.1096",
162
- "@teambit/ui": "1.0.1096",
163
- "@teambit/user-agent": "1.0.1096",
164
- "@teambit/validator": "0.0.333",
165
- "@teambit/variants": "0.0.1631",
166
- "@teambit/version-history": "0.0.888",
167
- "@teambit/vue-aspect": "0.0.462",
168
- "@teambit/watcher": "1.0.1096",
169
- "@teambit/webpack": "1.0.1096",
170
- "@teambit/worker": "0.0.1667",
171
- "@teambit/workspace-config-files": "1.0.1096",
172
- "@teambit/workspace": "1.0.1096",
173
- "@teambit/yarn": "1.0.1097",
59
+ "@teambit/legacy.bit-map": "0.0.202",
60
+ "@teambit/legacy.consumer-component": "0.0.146",
61
+ "@teambit/legacy.consumer-config": "0.0.145",
62
+ "@teambit/legacy.consumer": "0.0.145",
63
+ "@teambit/legacy.scope-api": "0.0.200",
64
+ "@teambit/scope.modules.find-scope-path": "0.0.43",
65
+ "@teambit/workspace.modules.node-modules-linker": "0.0.376",
66
+ "@teambit/workspace.modules.workspace-locator": "0.0.42",
67
+ "@teambit/cache": "0.0.1457",
68
+ "@teambit/cli-mcp-server": "0.0.228",
69
+ "@teambit/community": "1.0.792",
70
+ "@teambit/config-store": "0.0.245",
71
+ "@teambit/express": "0.0.1463",
72
+ "@teambit/global-config": "0.0.1368",
73
+ "@teambit/logger": "0.0.1457",
74
+ "@teambit/mocha": "1.0.882",
75
+ "@teambit/panels": "0.0.1367",
76
+ "@teambit/variants": "0.0.1632",
77
+ "@teambit/worker": "0.0.1668",
174
78
  "@teambit/ui-foundation.ui.navigation.react-router-adapter": "6.1.3",
175
79
  "@teambit/base-react.navigation.link": "2.0.31",
176
- "@teambit/harmony.content.cli-reference": "2.0.1179",
177
- "@teambit/ci": "1.0.491"
80
+ "@teambit/harmony.content.cli-reference": "2.0.1181",
81
+ "@teambit/dependency-resolver": "1.0.1098",
82
+ "@teambit/aspect-loader": "1.0.1098",
83
+ "@teambit/envs": "1.0.1098",
84
+ "@teambit/generator": "1.0.1099",
85
+ "@teambit/host-initializer": "0.0.811",
86
+ "@teambit/api-reference": "1.0.1098",
87
+ "@teambit/api-server": "1.0.1130",
88
+ "@teambit/application": "1.0.1098",
89
+ "@teambit/aspect": "1.0.1098",
90
+ "@teambit/babel": "1.0.1098",
91
+ "@teambit/builder": "1.0.1098",
92
+ "@teambit/bundler": "1.0.1098",
93
+ "@teambit/changelog": "1.0.1098",
94
+ "@teambit/checkout": "1.0.1099",
95
+ "@teambit/ci": "1.0.493",
96
+ "@teambit/cloud": "0.0.1397",
97
+ "@teambit/code": "1.0.1098",
98
+ "@teambit/command-bar": "1.0.1098",
99
+ "@teambit/compiler": "1.0.1098",
100
+ "@teambit/component-compare": "1.0.1098",
101
+ "@teambit/component-log": "1.0.1098",
102
+ "@teambit/component-sizer": "1.0.1098",
103
+ "@teambit/component-tree": "1.0.1098",
104
+ "@teambit/component-writer": "1.0.1098",
105
+ "@teambit/component": "1.0.1098",
106
+ "@teambit/compositions": "1.0.1098",
107
+ "@teambit/config-merger": "0.0.965",
108
+ "@teambit/dependencies": "1.0.1098",
109
+ "@teambit/deprecation": "1.0.1098",
110
+ "@teambit/dev-files": "1.0.1098",
111
+ "@teambit/diagnostic": "1.0.1098",
112
+ "@teambit/docs": "1.0.1098",
113
+ "@teambit/doctor": "0.0.783",
114
+ "@teambit/eject": "1.0.1098",
115
+ "@teambit/empty-env": "0.0.13",
116
+ "@teambit/env": "1.0.1098",
117
+ "@teambit/eslint": "1.0.1098",
118
+ "@teambit/export": "1.0.1098",
119
+ "@teambit/forking": "1.0.1098",
120
+ "@teambit/formatter": "1.0.1098",
121
+ "@teambit/git": "1.0.1098",
122
+ "@teambit/graph": "1.0.1098",
123
+ "@teambit/graphql": "1.0.1098",
124
+ "@teambit/harmony-ui-app": "1.0.1098",
125
+ "@teambit/importer": "1.0.1098",
126
+ "@teambit/insights": "1.0.1099",
127
+ "@teambit/install": "1.0.1098",
128
+ "@teambit/internalize": "0.0.97",
129
+ "@teambit/ipc-events": "1.0.1098",
130
+ "@teambit/isolator": "1.0.1098",
131
+ "@teambit/issues": "1.0.1098",
132
+ "@teambit/jest": "1.0.1098",
133
+ "@teambit/lanes": "1.0.1119",
134
+ "@teambit/linter": "1.0.1098",
135
+ "@teambit/lister": "1.0.1098",
136
+ "@teambit/mdx": "1.0.1099",
137
+ "@teambit/merge-lanes": "1.0.1119",
138
+ "@teambit/merging": "1.0.1101",
139
+ "@teambit/mover": "1.0.1098",
140
+ "@teambit/multi-compiler": "1.0.1098",
141
+ "@teambit/multi-tester": "1.0.1098",
142
+ "@teambit/new-component-helper": "1.0.1098",
143
+ "@teambit/node": "1.0.1098",
144
+ "@teambit/notifications": "1.0.1099",
145
+ "@teambit/objects": "0.0.605",
146
+ "@teambit/pkg": "1.0.1098",
147
+ "@teambit/pnpm": "1.0.1137",
148
+ "@teambit/prettier": "1.0.1098",
149
+ "@teambit/preview": "1.0.1098",
150
+ "@teambit/pubsub": "1.0.1098",
151
+ "@teambit/react-router": "1.0.1098",
152
+ "@teambit/react": "1.0.1098",
153
+ "@teambit/readme": "1.0.1099",
154
+ "@teambit/refactoring": "1.0.1098",
155
+ "@teambit/remove": "1.0.1098",
156
+ "@teambit/renaming": "1.0.1099",
157
+ "@teambit/ripple": "0.0.184",
158
+ "@teambit/schema": "1.0.1098",
159
+ "@teambit/scope": "1.0.1098",
160
+ "@teambit/scripts": "0.0.317",
161
+ "@teambit/sidebar": "1.0.1098",
162
+ "@teambit/snapping": "1.0.1098",
163
+ "@teambit/stash": "1.0.1099",
164
+ "@teambit/status": "1.0.1123",
165
+ "@teambit/tester": "1.0.1098",
166
+ "@teambit/tracker": "1.0.1098",
167
+ "@teambit/typescript": "1.0.1098",
168
+ "@teambit/ui": "1.0.1098",
169
+ "@teambit/user-agent": "1.0.1098",
170
+ "@teambit/validator": "0.0.335",
171
+ "@teambit/version-history": "0.0.890",
172
+ "@teambit/vue-aspect": "0.0.464",
173
+ "@teambit/watcher": "1.0.1098",
174
+ "@teambit/webpack": "1.0.1098",
175
+ "@teambit/workspace-config-files": "1.0.1098",
176
+ "@teambit/workspace": "1.0.1098",
177
+ "@teambit/yarn": "1.0.1099"
178
178
  },
179
179
  "devDependencies": {
180
180
  "@types/fs-extra": "9.0.7",
181
181
  "@types/semver": "7.5.8",
182
+ "@types/graceful-fs": "4.1.9",
182
183
  "@types/eventsource": "^1.1.15",
183
184
  "@types/node-fetch": "2.5.12",
184
185
  "@teambit/bit.content.what-is-bit": "1.96.13",