-
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
12 changed files
with
11,604 additions
and
35 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
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
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 +1 @@ | ||
bun run commitlint --edit $1 | ||
pnpm commitlint --edit $1 |
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 +1 @@ | ||
bun run lint-staged | ||
npx lint-staged |
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
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
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
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
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
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 |
---|---|---|
|
@@ -6,10 +6,12 @@ | |
"license": "Apache License 2.0", | ||
"engines": { | ||
"node": ">=20.0.0", | ||
"npm": "please-use-bun", | ||
"yarn": "please-use-bun", | ||
"bun": ">=1.1.0" | ||
"npm": "please-use-pnpm", | ||
"yarn": "please-use-pnpm", | ||
"bun": "please-use-pnpm", | ||
"pnpm": "9.14.2" | ||
}, | ||
"packageManager": "[email protected]", | ||
"scripts": { | ||
"prebuild": "rimraf dist", | ||
"build": "nest build", | ||
|
@@ -28,11 +30,11 @@ | |
"test:ui": "vitest --ui", | ||
"test:coverage": "vitest run --coverage", | ||
"typeorm": "ts-node -r tsconfig-paths/register ./node_modules/typeorm/cli", | ||
"schema:sync": "bun run typeorm schema:sync -d ./dist/config/database/typeorm.config.js", | ||
"migration:run": "bun run typeorm migration:run -d ./dist/config/database/typeorm.config.js", | ||
"migration:generate": "bun run typeorm migration:generate -d ./dist/config/database/typeorm.config.js ./src/migrations/$NAME", | ||
"migration:create": "bun run typeorm migration:create ./src/migrations/$NAME", | ||
"migration:revert": "bun run typeorm migration:revert -d ./src/config/database/typeorm.config.ts", | ||
"schema:sync": "pnpm run typeorm schema:sync -d ./dist/config/database/typeorm.config.js", | ||
"migration:run": "pnpm run typeorm migration:run -d ./dist/config/database/typeorm.config.js", | ||
"migration:generate": "pnpm run typeorm migration:generate -d ./dist/config/database/typeorm.config.js ./src/migrations/$NAME", | ||
"migration:create": "pnpm run typeorm migration:create ./src/migrations/$NAME", | ||
"migration:revert": "pnpm run typeorm migration:revert -d ./src/config/database/typeorm.config.ts", | ||
"prepare": "husky", | ||
"commit": "cz" | ||
}, | ||
|
Oops, something went wrong.