@teambit/tracker 1.0.1174 → 1.0.1176
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/add-cmd.d.ts +2 -1
- package/dist/add-cmd.js +5 -3
- package/dist/add-cmd.js.map +1 -1
- package/dist/add-components.d.ts +35 -2
- package/dist/add-components.js +259 -40
- package/dist/add-components.js.map +1 -1
- package/dist/add-components.spec.d.ts +1 -0
- package/dist/add-components.spec.js +205 -0
- package/dist/add-components.spec.js.map +1 -0
- package/dist/determine-main-file.js +10 -1
- package/dist/determine-main-file.js.map +1 -1
- package/dist/determine-main-file.spec.d.ts +1 -0
- package/dist/determine-main-file.spec.js +231 -0
- package/dist/determine-main-file.spec.js.map +1 -0
- package/dist/track-workspace-root.spec.d.ts +1 -0
- package/dist/track-workspace-root.spec.js +377 -0
- package/dist/track-workspace-root.spec.js.map +1 -0
- package/dist/tracker.main.runtime.d.ts +8 -1
- package/dist/tracker.main.runtime.js +2 -1
- package/dist/tracker.main.runtime.js.map +1 -1
- package/package.json +20 -16
- /package/dist/{preview-1789911586102.js → preview-1790183760587.js} +0 -0
package/package.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@teambit/tracker",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.1176",
|
|
4
4
|
"homepage": "https://bit.cloud/teambit/component/tracker",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"componentId": {
|
|
7
7
|
"scope": "teambit.component",
|
|
8
8
|
"name": "tracker",
|
|
9
|
-
"version": "1.0.
|
|
9
|
+
"version": "1.0.1176"
|
|
10
10
|
},
|
|
11
11
|
"dependencies": {
|
|
12
12
|
"chalk": "4.1.2",
|
|
@@ -18,30 +18,34 @@
|
|
|
18
18
|
"lodash": "4.17.21",
|
|
19
19
|
"string-format": "0.5.0",
|
|
20
20
|
"@teambit/bit-error": "0.0.404",
|
|
21
|
-
"@teambit/cli": "0.0.1393",
|
|
22
|
-
"@teambit/legacy.utils": "0.0.51",
|
|
23
21
|
"@teambit/component-id": "1.2.4",
|
|
24
22
|
"@teambit/legacy-bit-id": "1.1.3",
|
|
25
|
-
"@teambit/legacy.analytics": "0.0.
|
|
26
|
-
"@teambit/legacy.
|
|
27
|
-
"@teambit/legacy.
|
|
28
|
-
"@teambit/legacy.consumer": "0.0.164",
|
|
29
|
-
"@teambit/legacy.logger": "0.0.61",
|
|
30
|
-
"@teambit/workspace.modules.node-modules-linker": "0.0.396",
|
|
23
|
+
"@teambit/legacy.analytics": "0.0.109",
|
|
24
|
+
"@teambit/legacy.constants": "0.0.45",
|
|
25
|
+
"@teambit/legacy.logger": "0.0.62",
|
|
31
26
|
"@teambit/harmony": "0.4.12",
|
|
32
|
-
"@teambit/harmony.modules.concurrency": "0.0.
|
|
33
|
-
"@teambit/logger": "0.0.1486",
|
|
27
|
+
"@teambit/harmony.modules.concurrency": "0.0.46",
|
|
34
28
|
"@teambit/toolbox.promise.map-pool": "0.0.21",
|
|
35
|
-
"@teambit/
|
|
36
|
-
"@teambit/
|
|
29
|
+
"@teambit/cli": "0.0.1395",
|
|
30
|
+
"@teambit/legacy.utils": "0.0.52",
|
|
31
|
+
"@teambit/legacy.bit-map": "0.0.223",
|
|
32
|
+
"@teambit/legacy.consumer": "0.0.166",
|
|
33
|
+
"@teambit/workspace.modules.node-modules-linker": "0.0.398",
|
|
34
|
+
"@teambit/workspace": "1.0.1176",
|
|
35
|
+
"@teambit/envs": "1.0.1176",
|
|
36
|
+
"@teambit/logger": "0.0.1488"
|
|
37
37
|
},
|
|
38
38
|
"devDependencies": {
|
|
39
39
|
"@types/fs-extra": "9.0.7",
|
|
40
40
|
"@types/lodash": "4.14.165",
|
|
41
41
|
"@types/mocha": "9.1.0",
|
|
42
|
-
"@teambit/harmony.envs.core-aspect-env": "2.1.1"
|
|
42
|
+
"@teambit/harmony.envs.core-aspect-env": "2.1.1",
|
|
43
|
+
"@teambit/harmony.testing.load-aspect": "0.0.434",
|
|
44
|
+
"@teambit/workspace.testing.mock-workspace": "0.0.248"
|
|
45
|
+
},
|
|
46
|
+
"peerDependencies": {
|
|
47
|
+
"chai": "5.2.1"
|
|
43
48
|
},
|
|
44
|
-
"peerDependencies": {},
|
|
45
49
|
"license": "Apache-2.0",
|
|
46
50
|
"optionalDependencies": {},
|
|
47
51
|
"peerDependenciesMeta": {},
|
|
File without changes
|