@teambit/config-merger 0.0.248 → 0.0.250

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.
@@ -1,4 +1,4 @@
1
1
  <?xml version="1.0" encoding="UTF-8"?>
2
2
  <testsuites tests="0" failures="0" errors="0" skipped="0">
3
- <testsuite name="teambit.workspace/config-merger@0.0.248" tests="0" failures="0" errors="0" skipped="0"/>
3
+ <testsuite name="teambit.workspace/config-merger@0.0.250" tests="0" failures="0" errors="0" skipped="0"/>
4
4
  </testsuites>
@@ -3095,7 +3095,7 @@
3095
3095
  "line": 19,
3096
3096
  "character": 1
3097
3097
  },
3098
- "signature": "type GenericConfigOrRemoved = Record<string, any> | \"-\"",
3098
+ "signature": "type GenericConfigOrRemoved = \"-\" | Record<string, any>",
3099
3099
  "name": "GenericConfigOrRemoved",
3100
3100
  "type": {
3101
3101
  "__schema": "TypeUnionSchema",
@@ -3970,7 +3970,7 @@
3970
3970
  "componentId": {
3971
3971
  "scope": "teambit.workspace",
3972
3972
  "name": "config-merger",
3973
- "version": "0.0.248"
3973
+ "version": "0.0.250"
3974
3974
  },
3975
3975
  "taggedModuleExports": []
3976
3976
  }
package/package.json CHANGED
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "name": "@teambit/config-merger",
3
- "version": "0.0.248",
3
+ "version": "0.0.250",
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.248"
9
+ "version": "0.0.250"
10
10
  },
11
11
  "dependencies": {
12
12
  "lodash": "4.17.21",
@@ -17,15 +17,15 @@
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.381",
21
- "@teambit/dependency-resolver": "1.0.381",
22
- "@teambit/envs": "1.0.381",
23
- "@teambit/logger": "0.0.1051",
24
- "@teambit/merging": "1.0.381",
25
- "@teambit/cli": "0.0.958",
20
+ "@teambit/builder": "1.0.383",
21
+ "@teambit/dependency-resolver": "1.0.383",
22
+ "@teambit/envs": "1.0.383",
23
+ "@teambit/logger": "0.0.1053",
24
+ "@teambit/merging": "1.0.383",
25
+ "@teambit/cli": "0.0.960",
26
26
  "@teambit/component-package-version": "0.0.434",
27
- "@teambit/config": "0.0.1132",
28
- "@teambit/workspace": "1.0.381"
27
+ "@teambit/config": "0.0.1134",
28
+ "@teambit/workspace": "1.0.383"
29
29
  },
30
30
  "devDependencies": {
31
31
  "@types/lodash": "4.14.165",
@@ -33,7 +33,7 @@
33
33
  "@types/fs-extra": "9.0.7",
34
34
  "@types/mocha": "10.0.1",
35
35
  "chai": "4.3.0",
36
- "@teambit/harmony.envs.core-aspect-env": "0.0.42"
36
+ "@teambit/harmony.envs.core-aspect-env": "0.0.47"
37
37
  },
38
38
  "peerDependencies": {
39
39
  "@teambit/legacy": "1.0.736"
package/tsconfig.json DELETED
@@ -1,39 +0,0 @@
1
- {
2
- "compilerOptions": {
3
- "lib": [
4
- "esnext",
5
- "dom",
6
- "dom.Iterable"
7
- ],
8
- "target": "es2020",
9
- "module": "es2020",
10
- "jsx": "react-jsx",
11
- "declaration": true,
12
- "sourceMap": true,
13
- "experimentalDecorators": true,
14
- "skipLibCheck": true,
15
- "moduleResolution": "node",
16
- "esModuleInterop": true,
17
- "resolveJsonModule": true,
18
- "allowJs": true,
19
- "outDir": "dist",
20
- "emitDeclarationOnly": true,
21
- "strict": true,
22
- "strictPropertyInitialization": false,
23
- "noImplicitAny": false
24
- },
25
- "exclude": [
26
- "artifacts",
27
- "public",
28
- "dist",
29
- "node_modules",
30
- "package.json",
31
- "esm.mjs",
32
- "**/*.cjs",
33
- "./dist"
34
- ],
35
- "include": [
36
- "**/*",
37
- "**/*.json"
38
- ]
39
- }