@modern-js/monorepo-tools 1.5.0 → 1.5.1-beta.0
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.
|
@@ -59,6 +59,7 @@ const generatorAndCopyRequiredFiles = (rootPath, deployDir) => {
|
|
|
59
59
|
copy('.npmrc');
|
|
60
60
|
copy('package.json');
|
|
61
61
|
copy('pnpm-workspace.yaml');
|
|
62
|
+
copy('lerna.json');
|
|
62
63
|
copy('.pnpmfile.cjs');
|
|
63
64
|
copy('tsconfig.json');
|
|
64
65
|
copy('modern.config.js'); // TODO: 暂时配置,要移除
|
|
@@ -74,6 +74,7 @@ const generatorAndCopyRequiredFiles = (rootPath, deployDir) => {
|
|
|
74
74
|
copy('.npmrc');
|
|
75
75
|
copy('package.json');
|
|
76
76
|
copy('pnpm-workspace.yaml');
|
|
77
|
+
copy('lerna.json');
|
|
77
78
|
copy('.pnpmfile.cjs');
|
|
78
79
|
copy('tsconfig.json');
|
|
79
80
|
copy('modern.config.js'); // TODO: 暂时配置,要移除
|
package/package.json
CHANGED
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
"modern",
|
|
12
12
|
"modern.js"
|
|
13
13
|
],
|
|
14
|
-
"version": "1.5.0",
|
|
14
|
+
"version": "1.5.1-beta.0",
|
|
15
15
|
"jsnext:source": "./src/index.ts",
|
|
16
16
|
"types": "./dist/types/index.d.ts",
|
|
17
17
|
"main": "./dist/js/node/index.js",
|
|
@@ -68,7 +68,8 @@
|
|
|
68
68
|
},
|
|
69
69
|
"publishConfig": {
|
|
70
70
|
"registry": "https://registry.npmjs.org/",
|
|
71
|
-
"access": "public"
|
|
71
|
+
"access": "public",
|
|
72
|
+
"types": "./dist/types/index.d.ts"
|
|
72
73
|
},
|
|
73
74
|
"wireit": {
|
|
74
75
|
"build": {
|