@teambit/snapping 1.0.228 → 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 +4 -4
- package/artifacts/schema.json +649 -185
- package/dist/components-have-issues.d.ts +5 -0
- package/dist/flattened-edges.d.ts +65 -0
- package/dist/generate-comp-from-scope.d.ts +26 -0
- package/dist/index.d.ts +6 -0
- package/dist/reset-cmd.d.ts +24 -0
- package/dist/reset-component.d.ts +16 -0
- package/dist/snap-cmd.d.ts +32 -0
- package/dist/snap-distance-cmd.d.ts +14 -0
- package/dist/snap-from-scope.cmd.d.ts +52 -0
- package/dist/snapping.aspect.d.ts +2 -0
- package/dist/snapping.main.runtime.d.ts +195 -0
- package/dist/snapping.spec.d.ts +1 -0
- package/dist/tag-cmd.d.ts +48 -0
- package/dist/tag-from-scope.cmd.d.ts +41 -0
- package/dist/tag-model-component.d.ts +61 -0
- package/package.json +18 -18
- package/tsconfig.json +1 -46
- /package/dist/{preview-1712805335812.js → preview-1712822929999.js} +0 -0
package/package.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@teambit/snapping",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.229",
|
|
4
4
|
"homepage": "https://bit.cloud/teambit/component/snapping",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"componentId": {
|
|
7
7
|
"scope": "teambit.component",
|
|
8
8
|
"name": "snapping",
|
|
9
|
-
"version": "1.0.
|
|
9
|
+
"version": "1.0.229"
|
|
10
10
|
},
|
|
11
11
|
"dependencies": {
|
|
12
12
|
"chalk": "2.4.2",
|
|
@@ -21,21 +21,21 @@
|
|
|
21
21
|
"@teambit/harmony": "0.4.6",
|
|
22
22
|
"@teambit/component-version": "1.0.3",
|
|
23
23
|
"@teambit/lane-id": "0.0.311",
|
|
24
|
-
"@teambit/issues": "1.0.
|
|
25
|
-
"@teambit/graph": "1.0.
|
|
26
|
-
"@teambit/logger": "0.0.
|
|
27
|
-
"@teambit/scope": "1.0.
|
|
28
|
-
"@teambit/component": "1.0.
|
|
29
|
-
"@teambit/dependencies": "1.0.
|
|
30
|
-
"@teambit/dependency-resolver": "1.0.
|
|
31
|
-
"@teambit/cli": "0.0.
|
|
24
|
+
"@teambit/issues": "1.0.229",
|
|
25
|
+
"@teambit/graph": "1.0.229",
|
|
26
|
+
"@teambit/logger": "0.0.955",
|
|
27
|
+
"@teambit/scope": "1.0.229",
|
|
28
|
+
"@teambit/component": "1.0.229",
|
|
29
|
+
"@teambit/dependencies": "1.0.229",
|
|
30
|
+
"@teambit/dependency-resolver": "1.0.229",
|
|
31
|
+
"@teambit/cli": "0.0.862",
|
|
32
32
|
"@teambit/component-issues": "0.0.143",
|
|
33
|
-
"@teambit/global-config": "0.0.
|
|
34
|
-
"@teambit/builder": "1.0.
|
|
35
|
-
"@teambit/export": "1.0.
|
|
36
|
-
"@teambit/importer": "1.0.
|
|
37
|
-
"@teambit/insights": "1.0.
|
|
38
|
-
"@teambit/workspace": "1.0.
|
|
33
|
+
"@teambit/global-config": "0.0.865",
|
|
34
|
+
"@teambit/builder": "1.0.229",
|
|
35
|
+
"@teambit/export": "1.0.229",
|
|
36
|
+
"@teambit/importer": "1.0.229",
|
|
37
|
+
"@teambit/insights": "1.0.229",
|
|
38
|
+
"@teambit/workspace": "1.0.229",
|
|
39
39
|
"@teambit/workspace.modules.node-modules-linker": "0.0.167"
|
|
40
40
|
},
|
|
41
41
|
"devDependencies": {
|
|
@@ -47,8 +47,8 @@
|
|
|
47
47
|
"fs-extra": "10.0.0",
|
|
48
48
|
"@types/uuid": "8.3.4",
|
|
49
49
|
"@types/mocha": "9.1.0",
|
|
50
|
-
"@teambit/harmony.envs.core-aspect-env": "0.0.
|
|
51
|
-
"@teambit/compiler": "1.0.
|
|
50
|
+
"@teambit/harmony.envs.core-aspect-env": "0.0.33",
|
|
51
|
+
"@teambit/compiler": "1.0.229",
|
|
52
52
|
"@teambit/component.testing.mock-components": "0.0.195",
|
|
53
53
|
"@teambit/harmony.testing.load-aspect": "0.0.190",
|
|
54
54
|
"@teambit/workspace.testing.mock-workspace": "0.0.27"
|
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,49 +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_issues@1.0.228"
|
|
43
|
-
},
|
|
44
|
-
{
|
|
45
|
-
"path": "/home/circleci/Library/Caches/Bit/capsules/8891be5ad3d35bfc38b9cd90c0e05b598a5a55af/teambit.component_graph@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.scope_scope@1.0.228"
|
|
52
|
-
},
|
|
53
|
-
{
|
|
54
|
-
"path": "/home/circleci/Library/Caches/Bit/capsules/8891be5ad3d35bfc38b9cd90c0e05b598a5a55af/teambit.component_component@1.0.228"
|
|
55
|
-
},
|
|
56
|
-
{
|
|
57
|
-
"path": "/home/circleci/Library/Caches/Bit/capsules/8891be5ad3d35bfc38b9cd90c0e05b598a5a55af/teambit.dependencies_dependencies@1.0.228"
|
|
58
|
-
},
|
|
59
|
-
{
|
|
60
|
-
"path": "/home/circleci/Library/Caches/Bit/capsules/8891be5ad3d35bfc38b9cd90c0e05b598a5a55af/teambit.harmony_cli@0.0.861"
|
|
61
|
-
},
|
|
62
|
-
{
|
|
63
|
-
"path": "/home/circleci/Library/Caches/Bit/capsules/8891be5ad3d35bfc38b9cd90c0e05b598a5a55af/teambit.harmony_global-config@0.0.864"
|
|
64
|
-
},
|
|
65
|
-
{
|
|
66
|
-
"path": "/home/circleci/Library/Caches/Bit/capsules/8891be5ad3d35bfc38b9cd90c0e05b598a5a55af/teambit.pipelines_builder@1.0.228"
|
|
67
|
-
},
|
|
68
|
-
{
|
|
69
|
-
"path": "/home/circleci/Library/Caches/Bit/capsules/8891be5ad3d35bfc38b9cd90c0e05b598a5a55af/teambit.scope_export@1.0.228"
|
|
70
|
-
},
|
|
71
|
-
{
|
|
72
|
-
"path": "/home/circleci/Library/Caches/Bit/capsules/8891be5ad3d35bfc38b9cd90c0e05b598a5a55af/teambit.scope_importer@1.0.228"
|
|
73
|
-
},
|
|
74
|
-
{
|
|
75
|
-
"path": "/home/circleci/Library/Caches/Bit/capsules/8891be5ad3d35bfc38b9cd90c0e05b598a5a55af/teambit.explorer_insights@1.0.228"
|
|
76
|
-
},
|
|
77
|
-
{
|
|
78
|
-
"path": "/home/circleci/Library/Caches/Bit/capsules/8891be5ad3d35bfc38b9cd90c0e05b598a5a55af/teambit.workspace_workspace@1.0.228"
|
|
79
|
-
},
|
|
80
|
-
{
|
|
81
|
-
"path": "/home/circleci/Library/Caches/Bit/capsules/8891be5ad3d35bfc38b9cd90c0e05b598a5a55af/teambit.compilation_compiler@1.0.228"
|
|
82
|
-
}
|
|
83
38
|
]
|
|
84
39
|
}
|
|
File without changes
|