Development
Create typescript project by clone empty typescript templates.
Get Started start-ts-by
Local use by npx
sh
npx start-ts-byDevelop start-ts-by
Install pnpm
sh
corepack enable pnpm
corepack prepare pnpm@10.0.0 --activate
corepack use pnpm@10.0.0
# clean local corepack cache
corepack cache clean
# Cannot find matching keyid: {"signatures":[{"sig":"MEQCIGfJsZcWOYet7N9s+gixdrVR7NuxXRagWTDp3...
# use
npm install --global corepack@latestuse pnpm
sh
pnpm -v # 10.0.0
pnpm install --frozen-lockfileGit commit use commitizen
sh
# 輸入 git commit 出現 commitizen 選項
git commit
? Select the type of change that you're committing: (Use arrow keys)
❯ feat: A new feature
fix: A bug fix
docs: Documentation only changes
style: Changes that do not affect the meaning of the code (white-space, formatting, missing semi-colons,
etc)
refactor: A code change that neither fixes a bug nor adds a feature
perf: A code change that improves performanceJest
unit test
sh
# src/**.(spec|test).ts
pnpm test
# or
pnpm test:watch- Unit Test Web Report, port:
9487shpnpm test:web - Coverage Web Report, port:
9488shpnpm test:cov:web
e2e test
sh
# e2e-spec
pnpm test:e2e
# or
pnpm test:e2e:watch- E2E Test Web Report, port:
9477shpnpm test:e2e:web
Develop environment
.npmrc, .nvmrc
husky
pnpm add -wD husky
pnpm exec husky initAuto commit
- commitlint
- cz-conventional-changelog
- commitizen
sh
pnpm add -D cz-conventional-changelog @commitlint/cz-commitlint @commitlint/config-conventional @commitlint/cli commitizen