@common-stack/generate-plugin 7.0.4-alpha.22 → 7.0.4-alpha.24
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/CHANGELOG.md +8 -0
- package/lib/generators/add-frontend/templates/package.json +2 -2
- package/lib/generators/add-fullstack/files/Jenkinsfile +1 -1
- package/lib/generators/add-fullstack/files/package.json +2 -2
- package/lib/generators/add-fullstack/files/tsconfig.json +20 -24
- package/lib/generators/add-package/files/browser/package.json +1 -1
- package/package.json +3 -3
- package/src/generators/add-frontend/templates/package.json +2 -2
- package/src/generators/add-fullstack/files/Jenkinsfile +1 -1
- package/src/generators/add-fullstack/files/package.json +2 -2
- package/src/generators/add-fullstack/files/tsconfig.json +20 -24
- package/src/generators/add-package/files/browser/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,14 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
## [7.0.4-alpha.24](https://github.com/cdmbase/common-stack/compare/v7.0.4-alpha.23...v7.0.4-alpha.24) (2025-03-25)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @common-stack/generate-plugin
|
|
9
|
+
|
|
10
|
+
## [7.0.4-alpha.23](https://github.com/cdmbase/common-stack/compare/v7.0.4-alpha.22...v7.0.4-alpha.23) (2025-03-24)
|
|
11
|
+
|
|
12
|
+
**Note:** Version bump only for package @common-stack/generate-plugin
|
|
13
|
+
|
|
6
14
|
## [7.0.4-alpha.22](https://github.com/cdmbase/common-stack/compare/v7.0.4-alpha.21...v7.0.4-alpha.22) (2025-03-20)
|
|
7
15
|
|
|
8
16
|
**Note:** Version bump only for package @common-stack/generate-plugin
|
|
@@ -56,7 +56,7 @@
|
|
|
56
56
|
"common": "link:./common"
|
|
57
57
|
},
|
|
58
58
|
"dependencies": {
|
|
59
|
-
"@common-stack/frontend-stack-react": "7.0.4-alpha.
|
|
59
|
+
"@common-stack/frontend-stack-react": "7.0.4-alpha.23",
|
|
60
60
|
"@react-icons/all-files": "^4.1.0",
|
|
61
61
|
"classnames": "^2.2.6",
|
|
62
62
|
"compression": "^1.7.4",
|
|
@@ -81,7 +81,7 @@
|
|
|
81
81
|
},
|
|
82
82
|
"devDependencies": {
|
|
83
83
|
"@cdmbase/vite-plugin-i18next-loader": "^2.0.12",
|
|
84
|
-
"@common-stack/rollup-vite-utils": "7.0.4-alpha.
|
|
84
|
+
"@common-stack/rollup-vite-utils": "7.0.4-alpha.23",
|
|
85
85
|
"@remix-run/dev": "~2.10.1",
|
|
86
86
|
"@remix-run/serve": "~2.10.1",
|
|
87
87
|
"cross-env": "^7.0.3",
|
|
@@ -141,8 +141,8 @@
|
|
|
141
141
|
"@babel/register": "^7.18.9",
|
|
142
142
|
"@babel/runtime": "^7.20.1",
|
|
143
143
|
"@common-stack/env-list-loader": "7.0.4-alpha.0",
|
|
144
|
-
"@common-stack/generate-plugin": "7.0.4-alpha.
|
|
145
|
-
"@common-stack/rollup-vite-utils": "7.0.4-alpha.
|
|
144
|
+
"@common-stack/generate-plugin": "7.0.4-alpha.23",
|
|
145
|
+
"@common-stack/rollup-vite-utils": "7.0.4-alpha.23",
|
|
146
146
|
"@emotion/babel-plugin": "^11.11.0",
|
|
147
147
|
"@graphql-codegen/add": "^5.0.3",
|
|
148
148
|
"@graphql-codegen/cli": "^5.0.4",
|
|
@@ -1,26 +1,22 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
]
|
|
23
|
-
},
|
|
24
|
-
"include": ["src", "typings/*.d.ts"],
|
|
25
|
-
"exclude": ["node_modules"]
|
|
2
|
+
"compilerOptions": {
|
|
3
|
+
"target": "ES2022",
|
|
4
|
+
"module": "ES2022",
|
|
5
|
+
"moduleResolution": "bundler",
|
|
6
|
+
"esModuleInterop": true,
|
|
7
|
+
"jsx": "react",
|
|
8
|
+
"skipLibCheck": true,
|
|
9
|
+
"declaration": true,
|
|
10
|
+
"experimentalDecorators": true,
|
|
11
|
+
"emitDecoratorMetadata": true,
|
|
12
|
+
"preserveConstEnums": true,
|
|
13
|
+
"sourceMap": true,
|
|
14
|
+
"noImplicitAny": false,
|
|
15
|
+
"allowSyntheticDefaultImports": true,
|
|
16
|
+
"pretty": true,
|
|
17
|
+
"removeComments": false,
|
|
18
|
+
"lib": ["ES2022", "dom", "esnext.asynciterable"]
|
|
19
|
+
},
|
|
20
|
+
"include": ["src", "typings/*.d.ts"],
|
|
21
|
+
"exclude": ["node_modules"]
|
|
26
22
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@common-stack/generate-plugin",
|
|
3
|
-
"version": "7.0.4-alpha.
|
|
3
|
+
"version": "7.0.4-alpha.24",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"main": "./lib/index.mjs",
|
|
6
6
|
"typings": "./lib/index.d.ts",
|
|
@@ -18,7 +18,7 @@
|
|
|
18
18
|
"watch": "yarn build:lib:watch"
|
|
19
19
|
},
|
|
20
20
|
"dependencies": {
|
|
21
|
-
"@common-stack/rollup-vite-utils": "7.0.4-alpha.
|
|
21
|
+
"@common-stack/rollup-vite-utils": "7.0.4-alpha.23",
|
|
22
22
|
"tslib": "^2.3.0"
|
|
23
23
|
},
|
|
24
24
|
"publishConfig": {
|
|
@@ -26,5 +26,5 @@
|
|
|
26
26
|
},
|
|
27
27
|
"executors": "./executors.json",
|
|
28
28
|
"generators": "./generators.json",
|
|
29
|
-
"gitHead": "
|
|
29
|
+
"gitHead": "44bff90a27f9ee99ad16d65d19aa22e42fae7da4"
|
|
30
30
|
}
|
|
@@ -56,7 +56,7 @@
|
|
|
56
56
|
"common": "link:./common"
|
|
57
57
|
},
|
|
58
58
|
"dependencies": {
|
|
59
|
-
"@common-stack/frontend-stack-react": "7.0.4-alpha.
|
|
59
|
+
"@common-stack/frontend-stack-react": "7.0.4-alpha.23",
|
|
60
60
|
"@react-icons/all-files": "^4.1.0",
|
|
61
61
|
"classnames": "^2.2.6",
|
|
62
62
|
"compression": "^1.7.4",
|
|
@@ -81,7 +81,7 @@
|
|
|
81
81
|
},
|
|
82
82
|
"devDependencies": {
|
|
83
83
|
"@cdmbase/vite-plugin-i18next-loader": "^2.0.12",
|
|
84
|
-
"@common-stack/rollup-vite-utils": "7.0.4-alpha.
|
|
84
|
+
"@common-stack/rollup-vite-utils": "7.0.4-alpha.23",
|
|
85
85
|
"@remix-run/dev": "~2.10.1",
|
|
86
86
|
"@remix-run/serve": "~2.10.1",
|
|
87
87
|
"cross-env": "^7.0.3",
|
|
@@ -141,8 +141,8 @@
|
|
|
141
141
|
"@babel/register": "^7.18.9",
|
|
142
142
|
"@babel/runtime": "^7.20.1",
|
|
143
143
|
"@common-stack/env-list-loader": "7.0.4-alpha.0",
|
|
144
|
-
"@common-stack/generate-plugin": "7.0.4-alpha.
|
|
145
|
-
"@common-stack/rollup-vite-utils": "7.0.4-alpha.
|
|
144
|
+
"@common-stack/generate-plugin": "7.0.4-alpha.23",
|
|
145
|
+
"@common-stack/rollup-vite-utils": "7.0.4-alpha.23",
|
|
146
146
|
"@emotion/babel-plugin": "^11.11.0",
|
|
147
147
|
"@graphql-codegen/add": "^5.0.3",
|
|
148
148
|
"@graphql-codegen/cli": "^5.0.4",
|
|
@@ -1,26 +1,22 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
]
|
|
23
|
-
},
|
|
24
|
-
"include": ["src", "typings/*.d.ts"],
|
|
25
|
-
"exclude": ["node_modules"]
|
|
2
|
+
"compilerOptions": {
|
|
3
|
+
"target": "ES2022",
|
|
4
|
+
"module": "ES2022",
|
|
5
|
+
"moduleResolution": "bundler",
|
|
6
|
+
"esModuleInterop": true,
|
|
7
|
+
"jsx": "react",
|
|
8
|
+
"skipLibCheck": true,
|
|
9
|
+
"declaration": true,
|
|
10
|
+
"experimentalDecorators": true,
|
|
11
|
+
"emitDecoratorMetadata": true,
|
|
12
|
+
"preserveConstEnums": true,
|
|
13
|
+
"sourceMap": true,
|
|
14
|
+
"noImplicitAny": false,
|
|
15
|
+
"allowSyntheticDefaultImports": true,
|
|
16
|
+
"pretty": true,
|
|
17
|
+
"removeComments": false,
|
|
18
|
+
"lib": ["ES2022", "dom", "esnext.asynciterable"]
|
|
19
|
+
},
|
|
20
|
+
"include": ["src", "typings/*.d.ts"],
|
|
21
|
+
"exclude": ["node_modules"]
|
|
26
22
|
}
|