@teambit/isolator 1.0.227 → 1.0.229
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/artifacts/__bit_junit.xml +1 -1
- package/artifacts/preview/teambit_component_isolator-preview.js +1 -1
- package/artifacts/schema.json +637 -178
- package/dist/capsule/capsule.d.ts +75 -0
- package/dist/capsule/container-exec.d.ts +14 -0
- package/dist/capsule/container.d.ts +35 -0
- package/dist/capsule/index.d.ts +3 -0
- package/dist/capsule-list.d.ts +21 -0
- package/dist/capsule-list.js +15 -0
- package/dist/capsule-list.js.map +1 -1
- package/dist/index.d.ts +6 -0
- package/dist/isolator.aspect.d.ts +2 -0
- package/dist/isolator.composition.d.ts +1 -0
- package/dist/isolator.main.runtime.d.ts +264 -0
- package/dist/network.d.ts +122 -0
- package/dist/{preview-1712719054377.js → preview-1712822929999.js} +2 -2
- package/dist/symlink-dependencies-to-capsules.d.ts +6 -0
- package/package.json +10 -10
- package/tsconfig.json +1 -22
package/package.json
CHANGED
@@ -1,12 +1,12 @@
|
|
1
1
|
{
|
2
2
|
"name": "@teambit/isolator",
|
3
|
-
"version": "1.0.
|
3
|
+
"version": "1.0.229",
|
4
4
|
"homepage": "https://bit.cloud/teambit/component/isolator",
|
5
5
|
"main": "dist/index.js",
|
6
6
|
"componentId": {
|
7
7
|
"scope": "teambit.component",
|
8
8
|
"name": "isolator",
|
9
|
-
"version": "1.0.
|
9
|
+
"version": "1.0.229"
|
10
10
|
},
|
11
11
|
"dependencies": {
|
12
12
|
"chalk": "2.4.2",
|
@@ -26,15 +26,15 @@
|
|
26
26
|
"@teambit/component-id": "1.2.0",
|
27
27
|
"@teambit/graph.cleargraph": "0.0.8",
|
28
28
|
"@teambit/harmony": "0.4.6",
|
29
|
-
"@teambit/component": "1.0.
|
30
|
-
"@teambit/dependency-resolver": "1.0.
|
31
|
-
"@teambit/aspect-loader": "1.0.
|
32
|
-
"@teambit/cli": "0.0.
|
29
|
+
"@teambit/component": "1.0.229",
|
30
|
+
"@teambit/dependency-resolver": "1.0.229",
|
31
|
+
"@teambit/aspect-loader": "1.0.229",
|
32
|
+
"@teambit/cli": "0.0.862",
|
33
33
|
"@teambit/component-package-version": "0.0.433",
|
34
34
|
"@teambit/dependencies.fs.linked-dependencies": "0.0.9",
|
35
|
-
"@teambit/global-config": "0.0.
|
36
|
-
"@teambit/graph": "1.0.
|
37
|
-
"@teambit/logger": "0.0.
|
35
|
+
"@teambit/global-config": "0.0.865",
|
36
|
+
"@teambit/graph": "1.0.229",
|
37
|
+
"@teambit/logger": "0.0.955",
|
38
38
|
"@teambit/workspace.modules.node-modules-linker": "0.0.167"
|
39
39
|
},
|
40
40
|
"devDependencies": {
|
@@ -45,7 +45,7 @@
|
|
45
45
|
"@types/uuid": "8.3.4",
|
46
46
|
"@types/mocha": "9.1.0",
|
47
47
|
"chai": "4.3.0",
|
48
|
-
"@teambit/harmony.envs.core-aspect-env": "0.0.
|
48
|
+
"@teambit/harmony.envs.core-aspect-env": "0.0.33"
|
49
49
|
},
|
50
50
|
"peerDependencies": {
|
51
51
|
"react": "^17.0.0 || ^18.0.0",
|
package/tsconfig.json
CHANGED
@@ -20,8 +20,7 @@
|
|
20
20
|
"emitDeclarationOnly": true,
|
21
21
|
"strict": true,
|
22
22
|
"strictPropertyInitialization": false,
|
23
|
-
"noImplicitAny": false
|
24
|
-
"composite": true
|
23
|
+
"noImplicitAny": false
|
25
24
|
},
|
26
25
|
"exclude": [
|
27
26
|
"artifacts",
|
@@ -36,25 +35,5 @@
|
|
36
35
|
"include": [
|
37
36
|
"**/*",
|
38
37
|
"**/*.json"
|
39
|
-
],
|
40
|
-
"references": [
|
41
|
-
{
|
42
|
-
"path": "/home/circleci/Library/Caches/Bit/capsules/8891be5ad3d35bfc38b9cd90c0e05b598a5a55af/teambit.component_component@1.0.227"
|
43
|
-
},
|
44
|
-
{
|
45
|
-
"path": "/home/circleci/Library/Caches/Bit/capsules/8891be5ad3d35bfc38b9cd90c0e05b598a5a55af/teambit.harmony_aspect-loader@1.0.227"
|
46
|
-
},
|
47
|
-
{
|
48
|
-
"path": "/home/circleci/Library/Caches/Bit/capsules/8891be5ad3d35bfc38b9cd90c0e05b598a5a55af/teambit.harmony_cli@0.0.860"
|
49
|
-
},
|
50
|
-
{
|
51
|
-
"path": "/home/circleci/Library/Caches/Bit/capsules/8891be5ad3d35bfc38b9cd90c0e05b598a5a55af/teambit.harmony_global-config@0.0.863"
|
52
|
-
},
|
53
|
-
{
|
54
|
-
"path": "/home/circleci/Library/Caches/Bit/capsules/8891be5ad3d35bfc38b9cd90c0e05b598a5a55af/teambit.component_graph@1.0.227"
|
55
|
-
},
|
56
|
-
{
|
57
|
-
"path": "/home/circleci/Library/Caches/Bit/capsules/8891be5ad3d35bfc38b9cd90c0e05b598a5a55af/teambit.harmony_logger@0.0.953"
|
58
|
-
}
|
59
38
|
]
|
60
39
|
}
|