@modern-js/monorepo-generator 1.3.5 → 2.0.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.
- package/dist/js/node/main.js +254828 -68286
- package/package.json +9 -9
- package/templates/base-template/.eslintrc.js.handlebars +4 -0
- package/templates/base-template/package.json.handlebars +4 -6
- package/templates/base-template/tsconfig.json +0 -7
- package/templates/pnpm-template/.npmrc.handlebars +0 -14
package/package.json
CHANGED
@@ -11,7 +11,7 @@
|
|
11
11
|
"modern",
|
12
12
|
"modern.js"
|
13
13
|
],
|
14
|
-
"version": "
|
14
|
+
"version": "2.0.0",
|
15
15
|
"jsnext:source": "./src/index.ts",
|
16
16
|
"main": "./dist/js/node/main.js",
|
17
17
|
"files": [
|
@@ -20,15 +20,15 @@
|
|
20
20
|
],
|
21
21
|
"devDependencies": {
|
22
22
|
"@babel/runtime": "^7",
|
23
|
-
"@modern-js/base-generator": "
|
24
|
-
"@modern-js/changeset-generator": "
|
25
|
-
"@modern-js/plugin-i18n": "
|
26
|
-
"@modern-js/codesmith": "^1.0.
|
27
|
-
"@modern-js/codesmith-api-app": "^1.0.
|
28
|
-
"@modern-js/codesmith-tools": "^1.
|
23
|
+
"@modern-js/base-generator": "1.4.2",
|
24
|
+
"@modern-js/changeset-generator": "1.3.2",
|
25
|
+
"@modern-js/plugin-i18n": "1.2.5",
|
26
|
+
"@modern-js/codesmith": "^1.0.10",
|
27
|
+
"@modern-js/codesmith-api-app": "^1.0.10",
|
28
|
+
"@modern-js/codesmith-tools": "^1.1.2",
|
29
29
|
"@modern-js/codesmith-api-json": "^1.0.7",
|
30
|
-
"@modern-js/generator-common": "
|
31
|
-
"@modern-js/generator-utils": "
|
30
|
+
"@modern-js/generator-common": "1.4.10",
|
31
|
+
"@modern-js/generator-utils": "1.2.4",
|
32
32
|
"@scripts/build": "0.0.0",
|
33
33
|
"@types/jest": "^26",
|
34
34
|
"@types/node": "^14",
|
@@ -14,11 +14,6 @@
|
|
14
14
|
"engines": {
|
15
15
|
"node": ">=14.17.6"
|
16
16
|
},
|
17
|
-
"eslintConfig": {
|
18
|
-
"extends": [
|
19
|
-
"@modern-js"
|
20
|
-
]
|
21
|
-
},
|
22
17
|
"husky": {
|
23
18
|
"hooks": {
|
24
19
|
"pre-commit": "lint-staged"
|
@@ -47,7 +42,10 @@
|
|
47
42
|
},
|
48
43
|
"devDependencies": {
|
49
44
|
"@modern-js/monorepo-tools": "^1.2.0",
|
50
|
-
"@modern-js/plugin-jarvis": "^1.1.1"
|
45
|
+
"@modern-js/plugin-jarvis": "^1.1.1",
|
46
|
+
"@modern-js/tsconfig":"^1.0.0",
|
47
|
+
"lint-staged": "^11.2.6",
|
48
|
+
"prettier": "^2.6.2"
|
51
49
|
},
|
52
50
|
"publishConfig": {
|
53
51
|
"access": "public",
|
@@ -1,14 +0,0 @@
|
|
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
|