Skip to content

Commit e3c86c1

Browse files
committed
release: v0.1.0-alpha.3
1 parent 5b17dc2 commit e3c86c1

File tree

2 files changed

+107
-87
lines changed

2 files changed

+107
-87
lines changed

CHANGELOG.md

Lines changed: 28 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,31 +1,51 @@
11
# CHANGELOG
22

3-
# [0.1.0-alpha.2](https://github.com/jwcjs/create-jwc/compare/v0.1.0-alpha.1...v0.1.0-alpha.2) (2022-12-22)
3+
# [0.1.0-alpha.3](https://github.com/jwcjs/create-jwcjs/compare/v0.1.0-alpha.2...v0.1.0-alpha.3) (2022-12-22)
4+
5+
6+
### Bug Fixes
7+
8+
* create index.js for production ([667c999](https://github.com/jwcjs/create-jwcjs/commit/667c999cdc009aa33a42d304ac917a34c7aa9ab1))
9+
* modify bin name ([5b17dc2](https://github.com/jwcjs/create-jwcjs/commit/5b17dc2debbfea576888a2a4e0c8f312102fd650))
10+
11+
12+
### Features
13+
14+
* new template - vite ts starter ([a2d30fb](https://github.com/jwcjs/create-jwcjs/commit/a2d30fb44ccd8099c16376651337341461958310))
15+
16+
17+
### Reverts
18+
19+
* remove dist ([adc50d9](https://github.com/jwcjs/create-jwcjs/commit/adc50d927e8a6edc3ee55346545138be559d0734))
20+
21+
22+
23+
# [0.1.0-alpha.2](https://github.com/jwcjs/create-jwcjs/compare/v0.1.0-alpha.1...v0.1.0-alpha.2) (2022-12-22)
424

525

626

7-
# [0.1.0-alpha.1](https://github.com/jwcjs/create-jwc/compare/v0.1.0-alpha.0...v0.1.0-alpha.1) (2022-12-22)
27+
# [0.1.0-alpha.1](https://github.com/jwcjs/create-jwcjs/compare/v0.1.0-alpha.0...v0.1.0-alpha.1) (2022-12-22)
828

929

1030

11-
# [0.1.0-alpha.0](https://github.com/jwcjs/create-jwc/compare/7452960e7fb8bbd1fcb0f8a6815791710bf3755b...v0.1.0-alpha.0) (2022-12-22)
31+
# [0.1.0-alpha.0](https://github.com/jwcjs/create-jwcjs/compare/7452960e7fb8bbd1fcb0f8a6815791710bf3755b...v0.1.0-alpha.0) (2022-12-22)
1232

1333

1434
### Bug Fixes
1535

16-
* add tsconfig for starter template ([15de3b3](https://github.com/jwcjs/create-jwc/commit/15de3b32f1b08520a2a6a54025bbb37b7dc8415f))
36+
* add tsconfig for starter template ([15de3b3](https://github.com/jwcjs/create-jwcjs/commit/15de3b32f1b08520a2a6a54025bbb37b7dc8415f))
1737

1838

1939
### Features
2040

21-
* create cli tool ([7452960](https://github.com/jwcjs/create-jwc/commit/7452960e7fb8bbd1fcb0f8a6815791710bf3755b))
22-
* select package manager ([4b00568](https://github.com/jwcjs/create-jwc/commit/4b0056846ed9abe8f0ceedc68ab681d16cc6dcda))
41+
* create cli tool ([7452960](https://github.com/jwcjs/create-jwcjs/commit/7452960e7fb8bbd1fcb0f8a6815791710bf3755b))
42+
* select package manager ([4b00568](https://github.com/jwcjs/create-jwcjs/commit/4b0056846ed9abe8f0ceedc68ab681d16cc6dcda))
2343

2444

2545
### Performance Improvements
2646

27-
* setup build config ([9ef21a8](https://github.com/jwcjs/create-jwc/commit/9ef21a8e8b90a553b79b1c1fac13170a6f0e160d))
28-
* setup code style ([aa7e383](https://github.com/jwcjs/create-jwc/commit/aa7e38314aafe1396ec6fa4eb3e16645541a3260))
47+
* setup build config ([9ef21a8](https://github.com/jwcjs/create-jwcjs/commit/9ef21a8e8b90a553b79b1c1fac13170a6f0e160d))
48+
* setup code style ([aa7e383](https://github.com/jwcjs/create-jwcjs/commit/aa7e38314aafe1396ec6fa4eb3e16645541a3260))
2949

3050

3151

package.json

Lines changed: 79 additions & 79 deletions
Original file line numberDiff line numberDiff line change
@@ -1,81 +1,81 @@
11
{
2-
"name": "create-jwcjs",
3-
"version": "0.1.0-alpha.2",
4-
"description": "A Command Line Tool to create jwc.js project",
5-
"main": "index.js",
6-
"type": "module",
7-
"files": [
8-
"dist",
9-
"index.js",
10-
"package.json",
11-
"LICESE",
12-
"templates"
13-
],
14-
"scripts": {
15-
"dev": "unbuild --stub",
16-
"build": "unbuild",
17-
"typecheck": "tsc --noEmit",
18-
"prepublishOnly": "npm run build",
19-
"lint": "eslint .",
20-
"lint-staged": "lint-staged",
21-
"release": "vv"
22-
},
23-
"husky": {
24-
"hooks": {
25-
"pre-commit": "lint-staged"
26-
}
27-
},
28-
"keywords": [
29-
"jwcjs"
30-
],
31-
"author": "wibus-wee <wibus@qq.com>",
32-
"bugs": {
33-
"url": "https://github.com/jwcjs/create-jwcjs/issues"
34-
},
35-
"homepage": "https://github.com/jwcjs/create-jwcjs#readme",
36-
"repository": {
37-
"type": "git",
38-
"url": "git+https://github.com/jwcjs/create-jwcjs.git"
39-
},
40-
"bin": {
41-
"create-jwcjs": "index.js"
42-
},
43-
"license": "MIT",
44-
"devDependencies": {
45-
"@innei/bump-version": "^1.5.4",
46-
"@types/minimist": "^1.2.2",
47-
"@types/node": "^18.11.17",
48-
"@types/prompts": "^2.4.2",
49-
"@typescript-eslint/eslint-plugin": "^5.47.0",
50-
"@typescript-eslint/parser": "^5.47.0",
51-
"cross-spawn": "^7.0.3",
52-
"eslint": "^8.30.0",
53-
"eslint-config-prettier": "^8.5.0",
54-
"eslint-plugin-prettier": "^4.2.1",
55-
"husky": "^8.0.2",
56-
"kolorist": "^1.6.0",
57-
"lint-staged": "^13.1.0",
58-
"minimist": "^1.2.7",
59-
"prettier": "^2.8.1",
60-
"prompts": "^2.4.2",
61-
"rimraf": "^3.0.2",
62-
"ts-node": "^10.9.1",
63-
"typescript": "^4.9.4",
64-
"unbuild": "^1.0.2"
65-
},
66-
"lint-staged": {
67-
"*.{js,ts,css,json}": [
68-
"prettier --write"
69-
]
70-
},
71-
"bump": {
72-
"leading": [
73-
"git pull --rebase"
74-
],
75-
"publish": true,
76-
"changelog": true,
77-
"allowed_branches": [
78-
"main"
79-
]
80-
}
2+
"name": "create-jwcjs",
3+
"version": "0.1.0-alpha.3",
4+
"description": "A Command Line Tool to create jwc.js project",
5+
"main": "index.js",
6+
"type": "module",
7+
"files": [
8+
"dist",
9+
"index.js",
10+
"package.json",
11+
"LICESE",
12+
"templates"
13+
],
14+
"scripts": {
15+
"dev": "unbuild --stub",
16+
"build": "unbuild",
17+
"typecheck": "tsc --noEmit",
18+
"prepublishOnly": "npm run build",
19+
"lint": "eslint .",
20+
"lint-staged": "lint-staged",
21+
"release": "vv"
22+
},
23+
"husky": {
24+
"hooks": {
25+
"pre-commit": "lint-staged"
26+
}
27+
},
28+
"keywords": [
29+
"jwcjs"
30+
],
31+
"author": "wibus-wee <wibus@qq.com>",
32+
"bugs": {
33+
"url": "https://github.com/jwcjs/create-jwcjs/issues"
34+
},
35+
"homepage": "https://github.com/jwcjs/create-jwcjs#readme",
36+
"repository": {
37+
"type": "git",
38+
"url": "git+https://github.com/jwcjs/create-jwcjs.git"
39+
},
40+
"bin": {
41+
"create-jwcjs": "index.js"
42+
},
43+
"license": "MIT",
44+
"devDependencies": {
45+
"@innei/bump-version": "^1.5.4",
46+
"@types/minimist": "^1.2.2",
47+
"@types/node": "^18.11.17",
48+
"@types/prompts": "^2.4.2",
49+
"@typescript-eslint/eslint-plugin": "^5.47.0",
50+
"@typescript-eslint/parser": "^5.47.0",
51+
"cross-spawn": "^7.0.3",
52+
"eslint": "^8.30.0",
53+
"eslint-config-prettier": "^8.5.0",
54+
"eslint-plugin-prettier": "^4.2.1",
55+
"husky": "^8.0.2",
56+
"kolorist": "^1.6.0",
57+
"lint-staged": "^13.1.0",
58+
"minimist": "^1.2.7",
59+
"prettier": "^2.8.1",
60+
"prompts": "^2.4.2",
61+
"rimraf": "^3.0.2",
62+
"ts-node": "^10.9.1",
63+
"typescript": "^4.9.4",
64+
"unbuild": "^1.0.2"
65+
},
66+
"lint-staged": {
67+
"*.{js,ts,css,json}": [
68+
"prettier --write"
69+
]
70+
},
71+
"bump": {
72+
"leading": [
73+
"git pull --rebase"
74+
],
75+
"publish": true,
76+
"changelog": true,
77+
"allowed_branches": [
78+
"main"
79+
]
80+
}
8181
}

0 commit comments

Comments
 (0)