@qlover/create-app 0.1.16 → 0.1.20

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 CHANGED
@@ -1,20 +1,23 @@
1
- ## 0.1.16
1
+ ## 0.1.20
2
2
 
3
3
  ### Patch Changes
4
4
 
5
- - ### Bug Fixes
5
+ #### Features
6
6
 
7
- - .gitignore no file ([#207](https://github.com/qlover/fe-base/issues/207)) ([e61d468](https://github.com/qlover/fe-base/commit/e61d4683a072048326205272d927e7e67b87ba70))
8
- - add pnpm install ([#248](https://github.com/qlover/fe-base/issues/248)) ([e1e9f48](https://github.com/qlover/fe-base/commit/e1e9f4841365c51e9b8ea7b01ac6fc70e35eec37))
9
- - release publish npm ([#327](https://github.com/qlover/fe-base/issues/327)) ([fa26d04](https://github.com/qlover/fe-base/commit/fa26d04eab2fa1ea4baa05c4d3502e5a873d5c8c))
7
+ - implement GitChangelog for improved changelog generation (#351)
10
8
 
11
- ### Features
9
+ - Introduced a new GitChangelog class to facilitate the generation of changelogs based on Git commit history.
10
+ - Added interfaces for PRCommit, CommitInfo, and FlatCommit to structure commit data.
11
+ - Updated Changelog plugin to utilize GitChangelog for fetching and formatting PR commits, replacing the previous conventional-changelog implementation.
12
+ - Enhanced default options for changelog types and formatting.
12
13
 
13
- - add inversify ioc ([#270](https://github.com/qlover/fe-base/issues/270)) ([8c7ba06](https://github.com/qlover/fe-base/commit/8c7ba06bc5bef63d85c59a94737afac9be59138f))
14
- - add script-context ([#213](https://github.com/qlover/fe-base/issues/213)) ([e021441](https://github.com/qlover/fe-base/commit/e021441180d4c4bd89947b155d39224f89699fda))
15
- - feature yarn to pnpm ([#297](https://github.com/qlover/fe-base/issues/297)) ([c3e13d5](https://github.com/qlover/fe-base/commit/c3e13d509a752267d9be29e7a5ed609d24c309ce))
16
- - optz create-app deep ([#244](https://github.com/qlover/fe-base/issues/244)) ([c0a89ef](https://github.com/qlover/fe-base/commit/c0a89ef5dc2f3cc216b4fc1968b1b626c58947d5))
17
- - template context ([#241](https://github.com/qlover/fe-base/issues/241)) ([9fb3046](https://github.com/qlover/fe-base/commit/9fb3046e3e67c02e5fe4fea81a9a3ef8422e3013))
14
+ #### 🐞 Bug Fixes
15
+
16
+ - add option to push changed labels to release PRs in workflow (#353)
17
+
18
+ - Updated dependencies
19
+ - @qlover/fe-corekit@1.2.8
20
+ - @qlover/scripts-context@0.0.14
18
21
 
19
22
  ## 0.1.15 (2025-04-17)
20
23
 
@@ -24,7 +24,7 @@ jobs:
24
24
  - name: Install Node.js
25
25
  uses: actions/setup-node@v2
26
26
  with:
27
- node-version: '18.19.0'
27
+ node-version: '18.20.0'
28
28
 
29
29
  - name: Install Pnpm
30
30
  run: |
@@ -33,7 +33,7 @@ jobs:
33
33
  - name: Install Node.js
34
34
  uses: actions/setup-node@v2
35
35
  with:
36
- node-version: '18.19.0'
36
+ node-version: '18.20.0'
37
37
 
38
38
  - name: Install Pnpm
39
39
  run: |
@@ -83,7 +83,7 @@ jobs:
83
83
  - name: Install Node.js
84
84
  uses: actions/setup-node@v2
85
85
  with:
86
- node-version: '18.19.0'
86
+ node-version: '18.20.0'
87
87
 
88
88
  - name: Install Pnpm
89
89
  run: |
@@ -70,6 +70,6 @@
70
70
  "prettier": "^3.5.3",
71
71
  },
72
72
  "dependencies": {
73
- "@qlover/fe-utils": "latest"
73
+ "@qlover/fe-corekit": "latest"
74
74
  }
75
75
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@qlover/create-app",
3
- "version": "0.1.16",
3
+ "version": "0.1.20",
4
4
  "type": "module",
5
5
  "private": false,
6
6
  "main": "./dist/index.cjs",
@@ -43,11 +43,11 @@
43
43
  "access": "public"
44
44
  },
45
45
  "devDependencies": {
46
- "@qlover/env-loader": "^0.0.1"
46
+ "@qlover/env-loader": "^0.0.4"
47
47
  },
48
48
  "dependencies": {
49
- "@qlover/fe-corekit": "^1.2.2",
50
- "@qlover/scripts-context": "^0.0.8",
49
+ "@qlover/fe-corekit": "^1.2.5",
50
+ "@qlover/scripts-context": "^0.0.11",
51
51
  "commander": "^13.1.0",
52
52
  "ignore": "^7.0.3",
53
53
  "inquirer": "^12.3.2",
@@ -61,6 +61,6 @@
61
61
  "rollup-plugin-typescript2": "^0.36.0"
62
62
  },
63
63
  "dependencies": {
64
- "@qlover/fe-utils": "latest"
64
+ "@qlover/fe-corekit": "latest"
65
65
  }
66
66
  }
@@ -32,7 +32,7 @@
32
32
  "devDependencies": {
33
33
  "@qlover/fe-scripts": "latest",
34
34
  "@qlover/fe-standard": "workspace:*",
35
- "@qlover/fe-utils": "latest",
35
+ "@qlover/fe-corekit": "latest",
36
36
  "@qlover/fe-release": "latest",
37
37
  "@rollup/plugin-commonjs": "^28.0.1",
38
38
  "@rollup/plugin-json": "^6.1.0",
@@ -0,0 +1,24 @@
1
+ NODE_ENV=local
2
+
3
+ # ci
4
+ NPM_TOKEN=
5
+ GITHUB_TOKEN=
6
+
7
+ # fe-scripts
8
+ FE_RELEASE_BRANCH=master
9
+ FE_RELEASE=false
10
+ FE_RELEASE_ENV=production
11
+
12
+ # ===== build
13
+ VITE_PUBLIC_PATH=
14
+ VITE_SERVER_PORT=3200
15
+
16
+ # ===== app config
17
+ VITE_USER_TOKEN_STORAGE_KEY=fe_user_token
18
+ VITE_OPEN_AI_MODELS='["gpt-4o-mini","gpt-3.5-turbo","gpt-3.5-turbo-2","gpt-4","gpt-4-32k"]'
19
+ VITE_OPEN_AI_BASE_URL=https://openai-proxy.brain.loocaa.com:1443/v1/
20
+ VITE_OPEN_AI_TOKEN=DlJYSkMVj1x4zoe8jZnjvxfHG6z5yGxK
21
+ VITE_OPEN_AI_TOKEN_PREFIX=Bearer
22
+ VITE_OPEN_AI_REQUIRE_TOKEN=true
23
+ VITE_LOGIN_USER=admin
24
+ VITE_LOGIN_PASSWORD=123456
@@ -112,7 +112,6 @@
112
112
  - Vite
113
113
  - Tailwind CSS
114
114
  - i18next
115
- - @qlover/fe-utils
116
115
 
117
116
  ## 开发
118
117