@teambit/bit 1.9.87 → 1.9.89
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/app.js +26 -0
- package/dist/app.js.map +1 -1
- package/dist/{preview-1741111850470.js → preview-1741231104210.js} +2 -2
- package/package.json +115 -115
package/dist/app.js
CHANGED
@@ -64,6 +64,7 @@ process.on('uncaughtException', err => {
|
|
64
64
|
console.error('uncaughtException', err);
|
65
65
|
process.exit(1);
|
66
66
|
});
|
67
|
+
consoleFileReadUsages();
|
67
68
|
// monkey patch fs module to avoid EMFILE error (especially when running watch operation)
|
68
69
|
_gracefulFs().default.gracefulify(_fs().default);
|
69
70
|
if (process.argv.includes('--get-yargs-completions')) {
|
@@ -92,5 +93,30 @@ async function initApp() {
|
|
92
93
|
await (0, _cli().handleErrorAndExit)(originalError, process.argv[2]);
|
93
94
|
}
|
94
95
|
}
|
96
|
+
function consoleFileReadUsages() {
|
97
|
+
if (!process.env.BIT_DEBUG_READ_FILE) {
|
98
|
+
return;
|
99
|
+
}
|
100
|
+
let numR = 0;
|
101
|
+
const print = filename => {
|
102
|
+
// eslint-disable-next-line no-console
|
103
|
+
console.log(`#${numR}`, filename);
|
104
|
+
};
|
105
|
+
const originalReadFile = _fs().default.readFile;
|
106
|
+
const originalReadFileSync = _fs().default.readFileSync;
|
107
|
+
// @ts-ignore
|
108
|
+
_fs().default.readFile = (...args) => {
|
109
|
+
numR++;
|
110
|
+
print(args[0]);
|
111
|
+
// @ts-ignore
|
112
|
+
return originalReadFile(...args);
|
113
|
+
};
|
114
|
+
_fs().default.readFileSync = (...args) => {
|
115
|
+
numR++;
|
116
|
+
print(args[0]);
|
117
|
+
// @ts-ignore
|
118
|
+
return originalReadFileSync(...args);
|
119
|
+
};
|
120
|
+
}
|
95
121
|
|
96
122
|
//# sourceMappingURL=app.js.map
|
package/dist/app.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","gracefulFs","gracefulify","fs","argv","includes","autocomplete","spawnPTY","shouldUseBitServer","ServerCommander","execute","catch","initApp","bootstrap","runCLI","originalError","handleErrorAndExit"],"sources":["app.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';\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 { runCLI } from './load-bit';\nimport { autocomplete } from './autocomplete';\nimport { ServerCommander, shouldUseBitServer } from './server-commander';\nimport { spawnPTY } from './server-forever';\n\nif (process.argv.includes('--get-yargs-completions')) {\n autocomplete();\n process.exit(0);\n}\n\nif (process.argv.includes('server-forever')) {\n spawnPTY();\n} else if (shouldUseBitServer()) {\n new ServerCommander().execute().catch(() => {\n // eslint-disable-next-line @typescript-eslint/no-floating-promises\n initApp();\n });\n} else {\n // eslint-disable-next-line @typescript-eslint/no-floating-promises\n initApp();\n}\n\nasync function initApp() {\n try {\n await bootstrap();\n // registerCoreExtensions();\n // const harmony = await Harmony.load([ConfigExt], {});\n await runCLI();\n } catch (err: any) {\n const originalError = err.originalError || err;\n await handleErrorAndExit(originalError, process.argv[2]);\n }\n}\n"],"mappings":";;AAOA,SAAAA,IAAA;EAAA,MAAAC,IAAA,GAAAC,sBAAA,CAAAC,OAAA;EAAAH,GAAA,YAAAA,CAAA;IAAA,OAAAC,IAAA;EAAA;EAAA,OAAAA,IAAA;AAAA;
|
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","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":["app.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 { runCLI } from './load-bit';\nimport { autocomplete } from './autocomplete';\nimport { ServerCommander, shouldUseBitServer } from './server-commander';\nimport { spawnPTY } from './server-forever';\n\nif (process.argv.includes('--get-yargs-completions')) {\n autocomplete();\n process.exit(0);\n}\n\nif (process.argv.includes('server-forever')) {\n spawnPTY();\n} else if (shouldUseBitServer()) {\n new ServerCommander().execute().catch(() => {\n // eslint-disable-next-line @typescript-eslint/no-floating-promises\n initApp();\n });\n} else {\n // eslint-disable-next-line @typescript-eslint/no-floating-promises\n initApp();\n}\n\nasync function initApp() {\n try {\n await bootstrap();\n // registerCoreExtensions();\n // const harmony = await Harmony.load([ConfigExt], {});\n await runCLI();\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}"],"mappings":"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","ignoreList":[]}
|
@@ -1,5 +1,5 @@
|
|
1
|
-
import * as compositions_0 from '/home/circleci/Library/Caches/Bit/capsules/8891be5ad/teambit.harmony_bit@1.9.
|
2
|
-
import * as overview_0 from '/home/circleci/Library/Caches/Bit/capsules/8891be5ad/teambit.harmony_bit@1.9.
|
1
|
+
import * as compositions_0 from '/home/circleci/Library/Caches/Bit/capsules/8891be5ad/teambit.harmony_bit@1.9.89/dist/bit.compositions.js';
|
2
|
+
import * as overview_0 from '/home/circleci/Library/Caches/Bit/capsules/8891be5ad/teambit.harmony_bit@1.9.89/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": "1.9.
|
3
|
+
"version": "1.9.89",
|
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.9.
|
9
|
+
"version": "1.9.89"
|
10
10
|
},
|
11
11
|
"dependencies": {
|
12
12
|
"graceful-fs": "4.2.10",
|
@@ -49,126 +49,126 @@
|
|
49
49
|
"@teambit/legacy-bit-id": "1.1.2",
|
50
50
|
"@teambit/ui-foundation.ui.navigation.react-router-adapter": "6.1.1",
|
51
51
|
"@teambit/base-react.navigation.link": "2.0.31",
|
52
|
-
"@teambit/cli": "0.0.
|
53
|
-
"@teambit/harmony.content.cli-reference": "2.0.
|
54
|
-
"@teambit/legacy.extension-data": "0.0.
|
52
|
+
"@teambit/cli": "0.0.1139",
|
53
|
+
"@teambit/harmony.content.cli-reference": "2.0.575",
|
54
|
+
"@teambit/legacy.extension-data": "0.0.44",
|
55
55
|
"@teambit/bit.get-bit-version": "0.0.5",
|
56
56
|
"@teambit/legacy.analytics": "0.0.73",
|
57
57
|
"@teambit/legacy.constants": "0.0.11",
|
58
58
|
"@teambit/legacy.loader": "0.0.7",
|
59
59
|
"@teambit/legacy.logger": "0.0.16",
|
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.
|
60
|
+
"@teambit/aspect-loader": "1.0.562",
|
61
|
+
"@teambit/clear-cache": "0.0.461",
|
62
|
+
"@teambit/config": "0.0.1313",
|
63
|
+
"@teambit/envs": "1.0.562",
|
64
|
+
"@teambit/generator": "1.0.563",
|
65
|
+
"@teambit/legacy.bit-map": "0.0.99",
|
66
|
+
"@teambit/legacy.consumer-component": "0.0.43",
|
67
|
+
"@teambit/legacy.consumer-config": "0.0.42",
|
68
|
+
"@teambit/legacy.consumer": "0.0.42",
|
69
|
+
"@teambit/legacy.scope-api": "0.0.97",
|
70
70
|
"@teambit/scope.modules.find-scope-path": "0.0.12",
|
71
|
-
"@teambit/workspace.modules.node-modules-linker": "0.0.
|
71
|
+
"@teambit/workspace.modules.node-modules-linker": "0.0.270",
|
72
72
|
"@teambit/workspace.modules.workspace-locator": "0.0.12",
|
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/cloud": "0.0.
|
84
|
-
"@teambit/code": "1.0.
|
85
|
-
"@teambit/command-bar": "1.0.
|
86
|
-
"@teambit/community": "1.0.
|
87
|
-
"@teambit/compiler": "1.0.
|
88
|
-
"@teambit/component-compare": "1.0.
|
89
|
-
"@teambit/component-log": "1.0.
|
90
|
-
"@teambit/component-sizer": "1.0.
|
91
|
-
"@teambit/component-tree": "1.0.
|
92
|
-
"@teambit/component-writer": "1.0.
|
93
|
-
"@teambit/component": "1.0.
|
94
|
-
"@teambit/compositions": "1.0.
|
95
|
-
"@teambit/config-merger": "0.0.
|
96
|
-
"@teambit/config-store": "0.0.
|
97
|
-
"@teambit/dependencies": "1.0.
|
98
|
-
"@teambit/dependency-resolver": "1.0.
|
99
|
-
"@teambit/deprecation": "1.0.
|
100
|
-
"@teambit/dev-files": "1.0.
|
101
|
-
"@teambit/diagnostic": "1.0.
|
102
|
-
"@teambit/docs": "1.0.
|
103
|
-
"@teambit/doctor": "0.0.
|
104
|
-
"@teambit/eject": "1.0.
|
105
|
-
"@teambit/env": "1.0.
|
106
|
-
"@teambit/eslint": "1.0.
|
107
|
-
"@teambit/export": "1.0.
|
108
|
-
"@teambit/express": "0.0.
|
109
|
-
"@teambit/forking": "1.0.
|
110
|
-
"@teambit/formatter": "1.0.
|
111
|
-
"@teambit/git": "1.0.
|
112
|
-
"@teambit/global-config": "0.0.
|
113
|
-
"@teambit/graph": "1.0.
|
114
|
-
"@teambit/graphql": "1.0.
|
115
|
-
"@teambit/harmony-ui-app": "1.0.
|
116
|
-
"@teambit/host-initializer": "0.0.
|
117
|
-
"@teambit/importer": "1.0.
|
118
|
-
"@teambit/insights": "1.0.
|
119
|
-
"@teambit/install": "1.0.
|
120
|
-
"@teambit/ipc-events": "1.0.
|
121
|
-
"@teambit/isolator": "1.0.
|
122
|
-
"@teambit/issues": "1.0.
|
123
|
-
"@teambit/jest": "1.0.
|
124
|
-
"@teambit/lanes": "1.0.
|
125
|
-
"@teambit/linter": "1.0.
|
126
|
-
"@teambit/lister": "1.0.
|
127
|
-
"@teambit/logger": "0.0.
|
128
|
-
"@teambit/mdx": "1.0.
|
129
|
-
"@teambit/merge-lanes": "1.0.
|
130
|
-
"@teambit/merging": "1.0.
|
131
|
-
"@teambit/mocha": "1.0.
|
132
|
-
"@teambit/mover": "1.0.
|
133
|
-
"@teambit/multi-compiler": "1.0.
|
134
|
-
"@teambit/multi-tester": "1.0.
|
135
|
-
"@teambit/new-component-helper": "1.0.
|
136
|
-
"@teambit/node": "1.0.
|
137
|
-
"@teambit/notifications": "1.0.
|
138
|
-
"@teambit/objects": "0.0.
|
139
|
-
"@teambit/panels": "0.0.
|
140
|
-
"@teambit/pkg": "1.0.
|
141
|
-
"@teambit/pnpm": "1.0.
|
142
|
-
"@teambit/prettier": "1.0.
|
143
|
-
"@teambit/preview": "1.0.
|
144
|
-
"@teambit/pubsub": "1.0.
|
145
|
-
"@teambit/react-router": "1.0.
|
146
|
-
"@teambit/react": "1.0.
|
147
|
-
"@teambit/readme": "1.0.
|
148
|
-
"@teambit/refactoring": "1.0.
|
149
|
-
"@teambit/remove": "1.0.
|
150
|
-
"@teambit/renaming": "1.0.
|
151
|
-
"@teambit/schema": "1.0.
|
152
|
-
"@teambit/scope": "1.0.
|
153
|
-
"@teambit/sidebar": "1.0.
|
154
|
-
"@teambit/sign": "1.0.
|
155
|
-
"@teambit/snapping": "1.0.
|
156
|
-
"@teambit/stash": "1.0.
|
157
|
-
"@teambit/status": "1.0.
|
158
|
-
"@teambit/tester": "1.0.
|
159
|
-
"@teambit/tracker": "1.0.
|
160
|
-
"@teambit/typescript": "1.0.
|
161
|
-
"@teambit/ui": "1.0.
|
162
|
-
"@teambit/update-dependencies": "1.0.
|
163
|
-
"@teambit/user-agent": "1.0.
|
164
|
-
"@teambit/variants": "0.0.
|
165
|
-
"@teambit/version-history": "0.0.
|
166
|
-
"@teambit/watcher": "1.0.
|
167
|
-
"@teambit/webpack": "1.0.
|
168
|
-
"@teambit/worker": "0.0.
|
169
|
-
"@teambit/workspace-config-files": "1.0.
|
170
|
-
"@teambit/workspace": "1.0.
|
171
|
-
"@teambit/yarn": "1.0.
|
73
|
+
"@teambit/api-reference": "1.0.562",
|
74
|
+
"@teambit/api-server": "1.0.563",
|
75
|
+
"@teambit/application": "1.0.562",
|
76
|
+
"@teambit/aspect": "1.0.562",
|
77
|
+
"@teambit/babel": "1.0.562",
|
78
|
+
"@teambit/builder": "1.0.562",
|
79
|
+
"@teambit/bundler": "1.0.562",
|
80
|
+
"@teambit/cache": "0.0.1232",
|
81
|
+
"@teambit/changelog": "1.0.562",
|
82
|
+
"@teambit/checkout": "1.0.562",
|
83
|
+
"@teambit/cloud": "0.0.839",
|
84
|
+
"@teambit/code": "1.0.562",
|
85
|
+
"@teambit/command-bar": "1.0.562",
|
86
|
+
"@teambit/community": "1.0.562",
|
87
|
+
"@teambit/compiler": "1.0.562",
|
88
|
+
"@teambit/component-compare": "1.0.562",
|
89
|
+
"@teambit/component-log": "1.0.562",
|
90
|
+
"@teambit/component-sizer": "1.0.562",
|
91
|
+
"@teambit/component-tree": "1.0.562",
|
92
|
+
"@teambit/component-writer": "1.0.562",
|
93
|
+
"@teambit/component": "1.0.562",
|
94
|
+
"@teambit/compositions": "1.0.562",
|
95
|
+
"@teambit/config-merger": "0.0.429",
|
96
|
+
"@teambit/config-store": "0.0.19",
|
97
|
+
"@teambit/dependencies": "1.0.562",
|
98
|
+
"@teambit/dependency-resolver": "1.0.562",
|
99
|
+
"@teambit/deprecation": "1.0.562",
|
100
|
+
"@teambit/dev-files": "1.0.562",
|
101
|
+
"@teambit/diagnostic": "1.0.562",
|
102
|
+
"@teambit/docs": "1.0.562",
|
103
|
+
"@teambit/doctor": "0.0.245",
|
104
|
+
"@teambit/eject": "1.0.562",
|
105
|
+
"@teambit/env": "1.0.562",
|
106
|
+
"@teambit/eslint": "1.0.562",
|
107
|
+
"@teambit/export": "1.0.562",
|
108
|
+
"@teambit/express": "0.0.1238",
|
109
|
+
"@teambit/forking": "1.0.562",
|
110
|
+
"@teambit/formatter": "1.0.562",
|
111
|
+
"@teambit/git": "1.0.562",
|
112
|
+
"@teambit/global-config": "0.0.1142",
|
113
|
+
"@teambit/graph": "1.0.562",
|
114
|
+
"@teambit/graphql": "1.0.562",
|
115
|
+
"@teambit/harmony-ui-app": "1.0.562",
|
116
|
+
"@teambit/host-initializer": "0.0.275",
|
117
|
+
"@teambit/importer": "1.0.562",
|
118
|
+
"@teambit/insights": "1.0.562",
|
119
|
+
"@teambit/install": "1.0.562",
|
120
|
+
"@teambit/ipc-events": "1.0.562",
|
121
|
+
"@teambit/isolator": "1.0.562",
|
122
|
+
"@teambit/issues": "1.0.562",
|
123
|
+
"@teambit/jest": "1.0.562",
|
124
|
+
"@teambit/lanes": "1.0.563",
|
125
|
+
"@teambit/linter": "1.0.562",
|
126
|
+
"@teambit/lister": "1.0.562",
|
127
|
+
"@teambit/logger": "0.0.1232",
|
128
|
+
"@teambit/mdx": "1.0.562",
|
129
|
+
"@teambit/merge-lanes": "1.0.563",
|
130
|
+
"@teambit/merging": "1.0.562",
|
131
|
+
"@teambit/mocha": "1.0.562",
|
132
|
+
"@teambit/mover": "1.0.562",
|
133
|
+
"@teambit/multi-compiler": "1.0.562",
|
134
|
+
"@teambit/multi-tester": "1.0.562",
|
135
|
+
"@teambit/new-component-helper": "1.0.562",
|
136
|
+
"@teambit/node": "1.0.562",
|
137
|
+
"@teambit/notifications": "1.0.562",
|
138
|
+
"@teambit/objects": "0.0.69",
|
139
|
+
"@teambit/panels": "0.0.1141",
|
140
|
+
"@teambit/pkg": "1.0.562",
|
141
|
+
"@teambit/pnpm": "1.0.564",
|
142
|
+
"@teambit/prettier": "1.0.562",
|
143
|
+
"@teambit/preview": "1.0.562",
|
144
|
+
"@teambit/pubsub": "1.0.562",
|
145
|
+
"@teambit/react-router": "1.0.562",
|
146
|
+
"@teambit/react": "1.0.562",
|
147
|
+
"@teambit/readme": "1.0.562",
|
148
|
+
"@teambit/refactoring": "1.0.562",
|
149
|
+
"@teambit/remove": "1.0.562",
|
150
|
+
"@teambit/renaming": "1.0.562",
|
151
|
+
"@teambit/schema": "1.0.562",
|
152
|
+
"@teambit/scope": "1.0.562",
|
153
|
+
"@teambit/sidebar": "1.0.562",
|
154
|
+
"@teambit/sign": "1.0.563",
|
155
|
+
"@teambit/snapping": "1.0.562",
|
156
|
+
"@teambit/stash": "1.0.562",
|
157
|
+
"@teambit/status": "1.0.563",
|
158
|
+
"@teambit/tester": "1.0.562",
|
159
|
+
"@teambit/tracker": "1.0.562",
|
160
|
+
"@teambit/typescript": "1.0.562",
|
161
|
+
"@teambit/ui": "1.0.562",
|
162
|
+
"@teambit/update-dependencies": "1.0.563",
|
163
|
+
"@teambit/user-agent": "1.0.562",
|
164
|
+
"@teambit/variants": "0.0.1406",
|
165
|
+
"@teambit/version-history": "0.0.354",
|
166
|
+
"@teambit/watcher": "1.0.562",
|
167
|
+
"@teambit/webpack": "1.0.562",
|
168
|
+
"@teambit/worker": "0.0.1443",
|
169
|
+
"@teambit/workspace-config-files": "1.0.562",
|
170
|
+
"@teambit/workspace": "1.0.562",
|
171
|
+
"@teambit/yarn": "1.0.562"
|
172
172
|
},
|
173
173
|
"devDependencies": {
|
174
174
|
"@types/fs-extra": "9.0.7",
|