@qlover/create-app 0.1.20 → 0.1.21
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 +18 -1
- package/package.json +4 -4
- package/templates/react-app/.env.local +0 -24
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,20 @@
|
|
|
1
|
+
# @qlover/create-app
|
|
2
|
+
|
|
3
|
+
## 0.1.21
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
#### 🐞 Bug Fixes
|
|
8
|
+
|
|
9
|
+
- add dry run script for release PRs and update changelog template formatting (#358)
|
|
10
|
+
|
|
11
|
+
#### ♻️ Refactors
|
|
12
|
+
|
|
13
|
+
- enhance commit flattening logic and improve tag existence check; clean up Changelog plugin (#358)
|
|
14
|
+
|
|
15
|
+
- update default log format and add logCommand option for enhanced flexibility in changelog generation (#358)
|
|
16
|
+
- Updated dependencies
|
|
17
|
+
|
|
1
18
|
## 0.1.20
|
|
2
19
|
|
|
3
20
|
### Patch Changes
|
|
@@ -13,7 +30,7 @@
|
|
|
13
30
|
|
|
14
31
|
#### 🐞 Bug Fixes
|
|
15
32
|
|
|
16
|
-
|
|
33
|
+
- add option to push changed labels to release PRs in workflow (#353)
|
|
17
34
|
|
|
18
35
|
- Updated dependencies
|
|
19
36
|
- @qlover/fe-corekit@1.2.8
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@qlover/create-app",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.21",
|
|
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.
|
|
46
|
+
"@qlover/env-loader": "^0.0.7"
|
|
47
47
|
},
|
|
48
48
|
"dependencies": {
|
|
49
|
-
"@qlover/fe-corekit": "^1.2.
|
|
50
|
-
"@qlover/scripts-context": "^0.0.
|
|
49
|
+
"@qlover/fe-corekit": "^1.2.8",
|
|
50
|
+
"@qlover/scripts-context": "^0.0.14",
|
|
51
51
|
"commander": "^13.1.0",
|
|
52
52
|
"ignore": "^7.0.3",
|
|
53
53
|
"inquirer": "^12.3.2",
|
|
@@ -1,24 +0,0 @@
|
|
|
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
|