@modern-js/mwa-generator 1.0.0-alpha.3 → 1.0.0-rc.4
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/dist/js/node/main.js +360 -385
- package/package.json +18 -14
- package/templates/pnpm-template/.npmrc.handlebars +14 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@modern-js/mwa-generator",
|
|
3
|
-
"version": "1.0.0-
|
|
3
|
+
"version": "1.0.0-rc.4",
|
|
4
4
|
"jsnext:source": "./src/index.ts",
|
|
5
5
|
"types": "./dist/types/index.d.ts",
|
|
6
6
|
"main": "./dist/js/node/main.js",
|
|
@@ -19,22 +19,22 @@
|
|
|
19
19
|
},
|
|
20
20
|
"devDependencies": {
|
|
21
21
|
"@babel/runtime": "^7",
|
|
22
|
-
"@modern-js/base-generator": "^1.0.0-
|
|
23
|
-
"@modern-js/codesmith": "^1.0.0-rc.
|
|
24
|
-
"@modern-js/codesmith-api-app": "^1.0.0-rc.
|
|
25
|
-
"@modern-js/codesmith-api-json": "^1.0.0-rc.
|
|
26
|
-
"@modern-js/codesmith-tools": "^1.0.0-rc.
|
|
27
|
-
"@modern-js/entry-generator": "^1.0.0-
|
|
28
|
-
"@modern-js/electron-generator": "^1.0.0-
|
|
29
|
-
"@modern-js/dependence-generator": "^1.0.0-
|
|
30
|
-
"@modern-js/generator-common": "^1.0.0-
|
|
31
|
-
"@modern-js/generator-utils": "^1.0.0-
|
|
32
|
-
"@modern-js/plugin-i18n": "^1.0.0-
|
|
22
|
+
"@modern-js/base-generator": "^1.0.0-rc.4",
|
|
23
|
+
"@modern-js/codesmith": "^1.0.0-rc.14",
|
|
24
|
+
"@modern-js/codesmith-api-app": "^1.0.0-rc.14",
|
|
25
|
+
"@modern-js/codesmith-api-json": "^1.0.0-rc.14",
|
|
26
|
+
"@modern-js/codesmith-tools": "^1.0.0-rc.14",
|
|
27
|
+
"@modern-js/entry-generator": "^1.0.0-rc.4",
|
|
28
|
+
"@modern-js/electron-generator": "^1.0.0-rc.4",
|
|
29
|
+
"@modern-js/dependence-generator": "^1.0.0-rc.4",
|
|
30
|
+
"@modern-js/generator-common": "^1.0.0-rc.5",
|
|
31
|
+
"@modern-js/generator-utils": "^1.0.0-rc.4",
|
|
32
|
+
"@modern-js/plugin-i18n": "^1.0.0-rc.4",
|
|
33
33
|
"@types/jest": "^26",
|
|
34
34
|
"@types/node": "^14",
|
|
35
35
|
"typescript": "^4",
|
|
36
|
-
"@modern-js/module-tools": "^1.0.0-
|
|
37
|
-
"@modern-js/plugin-testing": "^1.0.0-
|
|
36
|
+
"@modern-js/module-tools": "^1.0.0-rc.3",
|
|
37
|
+
"@modern-js/plugin-testing": "^1.0.0-rc.3"
|
|
38
38
|
},
|
|
39
39
|
"sideEffects": false,
|
|
40
40
|
"modernConfig": {
|
|
@@ -43,6 +43,10 @@
|
|
|
43
43
|
"disableSourceMap": true
|
|
44
44
|
}
|
|
45
45
|
},
|
|
46
|
+
"publicCnfig": {
|
|
47
|
+
"registry": "https://registry.npmjs.org/",
|
|
48
|
+
"access": "public"
|
|
49
|
+
},
|
|
46
50
|
"scripts": {
|
|
47
51
|
"new": "modern new",
|
|
48
52
|
"build": "modern build",
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
public-hoist-pattern[]=@modern-js/eslint-config
|
|
2
|
+
public-hoist-pattern[]=@modern-js-app/eslint-config
|
|
3
|
+
public-hoist-pattern[]=@babel/eslint-plugin
|
|
4
|
+
public-hoist-pattern[]=@modern-js/tsconfig
|
|
5
|
+
public-hoist-pattern[]=@typescript-eslint/eslint-plugin
|
|
6
|
+
public-hoist-pattern[]=@commitlint/cli
|
|
7
|
+
public-hoist-pattern[]=lint-staged
|
|
8
|
+
public-hoist-pattern[]=eslint
|
|
9
|
+
public-hoist-pattern[]=prettier
|
|
10
|
+
public-hoist-pattern[]=@babel/eslint-parser
|
|
11
|
+
public-hoist-pattern[]=eslint-plugin-*
|
|
12
|
+
public-hoist-pattern[]=*eslint*
|
|
13
|
+
public-hoist-pattern[]=ts-transform-paths
|
|
14
|
+
public-hoist-pattern[]=tailwindcss
|