-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
107 additions
and
87 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,31 +1,51 @@ | ||
# CHANGELOG | ||
|
||
# [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) | ||
# [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) | ||
|
||
|
||
### Bug Fixes | ||
|
||
* create index.js for production ([667c999](https://github.com/jwcjs/create-jwcjs/commit/667c999cdc009aa33a42d304ac917a34c7aa9ab1)) | ||
* modify bin name ([5b17dc2](https://github.com/jwcjs/create-jwcjs/commit/5b17dc2debbfea576888a2a4e0c8f312102fd650)) | ||
|
||
|
||
### Features | ||
|
||
* new template - vite ts starter ([a2d30fb](https://github.com/jwcjs/create-jwcjs/commit/a2d30fb44ccd8099c16376651337341461958310)) | ||
|
||
|
||
### Reverts | ||
|
||
* remove dist ([adc50d9](https://github.com/jwcjs/create-jwcjs/commit/adc50d927e8a6edc3ee55346545138be559d0734)) | ||
|
||
|
||
|
||
# [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) | ||
|
||
|
||
|
||
# [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) | ||
# [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) | ||
|
||
|
||
|
||
# [0.1.0-alpha.0](https://github.com/jwcjs/create-jwc/compare/7452960e7fb8bbd1fcb0f8a6815791710bf3755b...v0.1.0-alpha.0) (2022-12-22) | ||
# [0.1.0-alpha.0](https://github.com/jwcjs/create-jwcjs/compare/7452960e7fb8bbd1fcb0f8a6815791710bf3755b...v0.1.0-alpha.0) (2022-12-22) | ||
|
||
|
||
### Bug Fixes | ||
|
||
* add tsconfig for starter template ([15de3b3](https://github.com/jwcjs/create-jwc/commit/15de3b32f1b08520a2a6a54025bbb37b7dc8415f)) | ||
* add tsconfig for starter template ([15de3b3](https://github.com/jwcjs/create-jwcjs/commit/15de3b32f1b08520a2a6a54025bbb37b7dc8415f)) | ||
|
||
|
||
### Features | ||
|
||
* create cli tool ([7452960](https://github.com/jwcjs/create-jwc/commit/7452960e7fb8bbd1fcb0f8a6815791710bf3755b)) | ||
* select package manager ([4b00568](https://github.com/jwcjs/create-jwc/commit/4b0056846ed9abe8f0ceedc68ab681d16cc6dcda)) | ||
* create cli tool ([7452960](https://github.com/jwcjs/create-jwcjs/commit/7452960e7fb8bbd1fcb0f8a6815791710bf3755b)) | ||
* select package manager ([4b00568](https://github.com/jwcjs/create-jwcjs/commit/4b0056846ed9abe8f0ceedc68ab681d16cc6dcda)) | ||
|
||
|
||
### Performance Improvements | ||
|
||
* setup build config ([9ef21a8](https://github.com/jwcjs/create-jwc/commit/9ef21a8e8b90a553b79b1c1fac13170a6f0e160d)) | ||
* setup code style ([aa7e383](https://github.com/jwcjs/create-jwc/commit/aa7e38314aafe1396ec6fa4eb3e16645541a3260)) | ||
* setup build config ([9ef21a8](https://github.com/jwcjs/create-jwcjs/commit/9ef21a8e8b90a553b79b1c1fac13170a6f0e160d)) | ||
* setup code style ([aa7e383](https://github.com/jwcjs/create-jwcjs/commit/aa7e38314aafe1396ec6fa4eb3e16645541a3260)) | ||
|
||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,81 +1,81 @@ | ||
{ | ||
"name": "create-jwcjs", | ||
"version": "0.1.0-alpha.2", | ||
"description": "A Command Line Tool to create jwc.js project", | ||
"main": "index.js", | ||
"type": "module", | ||
"files": [ | ||
"dist", | ||
"index.js", | ||
"package.json", | ||
"LICESE", | ||
"templates" | ||
], | ||
"scripts": { | ||
"dev": "unbuild --stub", | ||
"build": "unbuild", | ||
"typecheck": "tsc --noEmit", | ||
"prepublishOnly": "npm run build", | ||
"lint": "eslint .", | ||
"lint-staged": "lint-staged", | ||
"release": "vv" | ||
}, | ||
"husky": { | ||
"hooks": { | ||
"pre-commit": "lint-staged" | ||
} | ||
}, | ||
"keywords": [ | ||
"jwcjs" | ||
], | ||
"author": "wibus-wee <[email protected]>", | ||
"bugs": { | ||
"url": "https://github.com/jwcjs/create-jwcjs/issues" | ||
}, | ||
"homepage": "https://github.com/jwcjs/create-jwcjs#readme", | ||
"repository": { | ||
"type": "git", | ||
"url": "git+https://github.com/jwcjs/create-jwcjs.git" | ||
}, | ||
"bin": { | ||
"create-jwcjs": "index.js" | ||
}, | ||
"license": "MIT", | ||
"devDependencies": { | ||
"@innei/bump-version": "^1.5.4", | ||
"@types/minimist": "^1.2.2", | ||
"@types/node": "^18.11.17", | ||
"@types/prompts": "^2.4.2", | ||
"@typescript-eslint/eslint-plugin": "^5.47.0", | ||
"@typescript-eslint/parser": "^5.47.0", | ||
"cross-spawn": "^7.0.3", | ||
"eslint": "^8.30.0", | ||
"eslint-config-prettier": "^8.5.0", | ||
"eslint-plugin-prettier": "^4.2.1", | ||
"husky": "^8.0.2", | ||
"kolorist": "^1.6.0", | ||
"lint-staged": "^13.1.0", | ||
"minimist": "^1.2.7", | ||
"prettier": "^2.8.1", | ||
"prompts": "^2.4.2", | ||
"rimraf": "^3.0.2", | ||
"ts-node": "^10.9.1", | ||
"typescript": "^4.9.4", | ||
"unbuild": "^1.0.2" | ||
}, | ||
"lint-staged": { | ||
"*.{js,ts,css,json}": [ | ||
"prettier --write" | ||
] | ||
}, | ||
"bump": { | ||
"leading": [ | ||
"git pull --rebase" | ||
], | ||
"publish": true, | ||
"changelog": true, | ||
"allowed_branches": [ | ||
"main" | ||
] | ||
} | ||
"name": "create-jwcjs", | ||
"version": "0.1.0-alpha.3", | ||
"description": "A Command Line Tool to create jwc.js project", | ||
"main": "index.js", | ||
"type": "module", | ||
"files": [ | ||
"dist", | ||
"index.js", | ||
"package.json", | ||
"LICESE", | ||
"templates" | ||
], | ||
"scripts": { | ||
"dev": "unbuild --stub", | ||
"build": "unbuild", | ||
"typecheck": "tsc --noEmit", | ||
"prepublishOnly": "npm run build", | ||
"lint": "eslint .", | ||
"lint-staged": "lint-staged", | ||
"release": "vv" | ||
}, | ||
"husky": { | ||
"hooks": { | ||
"pre-commit": "lint-staged" | ||
} | ||
}, | ||
"keywords": [ | ||
"jwcjs" | ||
], | ||
"author": "wibus-wee <[email protected]>", | ||
"bugs": { | ||
"url": "https://github.com/jwcjs/create-jwcjs/issues" | ||
}, | ||
"homepage": "https://github.com/jwcjs/create-jwcjs#readme", | ||
"repository": { | ||
"type": "git", | ||
"url": "git+https://github.com/jwcjs/create-jwcjs.git" | ||
}, | ||
"bin": { | ||
"create-jwcjs": "index.js" | ||
}, | ||
"license": "MIT", | ||
"devDependencies": { | ||
"@innei/bump-version": "^1.5.4", | ||
"@types/minimist": "^1.2.2", | ||
"@types/node": "^18.11.17", | ||
"@types/prompts": "^2.4.2", | ||
"@typescript-eslint/eslint-plugin": "^5.47.0", | ||
"@typescript-eslint/parser": "^5.47.0", | ||
"cross-spawn": "^7.0.3", | ||
"eslint": "^8.30.0", | ||
"eslint-config-prettier": "^8.5.0", | ||
"eslint-plugin-prettier": "^4.2.1", | ||
"husky": "^8.0.2", | ||
"kolorist": "^1.6.0", | ||
"lint-staged": "^13.1.0", | ||
"minimist": "^1.2.7", | ||
"prettier": "^2.8.1", | ||
"prompts": "^2.4.2", | ||
"rimraf": "^3.0.2", | ||
"ts-node": "^10.9.1", | ||
"typescript": "^4.9.4", | ||
"unbuild": "^1.0.2" | ||
}, | ||
"lint-staged": { | ||
"*.{js,ts,css,json}": [ | ||
"prettier --write" | ||
] | ||
}, | ||
"bump": { | ||
"leading": [ | ||
"git pull --rebase" | ||
], | ||
"publish": true, | ||
"changelog": true, | ||
"allowed_branches": [ | ||
"main" | ||
] | ||
} | ||
} |