@teambit/multi-compiler 0.0.556 → 0.0.560

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,8 @@
1
+ ---
2
+ description: The multi-compiler aspect allows the configuration of multiple compilers on a component
3
+ labels: ['multi-compiler', 'compiler', 'envs', 'compiler', 'bit', 'extension', 'aspect']
4
+ ---
5
+
6
+ import { MultiCompiler } from '@teambit/compilation.aspect-docs.multi-compiler';
7
+
8
+ <MultiCompiler />
package/package.json CHANGED
@@ -1,22 +1,22 @@
1
1
  {
2
2
  "name": "@teambit/multi-compiler",
3
- "version": "0.0.556",
3
+ "version": "0.0.560",
4
4
  "homepage": "https://bit.dev/teambit/compilation/multi-compiler",
5
5
  "main": "dist/index.js",
6
6
  "componentId": {
7
7
  "scope": "teambit.compilation",
8
8
  "name": "multi-compiler",
9
- "version": "0.0.556"
9
+ "version": "0.0.560"
10
10
  },
11
11
  "dependencies": {
12
12
  "@teambit/harmony": "0.2.11",
13
13
  "p-map-series": "2.1.0",
14
14
  "@babel/runtime": "7.12.18",
15
15
  "core-js": "^3.0.0",
16
- "@teambit/builder": "0.0.556",
17
- "@teambit/compiler": "0.0.556",
18
- "@teambit/pipelines.modules.merge-component-results": "0.0.463",
19
- "@teambit/cli": "0.0.387"
16
+ "@teambit/builder": "0.0.560",
17
+ "@teambit/compiler": "0.0.560",
18
+ "@teambit/pipelines.modules.merge-component-results": "0.0.465",
19
+ "@teambit/cli": "0.0.389"
20
20
  },
21
21
  "devDependencies": {
22
22
  "@types/mocha": "5.2.7",
@@ -25,10 +25,10 @@
25
25
  "@types/react-dom": "^17.0.5",
26
26
  "@types/react": "^17.0.8",
27
27
  "@types/node": "12.20.4",
28
- "@teambit/compilation.aspect-docs.multi-compiler": "0.0.106"
28
+ "@teambit/compilation.aspect-docs.multi-compiler": "0.0.108"
29
29
  },
30
30
  "peerDependencies": {
31
- "@teambit/legacy": "1.0.173",
31
+ "@teambit/legacy": "1.0.175",
32
32
  "react-dom": "^16.8.0 || ^17.0.0",
33
33
  "react": "^16.8.0 || ^17.0.0"
34
34
  },
@@ -56,7 +56,7 @@
56
56
  "react": "-"
57
57
  },
58
58
  "peerDependencies": {
59
- "@teambit/legacy": "1.0.173",
59
+ "@teambit/legacy": "1.0.175",
60
60
  "react-dom": "^16.8.0 || ^17.0.0",
61
61
  "react": "^16.8.0 || ^17.0.0"
62
62
  }
@@ -65,8 +65,17 @@
65
65
  "files": [
66
66
  "dist",
67
67
  "!dist/tsconfig.tsbuildinfo",
68
- "README.md",
69
- "README.mdx"
68
+ "**/*.md",
69
+ "**/*.mdx",
70
+ "**/*.js",
71
+ "**/*.json",
72
+ "**/*.sass",
73
+ "**/*.scss",
74
+ "**/*.less",
75
+ "**/*.css",
76
+ "**/*.css",
77
+ "**/*.jpeg",
78
+ "**/*.gif"
70
79
  ],
71
80
  "private": false,
72
81
  "engines": {
package/tsconfig.json ADDED
@@ -0,0 +1,34 @@
1
+ {
2
+ "compilerOptions": {
3
+ "lib": [
4
+ "es2019",
5
+ "DOM",
6
+ "ES6",
7
+ "DOM.Iterable",
8
+ "ScriptHost"
9
+ ],
10
+ "target": "es2015",
11
+ "module": "commonjs",
12
+ "jsx": "react",
13
+ "declaration": true,
14
+ "sourceMap": true,
15
+ "skipLibCheck": true,
16
+ "moduleResolution": "node",
17
+ "esModuleInterop": true,
18
+ "composite": true,
19
+ "emitDeclarationOnly": true,
20
+ "outDir": "dist",
21
+ "experimentalDecorators": true,
22
+ "emitDecoratorMetadata": true,
23
+ "allowSyntheticDefaultImports": true,
24
+ "strictPropertyInitialization": false,
25
+ "strict": true,
26
+ "noImplicitAny": false,
27
+ "rootDir": ".",
28
+ "preserveConstEnums": true,
29
+ "resolveJsonModule": true
30
+ },
31
+ "exclude": [
32
+ "dist"
33
+ ]
34
+ }