Skip to content

Commit

Permalink
feat!: v1
Browse files Browse the repository at this point in the history
  • Loading branch information
gracefullight committed Jun 17, 2024
1 parent d2ca18c commit a0c4481
Show file tree
Hide file tree
Showing 7 changed files with 773 additions and 1,677 deletions.
5 changes: 2 additions & 3 deletions .github/workflows/generate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,15 +19,14 @@ jobs:
with:
node-version: 20

- name: Install & Build
run: pnpm install --frozen-lockfile && pnpm build
- name: Install
run: pnpm install --frozen-lockfile

- name: Generate
run: pnpm generate

- name: Commit
run: |
mv -f dist/README.md .
git add README.md
git config --local user.email "action@github.com"
git config --local user.name "GitHub Action"
Expand Down
3 changes: 0 additions & 3 deletions .husky/commit-msg
Original file line number Diff line number Diff line change
@@ -1,4 +1 @@
#!/bin/sh
. "$(dirname "$0")/_/husky.sh"

pnpm commitlint --edit $1 --config config/commitlint.config.ts
12 changes: 0 additions & 12 deletions .swcrc

This file was deleted.

99 changes: 56 additions & 43 deletions README.md

Large diffs are not rendered by default.

40 changes: 19 additions & 21 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,40 +1,38 @@
{
"name": "dekakao",
"version": "0.1.0",
"version": "1.0.0",
"repository": "git@github.com:gracefullight/dekakao.git",
"license": "unlicense",
"author": "gracefullight <gracefullight.dev@gmail.com>",
"scripts": {
"build": "swc src --out-dir dist --copy-files",
"generate": "node dist/readme.js",
"generate": "tsx src/readme.ts",
"lint": "eslint src --fix",
"prepare": "husky install"
},
"dependencies": {
"js-yaml": "^4.1.0",
"luxon": "^3.4.4"
"luxon": "^3.4.4",
"tsx": "^4.15.6"
},
"devDependencies": {
"@commitlint/cli": "^18.4.3",
"@commitlint/config-conventional": "^18.4.3",
"@commitlint/types": "^18.4.3",
"@swc/cli": "^0.1.63",
"@swc/core": "^1.3.99",
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@commitlint/types": "^19.0.3",
"@types/js-yaml": "^4.0.9",
"@types/luxon": "^3.3.5",
"@types/node": "^20.10.0",
"@typescript-eslint/eslint-plugin": "^6.13.1",
"@typescript-eslint/parser": "^6.13.1",
"eslint": "^8.54.0",
"eslint-config-prettier": "^9.0.0",
"@types/luxon": "^3.4.2",
"@types/node": "^20.14.2",
"@typescript-eslint/eslint-plugin": "^7.13.0",
"@typescript-eslint/parser": "^7.13.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-prettier": "^5.0.1",
"husky": "^8.0.3",
"prettier": "^3.1.0",
"typescript": "^5.3.2"
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-prettier": "^5.1.3",
"husky": "^9.0.11",
"prettier": "^3.3.2",
"typescript": "^5.4.5"
},
"packageManager": "pnpm@9.13.0",
"packageManager": "pnpm@9.3.0",
"engines": {
"node": "20"
}
Expand Down
Loading

0 comments on commit a0c4481

Please sign in to comment.