@teambit/config-merger 0.0.9 → 0.0.10
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.
|
@@ -39,7 +39,7 @@ export declare class ConfigMergerMain {
|
|
|
39
39
|
* in this case, it's possible to check for the minimum version and compare it.
|
|
40
40
|
*/
|
|
41
41
|
private isRange1GreaterThanRange2Naively;
|
|
42
|
-
static slots:
|
|
42
|
+
static slots: never[];
|
|
43
43
|
static dependencies: import("@teambit/harmony").Aspect[];
|
|
44
44
|
static runtime: import("@teambit/harmony").RuntimeDefinition;
|
|
45
45
|
static provider([workspace, config, loggerMain, depsResolver]: [
|
package/dist/esm.mjs
ADDED
package/esm.mjs
ADDED
package/package.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@teambit/config-merger",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.10",
|
|
4
4
|
"homepage": "https://bit.cloud/teambit/workspace/config-merger",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"componentId": {
|
|
7
7
|
"scope": "teambit.workspace",
|
|
8
8
|
"name": "config-merger",
|
|
9
|
-
"version": "0.0.
|
|
9
|
+
"version": "0.0.10"
|
|
10
10
|
},
|
|
11
11
|
"dependencies": {
|
|
12
12
|
"lodash": "4.17.21",
|
|
@@ -17,21 +17,21 @@
|
|
|
17
17
|
"@teambit/component-version": "1.0.3",
|
|
18
18
|
"@teambit/harmony": "0.4.6",
|
|
19
19
|
"@teambit/bit-error": "0.0.404",
|
|
20
|
-
"@teambit/builder": "1.0.
|
|
21
|
-
"@teambit/dependency-resolver": "1.0.
|
|
22
|
-
"@teambit/envs": "1.0.
|
|
23
|
-
"@teambit/logger": "0.0.
|
|
24
|
-
"@teambit/cli": "0.0.
|
|
25
|
-
"@teambit/config": "0.0.
|
|
26
|
-
"@teambit/workspace": "1.0.
|
|
20
|
+
"@teambit/builder": "1.0.143",
|
|
21
|
+
"@teambit/dependency-resolver": "1.0.143",
|
|
22
|
+
"@teambit/envs": "1.0.143",
|
|
23
|
+
"@teambit/logger": "0.0.942",
|
|
24
|
+
"@teambit/cli": "0.0.849",
|
|
25
|
+
"@teambit/config": "0.0.894",
|
|
26
|
+
"@teambit/workspace": "1.0.143"
|
|
27
27
|
},
|
|
28
28
|
"devDependencies": {
|
|
29
29
|
"@types/lodash": "4.14.165",
|
|
30
30
|
"@types/semver": "7.3.4",
|
|
31
31
|
"@types/fs-extra": "9.0.7",
|
|
32
|
-
"@types/
|
|
33
|
-
"
|
|
34
|
-
"@teambit/harmony.envs.core-aspect-env": "0.0.
|
|
32
|
+
"@types/mocha": "10.0.1",
|
|
33
|
+
"chai": "4.3.0",
|
|
34
|
+
"@teambit/harmony.envs.core-aspect-env": "0.0.24"
|
|
35
35
|
},
|
|
36
36
|
"peerDependencies": {
|
|
37
37
|
"@teambit/legacy": "1.0.638"
|
|
@@ -48,7 +48,8 @@
|
|
|
48
48
|
"default": "./dist/index.js"
|
|
49
49
|
},
|
|
50
50
|
"./dist/*": "./dist/*",
|
|
51
|
-
"./artifacts/*": "./artifacts/*"
|
|
51
|
+
"./artifacts/*": "./artifacts/*",
|
|
52
|
+
"./*": "./*.ts"
|
|
52
53
|
},
|
|
53
54
|
"private": false,
|
|
54
55
|
"engines": {
|
package/tsconfig.json
CHANGED
|
@@ -17,7 +17,10 @@
|
|
|
17
17
|
"resolveJsonModule": true,
|
|
18
18
|
"allowJs": true,
|
|
19
19
|
"outDir": "dist",
|
|
20
|
-
"emitDeclarationOnly": true
|
|
20
|
+
"emitDeclarationOnly": true,
|
|
21
|
+
"strict": true,
|
|
22
|
+
"strictPropertyInitialization": false,
|
|
23
|
+
"noImplicitAny": false
|
|
21
24
|
},
|
|
22
25
|
"exclude": [
|
|
23
26
|
"artifacts",
|
|
File without changes
|