@10stars/config 13.7.0 → 13.7.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/index.ts +2 -1
package/package.json
CHANGED
package/src/index.ts
CHANGED
|
@@ -71,7 +71,8 @@ const actions = {
|
|
|
71
71
|
action: () => {
|
|
72
72
|
const pathCommitlint = new URL(`../commitlint.config.js`, import.meta.url)
|
|
73
73
|
.pathname
|
|
74
|
-
exec(`bun run commitlint --edit --config ${pathCommitlint}`)
|
|
74
|
+
// exec(`bun run commitlint --edit --config ${pathCommitlint}`)
|
|
75
|
+
exec(`npm run commitlint --edit --config ${pathCommitlint}`)
|
|
75
76
|
},
|
|
76
77
|
},
|
|
77
78
|
} satisfies Record<string, { info: string; action: () => void | Promise<void> }>
|