typeorm-naming-strategy 2.0.5 → 2.0.7
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/CHANGELOG.md +16 -0
- package/package.json +20 -20
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,22 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
|
|
4
4
|
|
|
5
|
+
### [2.0.7](https://github.com/chantouchsek/typeorm-naming-strategy/compare/v2.0.6...v2.0.7) (2024-03-29)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Bug Fixes
|
|
9
|
+
|
|
10
|
+
* **deps:** bump actions/checkout from 4.1.1 to 4.1.2 ([bf2523d](https://github.com/chantouchsek/typeorm-naming-strategy/commit/bf2523d9a81c2db42bcaafe1a5a61e7b6bb97dc1))
|
|
11
|
+
* **deps:** bump actions/setup-node from 4.0.1 to 4.0.2 ([534c4cb](https://github.com/chantouchsek/typeorm-naming-strategy/commit/534c4cb55fe2f4a91da94648a48470511d6814a9))
|
|
12
|
+
|
|
13
|
+
### [2.0.6](https://github.com/chantouchsek/typeorm-naming-strategy/compare/v2.0.5...v2.0.6) (2024-02-03)
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
### Bug Fixes
|
|
17
|
+
|
|
18
|
+
* **deps:** bump actions/setup-node from 4.0.0 to 4.0.1 ([6111f45](https://github.com/chantouchsek/typeorm-naming-strategy/commit/6111f456f2e148e2dd42cd2a6e14b9d49e15ee52))
|
|
19
|
+
* **deps:** bump actions/stale from 8.0.0 to 9.0.0 ([e640bae](https://github.com/chantouchsek/typeorm-naming-strategy/commit/e640bae874829a913dce5c1ba8b3e4c2c60b5c0a))
|
|
20
|
+
|
|
5
21
|
### [2.0.5](https://github.com/chantouchsek/typeorm-naming-strategy/compare/v2.0.4...v2.0.5) (2023-12-02)
|
|
6
22
|
|
|
7
23
|
### [2.0.4](https://github.com/chantouchsek/typeorm-naming-strategy/compare/v2.0.3...v2.0.4) (2023-11-01)
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "typeorm-naming-strategy",
|
|
3
|
-
"version": "2.0.
|
|
4
|
-
"packageManager": "yarn@1.22.
|
|
3
|
+
"version": "2.0.7",
|
|
4
|
+
"packageManager": "yarn@1.22.22",
|
|
5
5
|
"description": "Custom naming strategies for typeorm",
|
|
6
6
|
"main": "dist/main.js",
|
|
7
7
|
"types": "dist/main.d.ts",
|
|
@@ -40,31 +40,31 @@
|
|
|
40
40
|
"test": "vitest --run",
|
|
41
41
|
"test:cov": "vitest run --coverage",
|
|
42
42
|
"prepublish": "yarn build",
|
|
43
|
-
"prepare": "husky
|
|
43
|
+
"prepare": "husky",
|
|
44
44
|
"lint": "eslint --ext \".ts,.js,.vue\" --ignore-path .gitignore .",
|
|
45
45
|
"release": "standard-version && git push --follow-tags origin main && yarn publish"
|
|
46
46
|
},
|
|
47
47
|
"devDependencies": {
|
|
48
|
-
"@commitlint/cli": "^
|
|
49
|
-
"@commitlint/config-conventional": "^
|
|
50
|
-
"@types/node": "^20.
|
|
51
|
-
"@typescript-eslint/eslint-plugin": "^
|
|
52
|
-
"@typescript-eslint/parser": "^
|
|
53
|
-
"@vitest/coverage-v8": "^
|
|
54
|
-
"eslint": "^8.
|
|
55
|
-
"eslint-config-prettier": "^9.
|
|
56
|
-
"eslint-plugin-import": "^2.29.
|
|
57
|
-
"eslint-plugin-prettier": "^5.
|
|
48
|
+
"@commitlint/cli": "^19.2.1",
|
|
49
|
+
"@commitlint/config-conventional": "^19.1.0",
|
|
50
|
+
"@types/node": "^20.11.30",
|
|
51
|
+
"@typescript-eslint/eslint-plugin": "^7.4.0",
|
|
52
|
+
"@typescript-eslint/parser": "^7.4.0",
|
|
53
|
+
"@vitest/coverage-v8": "^1.4.0",
|
|
54
|
+
"eslint": "^8.57.0",
|
|
55
|
+
"eslint-config-prettier": "^9.1.0",
|
|
56
|
+
"eslint-plugin-import": "^2.29.1",
|
|
57
|
+
"eslint-plugin-prettier": "^5.1.3",
|
|
58
58
|
"eslint-plugin-promise": "^6.1.1",
|
|
59
|
-
"husky": "^
|
|
60
|
-
"lint-staged": "^15.
|
|
61
|
-
"prettier": "^3.
|
|
59
|
+
"husky": "^9.0.11",
|
|
60
|
+
"lint-staged": "^15.2.2",
|
|
61
|
+
"prettier": "^3.2.5",
|
|
62
62
|
"rimraf": "^5.0.5",
|
|
63
63
|
"standard-version": "^9.5.0",
|
|
64
|
-
"ts-node": "^10.9.
|
|
65
|
-
"typeorm": "^0.3.
|
|
66
|
-
"typescript": "^5.3
|
|
67
|
-
"vitest": "^
|
|
64
|
+
"ts-node": "^10.9.2",
|
|
65
|
+
"typeorm": "^0.3.20",
|
|
66
|
+
"typescript": "^5.4.3",
|
|
67
|
+
"vitest": "^1.4.0"
|
|
68
68
|
},
|
|
69
69
|
"peerDependencies": {
|
|
70
70
|
"typeorm": "^0.3"
|