@teambit/pkg 1.0.228 → 1.0.230
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/static/css/teambit.pkg/{pkg-preview.6879221c.css → pkg-preview.800fe9db.css} +6 -6
- package/artifacts/preview/teambit_pkg_pkg-preview.js +6 -6
- package/artifacts/schema.json +464 -112
- package/dist/exceptions/index.d.ts +3 -0
- package/dist/exceptions/package-tar-filet-not-found.d.ts +6 -0
- package/dist/exceptions/pkg-artifact-not-found.d.ts +6 -0
- package/dist/exceptions/scope-not-found.d.ts +5 -0
- package/dist/index.d.ts +6 -0
- package/dist/pack.cmd.d.ts +25 -0
- package/dist/pack.task.d.ts +17 -0
- package/dist/package-dependency/index.d.ts +2 -0
- package/dist/package-dependency/package-dependency-factory.d.ts +8 -0
- package/dist/package-dependency/package-dependency.d.ts +7 -0
- package/dist/package-env-type.d.ts +8 -0
- package/dist/package-generator.d.ts +19 -0
- package/dist/package.fragment.d.ts +16 -0
- package/dist/package.route.d.ts +18 -0
- package/dist/packer.d.ts +42 -0
- package/dist/pkg-artifact.d.ts +5 -0
- package/dist/pkg.aspect.d.ts +3 -0
- package/dist/pkg.composition.d.ts +1 -0
- package/dist/pkg.graphql.d.ts +3 -0
- package/dist/pkg.main.runtime.d.ts +194 -0
- package/dist/pkg.service.d.ts +18 -0
- package/dist/pkg.ui.runtime.d.ts +10 -0
- package/dist/prepare-packages.task.d.ts +31 -0
- package/dist/{preview-1712805335812.js → preview-1712891953391.js} +2 -2
- package/dist/publish-dry-run.task.d.ts +18 -0
- package/dist/publish.cmd.d.ts +24 -0
- package/dist/publish.task.d.ts +15 -0
- package/dist/publisher.d.ts +32 -0
- package/dist/write-npm-ignore.d.ts +3 -0
- package/package.json +19 -19
- package/tsconfig.json +1 -43
package/package.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@teambit/pkg",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.230",
|
|
4
4
|
"homepage": "https://bit.cloud/teambit/pkg/pkg",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"componentId": {
|
|
7
7
|
"scope": "teambit.pkg",
|
|
8
8
|
"name": "pkg",
|
|
9
|
-
"version": "1.0.
|
|
9
|
+
"version": "1.0.230"
|
|
10
10
|
},
|
|
11
11
|
"dependencies": {
|
|
12
12
|
"chalk": "2.4.2",
|
|
@@ -26,23 +26,23 @@
|
|
|
26
26
|
"@teambit/bit-error": "0.0.404",
|
|
27
27
|
"@teambit/ui-foundation.ui.use-box.menu": "1.0.7",
|
|
28
28
|
"@teambit/component-id": "1.2.0",
|
|
29
|
-
"@teambit/cli": "0.0.
|
|
30
|
-
"@teambit/builder": "1.0.
|
|
31
|
-
"@teambit/logger": "0.0.
|
|
32
|
-
"@teambit/typescript": "1.0.
|
|
33
|
-
"@teambit/envs": "1.0.
|
|
34
|
-
"@teambit/component": "1.0.
|
|
35
|
-
"@teambit/express": "0.0.
|
|
36
|
-
"@teambit/isolator": "1.0.
|
|
37
|
-
"@teambit/scope": "1.0.
|
|
38
|
-
"@teambit/graphql": "1.0.
|
|
39
|
-
"@teambit/component-issues": "0.0.
|
|
29
|
+
"@teambit/cli": "0.0.862",
|
|
30
|
+
"@teambit/builder": "1.0.230",
|
|
31
|
+
"@teambit/logger": "0.0.955",
|
|
32
|
+
"@teambit/typescript": "1.0.230",
|
|
33
|
+
"@teambit/envs": "1.0.230",
|
|
34
|
+
"@teambit/component": "1.0.230",
|
|
35
|
+
"@teambit/express": "0.0.961",
|
|
36
|
+
"@teambit/isolator": "1.0.230",
|
|
37
|
+
"@teambit/scope": "1.0.230",
|
|
38
|
+
"@teambit/graphql": "1.0.230",
|
|
39
|
+
"@teambit/component-issues": "0.0.144",
|
|
40
40
|
"@teambit/component-package-version": "0.0.433",
|
|
41
|
-
"@teambit/dependency-resolver": "1.0.
|
|
42
|
-
"@teambit/workspace.modules.node-modules-linker": "0.0.
|
|
43
|
-
"@teambit/workspace": "1.0.
|
|
44
|
-
"@teambit/ui": "1.0.
|
|
45
|
-
"@teambit/compiler": "1.0.
|
|
41
|
+
"@teambit/dependency-resolver": "1.0.230",
|
|
42
|
+
"@teambit/workspace.modules.node-modules-linker": "0.0.168",
|
|
43
|
+
"@teambit/workspace": "1.0.230",
|
|
44
|
+
"@teambit/ui": "1.0.230",
|
|
45
|
+
"@teambit/compiler": "1.0.230"
|
|
46
46
|
},
|
|
47
47
|
"devDependencies": {
|
|
48
48
|
"@types/mime": "2.0.3",
|
|
@@ -51,7 +51,7 @@
|
|
|
51
51
|
"@types/mocha": "9.1.0",
|
|
52
52
|
"chai": "4.3.0",
|
|
53
53
|
"@teambit/pkg.content.packages-overview": "1.95.9",
|
|
54
|
-
"@teambit/harmony.envs.core-aspect-env": "0.0.
|
|
54
|
+
"@teambit/harmony.envs.core-aspect-env": "0.0.33"
|
|
55
55
|
},
|
|
56
56
|
"peerDependencies": {
|
|
57
57
|
"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,46 +35,5 @@
|
|
|
36
35
|
"include": [
|
|
37
36
|
"**/*",
|
|
38
37
|
"**/*.json"
|
|
39
|
-
],
|
|
40
|
-
"references": [
|
|
41
|
-
{
|
|
42
|
-
"path": "/home/circleci/Library/Caches/Bit/capsules/8891be5ad3d35bfc38b9cd90c0e05b598a5a55af/teambit.harmony_cli@0.0.861"
|
|
43
|
-
},
|
|
44
|
-
{
|
|
45
|
-
"path": "/home/circleci/Library/Caches/Bit/capsules/8891be5ad3d35bfc38b9cd90c0e05b598a5a55af/teambit.pipelines_builder@1.0.228"
|
|
46
|
-
},
|
|
47
|
-
{
|
|
48
|
-
"path": "/home/circleci/Library/Caches/Bit/capsules/8891be5ad3d35bfc38b9cd90c0e05b598a5a55af/teambit.harmony_logger@0.0.954"
|
|
49
|
-
},
|
|
50
|
-
{
|
|
51
|
-
"path": "/home/circleci/Library/Caches/Bit/capsules/8891be5ad3d35bfc38b9cd90c0e05b598a5a55af/teambit.typescript_typescript@1.0.228"
|
|
52
|
-
},
|
|
53
|
-
{
|
|
54
|
-
"path": "/home/circleci/Library/Caches/Bit/capsules/8891be5ad3d35bfc38b9cd90c0e05b598a5a55af/teambit.envs_envs@1.0.228"
|
|
55
|
-
},
|
|
56
|
-
{
|
|
57
|
-
"path": "/home/circleci/Library/Caches/Bit/capsules/8891be5ad3d35bfc38b9cd90c0e05b598a5a55af/teambit.component_component@1.0.228"
|
|
58
|
-
},
|
|
59
|
-
{
|
|
60
|
-
"path": "/home/circleci/Library/Caches/Bit/capsules/8891be5ad3d35bfc38b9cd90c0e05b598a5a55af/teambit.harmony_express@0.0.960"
|
|
61
|
-
},
|
|
62
|
-
{
|
|
63
|
-
"path": "/home/circleci/Library/Caches/Bit/capsules/8891be5ad3d35bfc38b9cd90c0e05b598a5a55af/teambit.component_isolator@1.0.228"
|
|
64
|
-
},
|
|
65
|
-
{
|
|
66
|
-
"path": "/home/circleci/Library/Caches/Bit/capsules/8891be5ad3d35bfc38b9cd90c0e05b598a5a55af/teambit.scope_scope@1.0.228"
|
|
67
|
-
},
|
|
68
|
-
{
|
|
69
|
-
"path": "/home/circleci/Library/Caches/Bit/capsules/8891be5ad3d35bfc38b9cd90c0e05b598a5a55af/teambit.harmony_graphql@1.0.228"
|
|
70
|
-
},
|
|
71
|
-
{
|
|
72
|
-
"path": "/home/circleci/Library/Caches/Bit/capsules/8891be5ad3d35bfc38b9cd90c0e05b598a5a55af/teambit.workspace_workspace@1.0.228"
|
|
73
|
-
},
|
|
74
|
-
{
|
|
75
|
-
"path": "/home/circleci/Library/Caches/Bit/capsules/8891be5ad3d35bfc38b9cd90c0e05b598a5a55af/teambit.ui-foundation_ui@1.0.228"
|
|
76
|
-
},
|
|
77
|
-
{
|
|
78
|
-
"path": "/home/circleci/Library/Caches/Bit/capsules/8891be5ad3d35bfc38b9cd90c0e05b598a5a55af/teambit.compilation_compiler@1.0.228"
|
|
79
|
-
}
|
|
80
38
|
]
|
|
81
39
|
}
|