@teambit/pkg 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.
package/package.json CHANGED
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "name": "@teambit/pkg",
3
- "version": "0.0.556",
3
+ "version": "0.0.560",
4
4
  "homepage": "https://bit.dev/teambit/pkg/pkg",
5
5
  "main": "dist/index.js",
6
6
  "componentId": {
7
7
  "scope": "teambit.pkg",
8
8
  "name": "pkg",
9
- "version": "0.0.556"
9
+ "version": "0.0.560"
10
10
  },
11
11
  "dependencies": {
12
12
  "chalk": "2.4.2",
@@ -22,20 +22,20 @@
22
22
  "p-map-series": "2.1.0",
23
23
  "@babel/runtime": "7.12.18",
24
24
  "core-js": "^3.0.0",
25
- "@teambit/cli": "0.0.387",
26
- "@teambit/builder": "0.0.556",
27
- "@teambit/logger": "0.0.472",
28
- "@teambit/component": "0.0.556",
29
- "@teambit/express": "0.0.476",
30
- "@teambit/isolator": "0.0.556",
31
- "@teambit/scope": "0.0.556",
32
- "@teambit/graphql": "0.0.556",
33
- "@teambit/bit-error": "0.0.373",
34
- "@teambit/dependency-resolver": "0.0.556",
35
- "@teambit/envs": "0.0.556",
36
- "@teambit/workspace": "0.0.556",
37
- "@teambit/compiler": "0.0.556",
38
- "@teambit/legacy-bit-id": "0.0.376"
25
+ "@teambit/cli": "0.0.389",
26
+ "@teambit/builder": "0.0.560",
27
+ "@teambit/logger": "0.0.474",
28
+ "@teambit/component": "0.0.560",
29
+ "@teambit/express": "0.0.478",
30
+ "@teambit/isolator": "0.0.560",
31
+ "@teambit/scope": "0.0.560",
32
+ "@teambit/graphql": "0.0.560",
33
+ "@teambit/bit-error": "0.0.375",
34
+ "@teambit/dependency-resolver": "0.0.560",
35
+ "@teambit/envs": "0.0.560",
36
+ "@teambit/workspace": "0.0.560",
37
+ "@teambit/compiler": "0.0.560",
38
+ "@teambit/legacy-bit-id": "0.0.378"
39
39
  },
40
40
  "devDependencies": {
41
41
  "@types/mime": "2.0.3",
@@ -47,10 +47,10 @@
47
47
  "@types/jest": "^26.0.0",
48
48
  "@types/react-dom": "^17.0.5",
49
49
  "@types/node": "12.20.4",
50
- "@teambit/pkg.aspect-docs.pkg": "0.0.106"
50
+ "@teambit/pkg.aspect-docs.pkg": "0.0.108"
51
51
  },
52
52
  "peerDependencies": {
53
- "@teambit/legacy": "1.0.173",
53
+ "@teambit/legacy": "1.0.175",
54
54
  "react-dom": "^16.8.0 || ^17.0.0",
55
55
  "react": "^16.8.0 || ^17.0.0"
56
56
  },
@@ -78,7 +78,7 @@
78
78
  "react": "-"
79
79
  },
80
80
  "peerDependencies": {
81
- "@teambit/legacy": "1.0.173",
81
+ "@teambit/legacy": "1.0.175",
82
82
  "react-dom": "^16.8.0 || ^17.0.0",
83
83
  "react": "^16.8.0 || ^17.0.0"
84
84
  }
@@ -87,8 +87,17 @@
87
87
  "files": [
88
88
  "dist",
89
89
  "!dist/tsconfig.tsbuildinfo",
90
- "README.md",
91
- "README.mdx"
90
+ "**/*.md",
91
+ "**/*.mdx",
92
+ "**/*.js",
93
+ "**/*.json",
94
+ "**/*.sass",
95
+ "**/*.scss",
96
+ "**/*.less",
97
+ "**/*.css",
98
+ "**/*.css",
99
+ "**/*.jpeg",
100
+ "**/*.gif"
92
101
  ],
93
102
  "private": false,
94
103
  "engines": {
package/pkg.docs.mdx ADDED
@@ -0,0 +1,9 @@
1
+ ---
2
+ displayName: PKG
3
+ description: Generates, packs and publishes component packages
4
+ labels: ['packages', 'aspect', 'pkg']
5
+ ---
6
+
7
+ import { Pkg } from '@teambit/pkg.aspect-docs.pkg';
8
+
9
+ <Pkg />
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
+ }