@qlover/create-app 0.1.17 → 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,26 +1,23 @@
1
- ## 0.1.16
2
-
3
- ## 0.1.17
1
+ ## 0.1.20
4
2
 
5
3
  ### Patch Changes
6
4
 
7
- -
5
+ #### ✨ Features
8
6
 
9
- ### Patch Changes
7
+ - implement GitChangelog for improved changelog generation (#351)
10
8
 
11
- - ### Bug Fixes
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
- - .gitignore no file ([#207](https://github.com/qlover/fe-base/issues/207)) ([e61d468](https://github.com/qlover/fe-base/commit/e61d4683a072048326205272d927e7e67b87ba70))
14
- - add pnpm install ([#248](https://github.com/qlover/fe-base/issues/248)) ([e1e9f48](https://github.com/qlover/fe-base/commit/e1e9f4841365c51e9b8ea7b01ac6fc70e35eec37))
15
- - release publish npm ([#327](https://github.com/qlover/fe-base/issues/327)) ([fa26d04](https://github.com/qlover/fe-base/commit/fa26d04eab2fa1ea4baa05c4d3502e5a873d5c8c))
14
+ #### 🐞 Bug Fixes
16
15
 
17
- ### Features
16
+ - add option to push changed labels to release PRs in workflow (#353)
18
17
 
19
- - add inversify ioc ([#270](https://github.com/qlover/fe-base/issues/270)) ([8c7ba06](https://github.com/qlover/fe-base/commit/8c7ba06bc5bef63d85c59a94737afac9be59138f))
20
- - add script-context ([#213](https://github.com/qlover/fe-base/issues/213)) ([e021441](https://github.com/qlover/fe-base/commit/e021441180d4c4bd89947b155d39224f89699fda))
21
- - feature yarn to pnpm ([#297](https://github.com/qlover/fe-base/issues/297)) ([c3e13d5](https://github.com/qlover/fe-base/commit/c3e13d509a752267d9be29e7a5ed609d24c309ce))
22
- - optz create-app deep ([#244](https://github.com/qlover/fe-base/issues/244)) ([c0a89ef](https://github.com/qlover/fe-base/commit/c0a89ef5dc2f3cc216b4fc1968b1b626c58947d5))
23
- - template context ([#241](https://github.com/qlover/fe-base/issues/241)) ([9fb3046](https://github.com/qlover/fe-base/commit/9fb3046e3e67c02e5fe4fea81a9a3ef8422e3013))
18
+ - Updated dependencies
19
+ - @qlover/fe-corekit@1.2.8
20
+ - @qlover/scripts-context@0.0.14
24
21
 
25
22
  ## 0.1.15 (2025-04-17)
26
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: |
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@qlover/create-app",
3
- "version": "0.1.17",
3
+ "version": "0.1.20",
4
4
  "type": "module",
5
5
  "private": false,
6
6
  "main": "./dist/index.cjs",
@@ -43,10 +43,10 @@
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",
49
+ "@qlover/fe-corekit": "^1.2.5",
50
50
  "@qlover/scripts-context": "^0.0.11",
51
51
  "commander": "^13.1.0",
52
52
  "ignore": "^7.0.3",
@@ -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