@teambit/config-merger 0.0.9 → 0.0.11

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.
@@ -0,0 +1,4 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <testsuites>
3
+ <testsuite name="teambit.workspace/config-merger@0.0.11" tests="0" failures="0" errors="0" skipped="0"/>
4
+ </testsuites>
@@ -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: any[];
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
@@ -0,0 +1,7 @@
1
+ // eslint-disable-next-line import/no-unresolved
2
+ import cjsModule from './index.js';
3
+
4
+ export const ConfigMergerAspect = cjsModule.ConfigMergerAspect;
5
+ export const ComponentConfigMerger = cjsModule.ComponentConfigMerger;
6
+
7
+ export default cjsModule;
package/esm.mjs ADDED
@@ -0,0 +1,7 @@
1
+ // eslint-disable-next-line import/no-unresolved
2
+ import cjsModule from './index.js';
3
+
4
+ export const ConfigMergerAspect = cjsModule.ConfigMergerAspect;
5
+ export const ComponentConfigMerger = cjsModule.ComponentConfigMerger;
6
+
7
+ export default cjsModule;
package/package.json CHANGED
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "name": "@teambit/config-merger",
3
- "version": "0.0.9",
3
+ "version": "0.0.11",
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"
9
+ "version": "0.0.11"
10
10
  },
11
11
  "dependencies": {
12
12
  "lodash": "4.17.21",
@@ -17,24 +17,24 @@
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.142",
21
- "@teambit/dependency-resolver": "1.0.142",
22
- "@teambit/envs": "1.0.142",
23
- "@teambit/logger": "0.0.941",
24
- "@teambit/cli": "0.0.848",
25
- "@teambit/config": "0.0.893",
26
- "@teambit/workspace": "1.0.142"
20
+ "@teambit/builder": "1.0.144",
21
+ "@teambit/dependency-resolver": "1.0.144",
22
+ "@teambit/envs": "1.0.144",
23
+ "@teambit/logger": "0.0.942",
24
+ "@teambit/cli": "0.0.849",
25
+ "@teambit/config": "0.0.895",
26
+ "@teambit/workspace": "1.0.144"
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/jest": "^29.2.2",
33
- "@types/testing-library__jest-dom": "^5.9.5",
34
- "@teambit/harmony.envs.core-aspect-env": "0.0.19"
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
- "@teambit/legacy": "1.0.638"
37
+ "@teambit/legacy": "1.0.639"
38
38
  },
39
39
  "license": "Apache-2.0",
40
40
  "optionalDependencies": {},
@@ -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",