Skip to content

Commit 87b030a

Browse files
committed
release: v0.1.0-alpha.0
1 parent 15de3b3 commit 87b030a

File tree

2 files changed

+95
-72
lines changed

2 files changed

+95
-72
lines changed

CHANGELOG.md

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
# CHANGELOG
2+
3+
# [0.1.0-alpha.0](https://github.com/jwcjs/create-jwc/compare/7452960e7fb8bbd1fcb0f8a6815791710bf3755b...v0.1.0-alpha.0) (2022-12-22)
4+
5+
6+
### Bug Fixes
7+
8+
* add tsconfig for starter template ([15de3b3](https://github.com/jwcjs/create-jwc/commit/15de3b32f1b08520a2a6a54025bbb37b7dc8415f))
9+
10+
11+
### Features
12+
13+
* create cli tool ([7452960](https://github.com/jwcjs/create-jwc/commit/7452960e7fb8bbd1fcb0f8a6815791710bf3755b))
14+
* select package manager ([4b00568](https://github.com/jwcjs/create-jwc/commit/4b0056846ed9abe8f0ceedc68ab681d16cc6dcda))
15+
16+
17+
### Performance Improvements
18+
19+
* setup build config ([9ef21a8](https://github.com/jwcjs/create-jwc/commit/9ef21a8e8b90a553b79b1c1fac13170a6f0e160d))
20+
* setup code style ([aa7e383](https://github.com/jwcjs/create-jwc/commit/aa7e38314aafe1396ec6fa4eb3e16645541a3260))
21+
22+
23+

package.json

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

0 commit comments

Comments
 (0)