Skip to content

Commit

Permalink
fix(options): fixed export-filename option applying order problem
Browse files Browse the repository at this point in the history
  • Loading branch information
imjuni committed Mar 18, 2024
1 parent 1aedcfc commit 212005c
Show file tree
Hide file tree
Showing 9 changed files with 452 additions and 14 deletions.
4 changes: 4 additions & 0 deletions .husky/commit-msg
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
#!/usr/bin/env sh
. "$(dirname -- "$0")/_/husky.sh"

npx commitlint --edit $1
2 changes: 2 additions & 0 deletions .prettierrc
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,8 @@
".vscode/launch.json",
".vscode/settings.json",
"tsconfig.prod.json",
"tsconfig.eslint.json",
"tsconfig.dts.json",
"tsconfig.json"
],
"options": {
Expand Down
1 change: 1 addition & 0 deletions commitlint.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
module.exports = { extends: ['@commitlint/config-conventional'] };
3 changes: 3 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@
"pub:prod": "pnpm run bundle && cross-env RELEASE_MODE=true pnpm publish --access=public",
"lint": "eslint --cache .",
"lint-staged": "lint-staged",
"commitlint": "commitlint",
"prettier": "prettier --write src/**/*.ts",
"dd": "deps-diff md -d prod -d dev --title-list-type '*' --deps-list-type '*' --content-list-type '*'",
"prepublishOnly": "node prepublish.js",
Expand Down Expand Up @@ -69,6 +70,8 @@
"ctix": "./dist/cjs/cli.cjs"
},
"devDependencies": {
"@commitlint/cli": "^19.2.0",
"@commitlint/config-conventional": "^19.1.0",
"@rollup/plugin-node-resolve": "^15.2.3",
"@tsconfig/node18": "^18.2.2",
"@types/cli-progress": "^3.11.4",
Expand Down
Loading

0 comments on commit 212005c

Please sign in to comment.