@teambit/bit 1.11.42 → 1.11.44
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.
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import * as compositions_0 from '/home/circleci/Library/Caches/Bit/capsules/8891be5ad/teambit.harmony_bit@1.11.
|
|
2
|
-
import * as overview_0 from '/home/circleci/Library/Caches/Bit/capsules/8891be5ad/teambit.harmony_bit@1.11.
|
|
1
|
+
import * as compositions_0 from '/home/circleci/Library/Caches/Bit/capsules/8891be5ad/teambit.harmony_bit@1.11.44/dist/bit.compositions.js';
|
|
2
|
+
import * as overview_0 from '/home/circleci/Library/Caches/Bit/capsules/8891be5ad/teambit.harmony_bit@1.11.44/dist/bit.docs.js';
|
|
3
3
|
|
|
4
4
|
export const compositions = [compositions_0];
|
|
5
5
|
export const overview = [overview_0];
|
package/dist/run-bit.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"names":["_fs","data","_interopRequireDefault","require","_gracefulFs","_bootstrap","_cli","_loadBit","_autocomplete","_serverCommander","_serverForever","e","__esModule","default","process","on","err","console","error","exit","consoleFileReadUsages","gracefulFs","gracefulify","fs","runBit","additionalAspects","argv","includes","autocomplete","spawnPTY","shouldUseBitServer","ServerCommander","execute","catch","initApp","bootstrap","runCLI","originalError","handleErrorAndExit","env","BIT_DEBUG_READ_FILE","numR","print","filename","log","originalReadFile","readFile","originalReadFileSync","readFileSync","args"],"sources":["run-bit.ts"],"sourcesContent":["/* eslint-disable import/first */\nprocess.on('uncaughtException', (err) => {\n // eslint-disable-next-line no-console\n console.error('uncaughtException', err);\n process.exit(1);\n});\n\nimport fs from 'fs';\nconsoleFileReadUsages();\n\nimport gracefulFs from 'graceful-fs';\n// monkey patch fs module to avoid EMFILE error (especially when running watch operation)\ngracefulFs.gracefulify(fs);\n\nimport './hook-require';\nimport { bootstrap } from './bootstrap';\nimport { handleErrorAndExit } from '@teambit/cli';\nimport { Aspect } from '@teambit/harmony';\nimport { runCLI } from './load-bit';\nimport { autocomplete } from './autocomplete';\nimport { ServerCommander, shouldUseBitServer } from './server-commander';\nimport { spawnPTY } from './server-forever';\n\n/**\n * run bit cli tool\n * @param additionalAspects optionally, add non-core aspects to the runtime.\n */\nexport async function runBit(additionalAspects?: Aspect[]) {\n if (process.argv.includes('--get-yargs-completions')) {\n autocomplete();\n process.exit(0);\n }\n if (process.argv.includes('server-forever')) {\n spawnPTY();\n } else if (shouldUseBitServer()) {\n new ServerCommander().execute().catch(async () => {\n await initApp(additionalAspects);\n });\n } else {\n await initApp(additionalAspects);\n }\n}\n\nasync function initApp(additionalAspects?: Aspect[]) {\n try {\n await bootstrap();\n await runCLI(additionalAspects);\n } catch (err: any) {\n const originalError = err.originalError || err;\n await handleErrorAndExit(originalError, process.argv[2]);\n }\n}\n\nfunction consoleFileReadUsages() {\n if (!process.env.BIT_DEBUG_READ_FILE) {\n return;\n }\n let numR = 0;\n const print = (filename: string) => {\n // eslint-disable-next-line no-console\n console.log(`#${numR}`, filename);\n }
|
|
1
|
+
{"version":3,"names":["_fs","data","_interopRequireDefault","require","_gracefulFs","_bootstrap","_cli","_loadBit","_autocomplete","_serverCommander","_serverForever","e","__esModule","default","process","on","err","console","error","exit","consoleFileReadUsages","gracefulFs","gracefulify","fs","runBit","additionalAspects","argv","includes","autocomplete","spawnPTY","shouldUseBitServer","ServerCommander","execute","catch","initApp","bootstrap","runCLI","originalError","handleErrorAndExit","env","BIT_DEBUG_READ_FILE","numR","print","filename","log","originalReadFile","readFile","originalReadFileSync","readFileSync","args"],"sources":["run-bit.ts"],"sourcesContent":["/* eslint-disable import/first */\nprocess.on('uncaughtException', (err) => {\n // eslint-disable-next-line no-console\n console.error('uncaughtException', err);\n process.exit(1);\n});\n\nimport fs from 'fs';\nconsoleFileReadUsages();\n\nimport gracefulFs from 'graceful-fs';\n// monkey patch fs module to avoid EMFILE error (especially when running watch operation)\ngracefulFs.gracefulify(fs);\n\nimport './hook-require';\nimport { bootstrap } from './bootstrap';\nimport { handleErrorAndExit } from '@teambit/cli';\nimport { Aspect } from '@teambit/harmony';\nimport { runCLI } from './load-bit';\nimport { autocomplete } from './autocomplete';\nimport { ServerCommander, shouldUseBitServer } from './server-commander';\nimport { spawnPTY } from './server-forever';\n\n/**\n * run bit cli tool\n * @param additionalAspects optionally, add non-core aspects to the runtime.\n */\nexport async function runBit(additionalAspects?: Aspect[]) {\n if (process.argv.includes('--get-yargs-completions')) {\n autocomplete();\n process.exit(0);\n }\n if (process.argv.includes('server-forever')) {\n spawnPTY();\n } else if (shouldUseBitServer()) {\n new ServerCommander().execute().catch(async () => {\n await initApp(additionalAspects);\n });\n } else {\n await initApp(additionalAspects);\n }\n}\n\nasync function initApp(additionalAspects?: Aspect[]) {\n try {\n await bootstrap();\n await runCLI(additionalAspects);\n } catch (err: any) {\n const originalError = err.originalError || err;\n await handleErrorAndExit(originalError, process.argv[2]);\n }\n}\n\nfunction consoleFileReadUsages() {\n if (!process.env.BIT_DEBUG_READ_FILE) {\n return;\n }\n let numR = 0;\n const print = (filename: string) => {\n // eslint-disable-next-line no-console\n console.log(`#${numR}`, filename);\n };\n const originalReadFile = fs.readFile;\n const originalReadFileSync = fs.readFileSync;\n // @ts-ignore\n fs.readFile = (...args) => {\n numR++;\n print(args[0]);\n // @ts-ignore\n return originalReadFile(...args);\n };\n\n fs.readFileSync = (...args) => {\n numR++;\n print(args[0]);\n // @ts-ignore\n return originalReadFileSync(...args);\n };\n}\n"],"mappings":"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","ignoreList":[]}
|
package/package.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@teambit/bit",
|
|
3
|
-
"version": "1.11.
|
|
3
|
+
"version": "1.11.44",
|
|
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": "1.11.
|
|
9
|
+
"version": "1.11.44"
|
|
10
10
|
},
|
|
11
11
|
"dependencies": {
|
|
12
12
|
"comment-json": "4.2.5",
|
|
@@ -50,126 +50,126 @@
|
|
|
50
50
|
"@teambit/ui-foundation.ui.navigation.react-router-adapter": "6.1.3",
|
|
51
51
|
"@teambit/base-react.navigation.link": "2.0.31",
|
|
52
52
|
"@teambit/harmony.content.cli-reference": "2.0.671",
|
|
53
|
-
"@teambit/cli": "0.0.
|
|
54
|
-
"@teambit/legacy.extension-data": "0.0.
|
|
53
|
+
"@teambit/cli": "0.0.1228",
|
|
54
|
+
"@teambit/legacy.extension-data": "0.0.57",
|
|
55
55
|
"@teambit/bit.get-bit-version": "0.0.5",
|
|
56
56
|
"@teambit/legacy.analytics": "0.0.74",
|
|
57
57
|
"@teambit/legacy.constants": "0.0.12",
|
|
58
58
|
"@teambit/legacy.loader": "0.0.7",
|
|
59
|
-
"@teambit/legacy.logger": "0.0.
|
|
60
|
-
"@teambit/aspect-loader": "1.0.
|
|
61
|
-
"@teambit/clear-cache": "0.0.
|
|
62
|
-
"@teambit/config": "0.0.
|
|
63
|
-
"@teambit/envs": "1.0.
|
|
64
|
-
"@teambit/generator": "1.0.
|
|
65
|
-
"@teambit/legacy.bit-map": "0.0.
|
|
66
|
-
"@teambit/legacy.consumer-component": "0.0.
|
|
67
|
-
"@teambit/legacy.consumer-config": "0.0.
|
|
68
|
-
"@teambit/legacy.consumer": "0.0.
|
|
69
|
-
"@teambit/legacy.scope-api": "0.0.
|
|
59
|
+
"@teambit/legacy.logger": "0.0.21",
|
|
60
|
+
"@teambit/aspect-loader": "1.0.651",
|
|
61
|
+
"@teambit/clear-cache": "0.0.475",
|
|
62
|
+
"@teambit/config": "0.0.1402",
|
|
63
|
+
"@teambit/envs": "1.0.651",
|
|
64
|
+
"@teambit/generator": "1.0.652",
|
|
65
|
+
"@teambit/legacy.bit-map": "0.0.112",
|
|
66
|
+
"@teambit/legacy.consumer-component": "0.0.56",
|
|
67
|
+
"@teambit/legacy.consumer-config": "0.0.55",
|
|
68
|
+
"@teambit/legacy.consumer": "0.0.55",
|
|
69
|
+
"@teambit/legacy.scope-api": "0.0.110",
|
|
70
70
|
"@teambit/scope.modules.find-scope-path": "0.0.13",
|
|
71
|
-
"@teambit/workspace.modules.node-modules-linker": "0.0.
|
|
71
|
+
"@teambit/workspace.modules.node-modules-linker": "0.0.283",
|
|
72
72
|
"@teambit/workspace.modules.workspace-locator": "0.0.13",
|
|
73
|
-
"@teambit/api-reference": "1.0.
|
|
74
|
-
"@teambit/api-server": "1.0.
|
|
75
|
-
"@teambit/application": "1.0.
|
|
76
|
-
"@teambit/aspect": "1.0.
|
|
77
|
-
"@teambit/babel": "1.0.
|
|
78
|
-
"@teambit/builder": "1.0.
|
|
79
|
-
"@teambit/bundler": "1.0.
|
|
80
|
-
"@teambit/cache": "0.0.
|
|
81
|
-
"@teambit/changelog": "1.0.
|
|
82
|
-
"@teambit/checkout": "1.0.
|
|
83
|
-
"@teambit/ci": "0.0.
|
|
84
|
-
"@teambit/cli-mcp-server": "0.0.
|
|
85
|
-
"@teambit/cloud": "0.0.
|
|
86
|
-
"@teambit/code": "1.0.
|
|
87
|
-
"@teambit/command-bar": "1.0.
|
|
88
|
-
"@teambit/community": "1.0.
|
|
89
|
-
"@teambit/compiler": "1.0.
|
|
90
|
-
"@teambit/component-compare": "1.0.
|
|
91
|
-
"@teambit/component-log": "1.0.
|
|
92
|
-
"@teambit/component-sizer": "1.0.
|
|
93
|
-
"@teambit/component-tree": "1.0.
|
|
94
|
-
"@teambit/component-writer": "1.0.
|
|
95
|
-
"@teambit/component": "1.0.
|
|
96
|
-
"@teambit/compositions": "1.0.
|
|
97
|
-
"@teambit/config-merger": "0.0.
|
|
98
|
-
"@teambit/config-store": "0.0.
|
|
99
|
-
"@teambit/dependencies": "1.0.
|
|
100
|
-
"@teambit/dependency-resolver": "1.0.
|
|
101
|
-
"@teambit/deprecation": "1.0.
|
|
102
|
-
"@teambit/dev-files": "1.0.
|
|
103
|
-
"@teambit/diagnostic": "1.0.
|
|
104
|
-
"@teambit/docs": "1.0.
|
|
105
|
-
"@teambit/doctor": "0.0.
|
|
106
|
-
"@teambit/eject": "1.0.
|
|
107
|
-
"@teambit/env": "1.0.
|
|
108
|
-
"@teambit/eslint": "1.0.
|
|
109
|
-
"@teambit/export": "1.0.
|
|
110
|
-
"@teambit/express": "0.0.
|
|
111
|
-
"@teambit/forking": "1.0.
|
|
112
|
-
"@teambit/formatter": "1.0.
|
|
113
|
-
"@teambit/git": "1.0.
|
|
114
|
-
"@teambit/global-config": "0.0.
|
|
115
|
-
"@teambit/graph": "1.0.
|
|
116
|
-
"@teambit/graphql": "1.0.
|
|
117
|
-
"@teambit/harmony-ui-app": "1.0.
|
|
118
|
-
"@teambit/host-initializer": "0.0.
|
|
119
|
-
"@teambit/importer": "1.0.
|
|
120
|
-
"@teambit/insights": "1.0.
|
|
121
|
-
"@teambit/install": "1.0.
|
|
122
|
-
"@teambit/ipc-events": "1.0.
|
|
123
|
-
"@teambit/isolator": "1.0.
|
|
124
|
-
"@teambit/issues": "1.0.
|
|
125
|
-
"@teambit/jest": "1.0.
|
|
126
|
-
"@teambit/lanes": "1.0.
|
|
127
|
-
"@teambit/linter": "1.0.
|
|
128
|
-
"@teambit/lister": "1.0.
|
|
129
|
-
"@teambit/logger": "0.0.
|
|
130
|
-
"@teambit/mdx": "1.0.
|
|
131
|
-
"@teambit/merge-lanes": "1.0.
|
|
132
|
-
"@teambit/merging": "1.0.
|
|
133
|
-
"@teambit/mocha": "1.0.
|
|
134
|
-
"@teambit/mover": "1.0.
|
|
135
|
-
"@teambit/multi-compiler": "1.0.
|
|
136
|
-
"@teambit/multi-tester": "1.0.
|
|
137
|
-
"@teambit/new-component-helper": "1.0.
|
|
138
|
-
"@teambit/node": "1.0.
|
|
139
|
-
"@teambit/notifications": "1.0.
|
|
140
|
-
"@teambit/objects": "0.0.
|
|
141
|
-
"@teambit/panels": "0.0.
|
|
142
|
-
"@teambit/pkg": "1.0.
|
|
143
|
-
"@teambit/pnpm": "1.0.
|
|
144
|
-
"@teambit/prettier": "1.0.
|
|
145
|
-
"@teambit/preview": "1.0.
|
|
146
|
-
"@teambit/pubsub": "1.0.
|
|
147
|
-
"@teambit/react-router": "1.0.
|
|
148
|
-
"@teambit/react": "1.0.
|
|
149
|
-
"@teambit/readme": "1.0.
|
|
150
|
-
"@teambit/refactoring": "1.0.
|
|
151
|
-
"@teambit/remove": "1.0.
|
|
152
|
-
"@teambit/renaming": "1.0.
|
|
153
|
-
"@teambit/schema": "1.0.
|
|
154
|
-
"@teambit/scope": "1.0.
|
|
155
|
-
"@teambit/sidebar": "1.0.
|
|
156
|
-
"@teambit/snapping": "1.0.
|
|
157
|
-
"@teambit/stash": "1.0.
|
|
158
|
-
"@teambit/status": "1.0.
|
|
159
|
-
"@teambit/tester": "1.0.
|
|
160
|
-
"@teambit/tracker": "1.0.
|
|
161
|
-
"@teambit/typescript": "1.0.
|
|
162
|
-
"@teambit/ui": "1.0.
|
|
163
|
-
"@teambit/user-agent": "1.0.
|
|
164
|
-
"@teambit/variants": "0.0.
|
|
165
|
-
"@teambit/version-history": "0.0.
|
|
166
|
-
"@teambit/vue-aspect": "0.0.
|
|
167
|
-
"@teambit/watcher": "1.0.
|
|
168
|
-
"@teambit/webpack": "1.0.
|
|
169
|
-
"@teambit/worker": "0.0.
|
|
170
|
-
"@teambit/workspace-config-files": "1.0.
|
|
171
|
-
"@teambit/workspace": "1.0.
|
|
172
|
-
"@teambit/yarn": "1.0.
|
|
73
|
+
"@teambit/api-reference": "1.0.651",
|
|
74
|
+
"@teambit/api-server": "1.0.654",
|
|
75
|
+
"@teambit/application": "1.0.651",
|
|
76
|
+
"@teambit/aspect": "1.0.651",
|
|
77
|
+
"@teambit/babel": "1.0.651",
|
|
78
|
+
"@teambit/builder": "1.0.651",
|
|
79
|
+
"@teambit/bundler": "1.0.651",
|
|
80
|
+
"@teambit/cache": "0.0.1321",
|
|
81
|
+
"@teambit/changelog": "1.0.651",
|
|
82
|
+
"@teambit/checkout": "1.0.651",
|
|
83
|
+
"@teambit/ci": "0.0.11",
|
|
84
|
+
"@teambit/cli-mcp-server": "0.0.42",
|
|
85
|
+
"@teambit/cloud": "0.0.928",
|
|
86
|
+
"@teambit/code": "1.0.651",
|
|
87
|
+
"@teambit/command-bar": "1.0.651",
|
|
88
|
+
"@teambit/community": "1.0.651",
|
|
89
|
+
"@teambit/compiler": "1.0.651",
|
|
90
|
+
"@teambit/component-compare": "1.0.651",
|
|
91
|
+
"@teambit/component-log": "1.0.651",
|
|
92
|
+
"@teambit/component-sizer": "1.0.651",
|
|
93
|
+
"@teambit/component-tree": "1.0.651",
|
|
94
|
+
"@teambit/component-writer": "1.0.651",
|
|
95
|
+
"@teambit/component": "1.0.651",
|
|
96
|
+
"@teambit/compositions": "1.0.651",
|
|
97
|
+
"@teambit/config-merger": "0.0.518",
|
|
98
|
+
"@teambit/config-store": "0.0.108",
|
|
99
|
+
"@teambit/dependencies": "1.0.651",
|
|
100
|
+
"@teambit/dependency-resolver": "1.0.651",
|
|
101
|
+
"@teambit/deprecation": "1.0.651",
|
|
102
|
+
"@teambit/dev-files": "1.0.651",
|
|
103
|
+
"@teambit/diagnostic": "1.0.651",
|
|
104
|
+
"@teambit/docs": "1.0.651",
|
|
105
|
+
"@teambit/doctor": "0.0.334",
|
|
106
|
+
"@teambit/eject": "1.0.651",
|
|
107
|
+
"@teambit/env": "1.0.651",
|
|
108
|
+
"@teambit/eslint": "1.0.651",
|
|
109
|
+
"@teambit/export": "1.0.651",
|
|
110
|
+
"@teambit/express": "0.0.1327",
|
|
111
|
+
"@teambit/forking": "1.0.651",
|
|
112
|
+
"@teambit/formatter": "1.0.651",
|
|
113
|
+
"@teambit/git": "1.0.651",
|
|
114
|
+
"@teambit/global-config": "0.0.1231",
|
|
115
|
+
"@teambit/graph": "1.0.651",
|
|
116
|
+
"@teambit/graphql": "1.0.651",
|
|
117
|
+
"@teambit/harmony-ui-app": "1.0.651",
|
|
118
|
+
"@teambit/host-initializer": "0.0.364",
|
|
119
|
+
"@teambit/importer": "1.0.651",
|
|
120
|
+
"@teambit/insights": "1.0.651",
|
|
121
|
+
"@teambit/install": "1.0.651",
|
|
122
|
+
"@teambit/ipc-events": "1.0.651",
|
|
123
|
+
"@teambit/isolator": "1.0.651",
|
|
124
|
+
"@teambit/issues": "1.0.651",
|
|
125
|
+
"@teambit/jest": "1.0.651",
|
|
126
|
+
"@teambit/lanes": "1.0.652",
|
|
127
|
+
"@teambit/linter": "1.0.651",
|
|
128
|
+
"@teambit/lister": "1.0.651",
|
|
129
|
+
"@teambit/logger": "0.0.1321",
|
|
130
|
+
"@teambit/mdx": "1.0.651",
|
|
131
|
+
"@teambit/merge-lanes": "1.0.652",
|
|
132
|
+
"@teambit/merging": "1.0.651",
|
|
133
|
+
"@teambit/mocha": "1.0.651",
|
|
134
|
+
"@teambit/mover": "1.0.651",
|
|
135
|
+
"@teambit/multi-compiler": "1.0.651",
|
|
136
|
+
"@teambit/multi-tester": "1.0.651",
|
|
137
|
+
"@teambit/new-component-helper": "1.0.651",
|
|
138
|
+
"@teambit/node": "1.0.651",
|
|
139
|
+
"@teambit/notifications": "1.0.651",
|
|
140
|
+
"@teambit/objects": "0.0.158",
|
|
141
|
+
"@teambit/panels": "0.0.1230",
|
|
142
|
+
"@teambit/pkg": "1.0.651",
|
|
143
|
+
"@teambit/pnpm": "1.0.656",
|
|
144
|
+
"@teambit/prettier": "1.0.651",
|
|
145
|
+
"@teambit/preview": "1.0.651",
|
|
146
|
+
"@teambit/pubsub": "1.0.651",
|
|
147
|
+
"@teambit/react-router": "1.0.651",
|
|
148
|
+
"@teambit/react": "1.0.651",
|
|
149
|
+
"@teambit/readme": "1.0.651",
|
|
150
|
+
"@teambit/refactoring": "1.0.651",
|
|
151
|
+
"@teambit/remove": "1.0.651",
|
|
152
|
+
"@teambit/renaming": "1.0.651",
|
|
153
|
+
"@teambit/schema": "1.0.651",
|
|
154
|
+
"@teambit/scope": "1.0.651",
|
|
155
|
+
"@teambit/sidebar": "1.0.651",
|
|
156
|
+
"@teambit/snapping": "1.0.651",
|
|
157
|
+
"@teambit/stash": "1.0.651",
|
|
158
|
+
"@teambit/status": "1.0.652",
|
|
159
|
+
"@teambit/tester": "1.0.651",
|
|
160
|
+
"@teambit/tracker": "1.0.651",
|
|
161
|
+
"@teambit/typescript": "1.0.651",
|
|
162
|
+
"@teambit/ui": "1.0.651",
|
|
163
|
+
"@teambit/user-agent": "1.0.651",
|
|
164
|
+
"@teambit/variants": "0.0.1495",
|
|
165
|
+
"@teambit/version-history": "0.0.443",
|
|
166
|
+
"@teambit/vue-aspect": "0.0.17",
|
|
167
|
+
"@teambit/watcher": "1.0.651",
|
|
168
|
+
"@teambit/webpack": "1.0.651",
|
|
169
|
+
"@teambit/worker": "0.0.1532",
|
|
170
|
+
"@teambit/workspace-config-files": "1.0.651",
|
|
171
|
+
"@teambit/workspace": "1.0.651",
|
|
172
|
+
"@teambit/yarn": "1.0.651"
|
|
173
173
|
},
|
|
174
174
|
"devDependencies": {
|
|
175
175
|
"@types/fs-extra": "9.0.7",
|