typeorm-naming-strategy 2.0.8 → 2.0.10
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/README.md +14 -16
- package/dist/main.d.ts +2 -1
- package/dist/main.js +7 -11
- package/dist/main.js.map +1 -1
- package/package.json +37 -42
- package/CHANGELOG.md +0 -107
package/README.md
CHANGED
|
@@ -13,7 +13,7 @@ For example, using the snake strategy, if you have a model like this:
|
|
|
13
13
|
```typescript
|
|
14
14
|
class User {
|
|
15
15
|
@Column()
|
|
16
|
-
createdAt
|
|
16
|
+
createdAt
|
|
17
17
|
}
|
|
18
18
|
```
|
|
19
19
|
|
|
@@ -40,14 +40,14 @@ yarn add typeorm-naming-strategy
|
|
|
40
40
|
## Usage
|
|
41
41
|
|
|
42
42
|
```ts
|
|
43
|
-
import { createConnection } from 'typeorm'
|
|
43
|
+
import { createConnection } from 'typeorm'
|
|
44
44
|
// import { SnakeNamingStrategy } from 'typeorm-naming-strategy';
|
|
45
|
-
import SnakeNamingStrategy from 'typeorm-naming-strategy'
|
|
45
|
+
import SnakeNamingStrategy from 'typeorm-naming-strategy'
|
|
46
46
|
|
|
47
47
|
await createConnection({
|
|
48
|
-
|
|
48
|
+
// ...
|
|
49
49
|
namingStrategy: new SnakeNamingStrategy(), // Here you'r using the strategy!
|
|
50
|
-
})
|
|
50
|
+
})
|
|
51
51
|
```
|
|
52
52
|
|
|
53
53
|
Alternatively you can use it in combination with a `ormconfig.js`
|
|
@@ -55,10 +55,10 @@ Alternatively you can use it in combination with a `ormconfig.js`
|
|
|
55
55
|
```js
|
|
56
56
|
// Use require instead of import
|
|
57
57
|
// const SnakeNamingStrategy = require("typeorm-naming-strategy").SnakeNamingStrategy
|
|
58
|
-
const SnakeNamingStrategy = require(
|
|
58
|
+
const SnakeNamingStrategy = require('typeorm-naming-strategy')
|
|
59
59
|
|
|
60
60
|
module.exports = {
|
|
61
|
-
|
|
61
|
+
// ...
|
|
62
62
|
namingStrategy: new SnakeNamingStrategy(),
|
|
63
63
|
}
|
|
64
64
|
```
|
|
@@ -66,10 +66,10 @@ module.exports = {
|
|
|
66
66
|
Or you can use it in combination with a `ormconfig.ts`
|
|
67
67
|
|
|
68
68
|
```ts
|
|
69
|
-
import SnakeNamingStrategy from 'typeorm-naming-strategy'
|
|
69
|
+
import SnakeNamingStrategy from 'typeorm-naming-strategy'
|
|
70
70
|
|
|
71
71
|
module.exports = {
|
|
72
|
-
|
|
72
|
+
// ...
|
|
73
73
|
namingStrategy: new SnakeNamingStrategy(),
|
|
74
74
|
}
|
|
75
75
|
```
|
|
@@ -77,15 +77,13 @@ module.exports = {
|
|
|
77
77
|
Use with NestJs configuration
|
|
78
78
|
|
|
79
79
|
```ts
|
|
80
|
-
import { registerAs } from '@nestjs/config'
|
|
81
80
|
import type { MysqlConnectionOptions } from 'typeorm/driver/mysql/MysqlConnectionOptions'
|
|
81
|
+
import { registerAs } from '@nestjs/config'
|
|
82
82
|
import { SnakeNamingStrategy } from 'typeorm-naming-strategy'
|
|
83
83
|
|
|
84
84
|
export default registerAs('database', (): MysqlConnectionOptions => ({
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
)
|
|
85
|
+
// ...
|
|
86
|
+
namingStrategy: new SnakeNamingStrategy(),
|
|
87
|
+
// ...
|
|
88
|
+
}))
|
|
90
89
|
```
|
|
91
|
-
|
package/dist/main.d.ts
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import type { NamingStrategyInterface } from 'typeorm';
|
|
2
|
+
import { DefaultNamingStrategy } from 'typeorm';
|
|
2
3
|
export declare class SnakeNamingStrategy extends DefaultNamingStrategy implements NamingStrategyInterface {
|
|
3
4
|
tableName(className: string, customName?: string): string;
|
|
4
5
|
columnName(propertyName: string, customName: string | undefined, embeddedPrefixes: string[]): string;
|
package/dist/main.js
CHANGED
|
@@ -5,33 +5,29 @@ const typeorm_1 = require("typeorm");
|
|
|
5
5
|
const StringUtils_1 = require("typeorm/util/StringUtils");
|
|
6
6
|
class SnakeNamingStrategy extends typeorm_1.DefaultNamingStrategy {
|
|
7
7
|
tableName(className, customName) {
|
|
8
|
-
return customName
|
|
8
|
+
return customName || (0, StringUtils_1.snakeCase)(className);
|
|
9
9
|
}
|
|
10
10
|
columnName(propertyName, customName, embeddedPrefixes) {
|
|
11
|
-
return ((0, StringUtils_1.snakeCase)(embeddedPrefixes.concat('').join('_'))
|
|
12
|
-
(customName
|
|
11
|
+
return ((0, StringUtils_1.snakeCase)(embeddedPrefixes.concat('').join('_'))
|
|
12
|
+
+ (customName || (0, StringUtils_1.snakeCase)(propertyName)));
|
|
13
13
|
}
|
|
14
14
|
relationName(propertyName) {
|
|
15
15
|
return (0, StringUtils_1.snakeCase)(propertyName);
|
|
16
16
|
}
|
|
17
17
|
joinColumnName(relationName, referencedColumnName) {
|
|
18
|
-
return (0, StringUtils_1.snakeCase)(relationName
|
|
18
|
+
return (0, StringUtils_1.snakeCase)(`${relationName}_${referencedColumnName}`);
|
|
19
19
|
}
|
|
20
20
|
joinTableName(firstTableName, secondTableName, firstPropertyName) {
|
|
21
|
-
return (0, StringUtils_1.snakeCase)(firstTableName
|
|
22
|
-
'_' +
|
|
23
|
-
firstPropertyName.replace(/\./gi, '_') +
|
|
24
|
-
'_' +
|
|
25
|
-
secondTableName);
|
|
21
|
+
return (0, StringUtils_1.snakeCase)(`${firstTableName}_${firstPropertyName.replace(/\./g, '_')}_${secondTableName}`);
|
|
26
22
|
}
|
|
27
23
|
joinTableColumnName(tableName, propertyName, columnName) {
|
|
28
|
-
return (0, StringUtils_1.snakeCase)(tableName
|
|
24
|
+
return (0, StringUtils_1.snakeCase)(`${tableName}_${columnName || propertyName}`);
|
|
29
25
|
}
|
|
30
26
|
classTableInheritanceParentColumnName(parentTableName, parentTableIdPropertyName) {
|
|
31
27
|
return (0, StringUtils_1.snakeCase)(`${parentTableName}_${parentTableIdPropertyName}`);
|
|
32
28
|
}
|
|
33
29
|
eagerJoinRelationAlias(alias, propertyPath) {
|
|
34
|
-
return alias
|
|
30
|
+
return `${alias}_${propertyPath.replace('.', '_')}`;
|
|
35
31
|
}
|
|
36
32
|
}
|
|
37
33
|
exports.SnakeNamingStrategy = SnakeNamingStrategy;
|
package/dist/main.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"main.js","sourceRoot":"","sources":["../src/main.ts"],"names":[],"mappings":";;;
|
|
1
|
+
{"version":3,"file":"main.js","sourceRoot":"","sources":["../src/main.ts"],"names":[],"mappings":";;;AACA,qCAA+C;AAC/C,0DAAoD;AAEpD,MAAa,mBACX,SAAQ,+BAAqB;IAE7B,SAAS,CAAC,SAAiB,EAAE,UAAmB;QAC9C,OAAO,UAAU,IAAI,IAAA,uBAAS,EAAC,SAAS,CAAC,CAAA;IAC3C,CAAC;IAED,UAAU,CACR,YAAoB,EACpB,UAA8B,EAC9B,gBAA0B;QAE1B,OAAO,CACL,IAAA,uBAAS,EAAC,gBAAgB,CAAC,MAAM,CAAC,EAAE,CAAC,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC;cAC9C,CAAC,UAAU,IAAI,IAAA,uBAAS,EAAC,YAAY,CAAC,CAAC,CAC1C,CAAA;IACH,CAAC;IAED,YAAY,CAAC,YAAoB;QAC/B,OAAO,IAAA,uBAAS,EAAC,YAAY,CAAC,CAAA;IAChC,CAAC;IAED,cAAc,CAAC,YAAoB,EAAE,oBAA4B;QAC/D,OAAO,IAAA,uBAAS,EAAC,GAAG,YAAY,IAAI,oBAAoB,EAAE,CAAC,CAAA;IAC7D,CAAC;IAED,aAAa,CACX,cAAsB,EACtB,eAAuB,EACvB,iBAAyB;QAEzB,OAAO,IAAA,uBAAS,EACd,GAAG,cACH,IACE,iBAAiB,CAAC,OAAO,CAAC,KAAK,EAAE,GAAG,CACtC,IACE,eAAe,EAAE,CACpB,CAAA;IACH,CAAC;IAED,mBAAmB,CACjB,SAAiB,EACjB,YAAoB,EACpB,UAAmB;QAEnB,OAAO,IAAA,uBAAS,EACd,GAAG,SAAS,IAAI,UAAU,IAAI,YAAY,EAAE,CAC7C,CAAA;IACH,CAAC;IAED,qCAAqC,CACnC,eAAuB,EACvB,yBAAiC;QAEjC,OAAO,IAAA,uBAAS,EAAC,GAAG,eAAe,IAAI,yBAAyB,EAAE,CAAC,CAAA;IACrE,CAAC;IAED,sBAAsB,CAAC,KAAa,EAAE,YAAoB;QACxD,OAAO,GAAG,KAAK,IAAI,YAAY,CAAC,OAAO,CAAC,GAAG,EAAE,GAAG,CAAC,EAAE,CAAA;IACrD,CAAC;CACF;AA5DD,kDA4DC;AAED,kBAAe,mBAAmB,CAAA"}
|
package/package.json
CHANGED
|
@@ -1,15 +1,17 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "typeorm-naming-strategy",
|
|
3
|
-
"version": "2.0.
|
|
4
|
-
"packageManager": "yarn@
|
|
3
|
+
"version": "2.0.10",
|
|
4
|
+
"packageManager": "yarn@4.4.1",
|
|
5
5
|
"description": "Custom naming strategies for typeorm",
|
|
6
|
-
"
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
"
|
|
10
|
-
|
|
11
|
-
"
|
|
12
|
-
|
|
6
|
+
"author": {
|
|
7
|
+
"name": "Chantouch Sek",
|
|
8
|
+
"email": "chantouchsek.cs83@gmail.com",
|
|
9
|
+
"url": "https://chantouch.me"
|
|
10
|
+
},
|
|
11
|
+
"license": "MIT",
|
|
12
|
+
"repository": {
|
|
13
|
+
"type": "git",
|
|
14
|
+
"url": "https://github.com/chantouchsek/typeorm-naming-strategy"
|
|
13
15
|
},
|
|
14
16
|
"keywords": [
|
|
15
17
|
"typeorm",
|
|
@@ -22,51 +24,44 @@
|
|
|
22
24
|
"typeorm snake",
|
|
23
25
|
"naming strategies"
|
|
24
26
|
],
|
|
25
|
-
"
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
"
|
|
32
|
-
"url": "https://chantouch.me"
|
|
33
|
-
},
|
|
34
|
-
"lint-staged": {
|
|
35
|
-
"*.{ts,js}": "eslint"
|
|
27
|
+
"main": "dist/main.js",
|
|
28
|
+
"types": "dist/main.d.ts",
|
|
29
|
+
"files": [
|
|
30
|
+
"dist"
|
|
31
|
+
],
|
|
32
|
+
"engines": {
|
|
33
|
+
"node": "^12.20.0 || >=14.13.0"
|
|
36
34
|
},
|
|
37
|
-
"license": "MIT",
|
|
38
35
|
"scripts": {
|
|
39
36
|
"build": "rimraf dist && tsc",
|
|
40
37
|
"test": "vitest --run",
|
|
41
38
|
"test:cov": "vitest run --coverage",
|
|
42
39
|
"prepublish": "yarn build",
|
|
43
40
|
"prepare": "husky",
|
|
44
|
-
"lint": "eslint
|
|
45
|
-
"release": "standard-version && git push --follow-tags origin main &&
|
|
41
|
+
"lint": "eslint .",
|
|
42
|
+
"release": "standard-version && git push --follow-tags origin main && npm publish"
|
|
43
|
+
},
|
|
44
|
+
"peerDependencies": {
|
|
45
|
+
"typeorm": "^0.3"
|
|
46
46
|
},
|
|
47
47
|
"devDependencies": {
|
|
48
|
-
"@
|
|
49
|
-
"@commitlint/
|
|
50
|
-
"@
|
|
51
|
-
"@
|
|
52
|
-
"@
|
|
53
|
-
"
|
|
54
|
-
"
|
|
55
|
-
"
|
|
56
|
-
"
|
|
57
|
-
"
|
|
58
|
-
"eslint-plugin-promise": "^6.1.1",
|
|
59
|
-
"husky": "^9.0.11",
|
|
60
|
-
"lint-staged": "^15.2.2",
|
|
61
|
-
"prettier": "^3.2.5",
|
|
62
|
-
"rimraf": "^5.0.5",
|
|
48
|
+
"@antfu/eslint-config": "^3.6.2",
|
|
49
|
+
"@commitlint/cli": "^19.5.0",
|
|
50
|
+
"@commitlint/config-conventional": "^19.5.0",
|
|
51
|
+
"@types/node": "^22.5.5",
|
|
52
|
+
"@vitest/coverage-v8": "^2.1.1",
|
|
53
|
+
"eslint": "^9.10.0",
|
|
54
|
+
"husky": "^9.1.6",
|
|
55
|
+
"lint-staged": "^15.2.10",
|
|
56
|
+
"prettier": "^3.3.3",
|
|
57
|
+
"rimraf": "^5.0.10",
|
|
63
58
|
"standard-version": "^9.5.0",
|
|
64
59
|
"ts-node": "^10.9.2",
|
|
65
60
|
"typeorm": "^0.3.20",
|
|
66
|
-
"typescript": "^5.
|
|
67
|
-
"vitest": "^1.
|
|
61
|
+
"typescript": "^5.6.2",
|
|
62
|
+
"vitest": "^2.1.1"
|
|
68
63
|
},
|
|
69
|
-
"
|
|
70
|
-
"
|
|
64
|
+
"lint-staged": {
|
|
65
|
+
"*.{ts,js}": "eslint"
|
|
71
66
|
}
|
|
72
67
|
}
|
package/CHANGELOG.md
DELETED
|
@@ -1,107 +0,0 @@
|
|
|
1
|
-
# Changelog
|
|
2
|
-
|
|
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
|
-
|
|
5
|
-
### [2.0.8](https://github.com/chantouchsek/typeorm-naming-strategy/compare/v2.0.7...v2.0.8) (2024-05-08)
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
### Bug Fixes
|
|
9
|
-
|
|
10
|
-
* **deps:** bump actions/checkout from 4.1.2 to 4.1.3 ([43e0d22](https://github.com/chantouchsek/typeorm-naming-strategy/commit/43e0d22874d4066dd1ee7dab9892c7e5b7db9689))
|
|
11
|
-
* **deps:** bump actions/checkout from 4.1.3 to 4.1.4 ([46a73c8](https://github.com/chantouchsek/typeorm-naming-strategy/commit/46a73c8f827d29da42c7f9122d6e2f50bfc0b77d))
|
|
12
|
-
* **deps:** bump actions/checkout from 4.1.4 to 4.1.5 ([5f1323e](https://github.com/chantouchsek/typeorm-naming-strategy/commit/5f1323e949d9670450ec95af2d4fc29f0a825510))
|
|
13
|
-
|
|
14
|
-
### [2.0.7](https://github.com/chantouchsek/typeorm-naming-strategy/compare/v2.0.6...v2.0.7) (2024-03-29)
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
### Bug Fixes
|
|
18
|
-
|
|
19
|
-
* **deps:** bump actions/checkout from 4.1.1 to 4.1.2 ([bf2523d](https://github.com/chantouchsek/typeorm-naming-strategy/commit/bf2523d9a81c2db42bcaafe1a5a61e7b6bb97dc1))
|
|
20
|
-
* **deps:** bump actions/setup-node from 4.0.1 to 4.0.2 ([534c4cb](https://github.com/chantouchsek/typeorm-naming-strategy/commit/534c4cb55fe2f4a91da94648a48470511d6814a9))
|
|
21
|
-
|
|
22
|
-
### [2.0.6](https://github.com/chantouchsek/typeorm-naming-strategy/compare/v2.0.5...v2.0.6) (2024-02-03)
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
### Bug Fixes
|
|
26
|
-
|
|
27
|
-
* **deps:** bump actions/setup-node from 4.0.0 to 4.0.1 ([6111f45](https://github.com/chantouchsek/typeorm-naming-strategy/commit/6111f456f2e148e2dd42cd2a6e14b9d49e15ee52))
|
|
28
|
-
* **deps:** bump actions/stale from 8.0.0 to 9.0.0 ([e640bae](https://github.com/chantouchsek/typeorm-naming-strategy/commit/e640bae874829a913dce5c1ba8b3e4c2c60b5c0a))
|
|
29
|
-
|
|
30
|
-
### [2.0.5](https://github.com/chantouchsek/typeorm-naming-strategy/compare/v2.0.4...v2.0.5) (2023-12-02)
|
|
31
|
-
|
|
32
|
-
### [2.0.4](https://github.com/chantouchsek/typeorm-naming-strategy/compare/v2.0.3...v2.0.4) (2023-11-01)
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
### Bug Fixes
|
|
36
|
-
|
|
37
|
-
* **deps:** bump actions/checkout from 3.5.3 to 3.6.0 ([1e93540](https://github.com/chantouchsek/typeorm-naming-strategy/commit/1e935403515bd0ed3488f9830f17f493b79c8049))
|
|
38
|
-
* **deps:** bump actions/checkout from 3.6.0 to 4.0.0 ([b06d641](https://github.com/chantouchsek/typeorm-naming-strategy/commit/b06d6415290cddedc3e4b4427a2a5525c9f2ee72))
|
|
39
|
-
* **deps:** bump actions/checkout from 4.0.0 to 4.1.0 ([b3d8e14](https://github.com/chantouchsek/typeorm-naming-strategy/commit/b3d8e141a637c550e3f66e105e149c8b49d0276c))
|
|
40
|
-
* **deps:** bump actions/checkout from 4.1.0 to 4.1.1 ([bca09de](https://github.com/chantouchsek/typeorm-naming-strategy/commit/bca09dec73b49eb4ff740c8976dfb538a2a6ec11))
|
|
41
|
-
* **deps:** bump actions/setup-node from 3.7.0 to 3.8.0 ([646e059](https://github.com/chantouchsek/typeorm-naming-strategy/commit/646e05974a5e2b685079fb886f7b943ea0b5d193))
|
|
42
|
-
* **deps:** bump actions/setup-node from 3.8.0 to 3.8.1 ([9147ecb](https://github.com/chantouchsek/typeorm-naming-strategy/commit/9147ecb9fe4eea0c164d7b6a1b84c9001d90a62a))
|
|
43
|
-
* **deps:** bump actions/setup-node from 3.8.1 to 4.0.0 ([28f890a](https://github.com/chantouchsek/typeorm-naming-strategy/commit/28f890ac1886f6dbeb153a18785817f0ae4af8f0))
|
|
44
|
-
|
|
45
|
-
### [2.0.3](https://github.com/chantouchsek/typeorm-naming-strategy/compare/v2.0.2...v2.0.3) (2023-08-09)
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
### Bug Fixes
|
|
49
|
-
|
|
50
|
-
* :pencil2: remove global from vite ([a50f000](https://github.com/chantouchsek/typeorm-naming-strategy/commit/a50f000331191d6d569fad9f4556db392a8173f7))
|
|
51
|
-
* **deps:** bump actions/checkout from 3.5.2 to 3.5.3 ([9040d96](https://github.com/chantouchsek/typeorm-naming-strategy/commit/9040d96900157be5f3c79ea47073ab682ac32592))
|
|
52
|
-
* **deps:** bump actions/setup-node from 3.6.0 to 3.7.0 ([d180516](https://github.com/chantouchsek/typeorm-naming-strategy/commit/d1805165a58ef3992dbeadc4718cd839de7fe0c6))
|
|
53
|
-
|
|
54
|
-
### [2.0.2](https://github.com/chantouchsek/typeorm-naming-strategy/compare/v2.0.1...v2.0.2) (2023-05-23)
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
### Bug Fixes
|
|
58
|
-
|
|
59
|
-
* **deps:** bump actions/checkout from 3.3.0 to 3.5.2 ([4285689](https://github.com/chantouchsek/typeorm-naming-strategy/commit/4285689f4f9743d6e2ebff45a6b4a722e45558dd))
|
|
60
|
-
* **deps:** bump actions/stale from 7.0.0 to 8.0.0 ([5ea1bd6](https://github.com/chantouchsek/typeorm-naming-strategy/commit/5ea1bd63dc88f5bb98b241c02f8bc1beabf9ef97))
|
|
61
|
-
|
|
62
|
-
### [2.0.1](https://github.com/chantouchsek/typeorm-naming-strategy/compare/v2.0.0...v2.0.1) (2023-02-05)
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
### Bug Fixes
|
|
66
|
-
|
|
67
|
-
* **deps:** bump actions/checkout from 3.1.0 to 3.2.0 ([09573c2](https://github.com/chantouchsek/typeorm-naming-strategy/commit/09573c21186209954b10e08ad351cf2221847473))
|
|
68
|
-
* **deps:** bump actions/checkout from 3.2.0 to 3.3.0 ([5c008b6](https://github.com/chantouchsek/typeorm-naming-strategy/commit/5c008b656449de8b49568ddcf730fc119aeeb989))
|
|
69
|
-
* **deps:** bump actions/setup-node from 3.5.1 to 3.6.0 ([c5aa6f1](https://github.com/chantouchsek/typeorm-naming-strategy/commit/c5aa6f1dcbdf87a3d48b54ca91e0f56a027db58e))
|
|
70
|
-
* **deps:** bump actions/stale from 6.0.1 to 7.0.0 ([c374f48](https://github.com/chantouchsek/typeorm-naming-strategy/commit/c374f48e7576c5aa3f4e3f9a6927692c4f73caf1))
|
|
71
|
-
|
|
72
|
-
## [2.0.0](https://github.com/chantouchsek/typeorm-naming-strategy/compare/v1.0.0...v2.0.0) (2022-10-16)
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
### ⚠ BREAKING CHANGES
|
|
76
|
-
|
|
77
|
-
* replace the deprecated interface
|
|
78
|
-
* remove tslint as it is deprecated
|
|
79
|
-
* export the function
|
|
80
|
-
* :beers: rename snake-naming to main
|
|
81
|
-
|
|
82
|
-
### Features
|
|
83
|
-
|
|
84
|
-
* :beers: rename snake-naming to main ([b5fdb52](https://github.com/chantouchsek/typeorm-naming-strategy/commit/b5fdb52d9d48999962cfcbea1d2ffb0ba9f99d92))
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
### Bug Fixes
|
|
88
|
-
|
|
89
|
-
* **deps:** bump actions/checkout from 2.4.0 to 3.1.0 ([4c38435](https://github.com/chantouchsek/typeorm-naming-strategy/commit/4c384358f53d8d78fe2ac80bfb74d53399c58cab))
|
|
90
|
-
* **deps:** bump actions/setup-node from 2.5.0 to 3.4.1 ([9f045ce](https://github.com/chantouchsek/typeorm-naming-strategy/commit/9f045cec7ee26d688b21eb0e4ade05f0f3845ff1))
|
|
91
|
-
* **deps:** bump actions/setup-node from 3.4.1 to 3.5.1 ([6e9baac](https://github.com/chantouchsek/typeorm-naming-strategy/commit/6e9baac5586f14a4ba9e079615ccca2bc15b2959))
|
|
92
|
-
* **deps:** bump actions/stale from 4 to 5.1.0 ([3248a10](https://github.com/chantouchsek/typeorm-naming-strategy/commit/3248a107f48b9c899e1b38b652b3180df8c32506))
|
|
93
|
-
* **deps:** bump actions/stale from 5.1.0 to 5.1.1 ([48dd8f6](https://github.com/chantouchsek/typeorm-naming-strategy/commit/48dd8f64ae37ceb510f07b55bbea69a9015f4891))
|
|
94
|
-
* **deps:** bump actions/stale from 5.1.1 to 6.0.0 ([5d652a5](https://github.com/chantouchsek/typeorm-naming-strategy/commit/5d652a53d1e8372da5d7d066ce9c9564b0ad2e37))
|
|
95
|
-
* **deps:** bump actions/stale from 6.0.0 to 6.0.1 ([e6c581e](https://github.com/chantouchsek/typeorm-naming-strategy/commit/e6c581e4b61862eeee1d289e1d68da3a1d9554eb))
|
|
96
|
-
* replace the deprecated interface ([a8be33c](https://github.com/chantouchsek/typeorm-naming-strategy/commit/a8be33c6f9fa431ca27260e325498cf27099a3b8))
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
* export the function ([2308223](https://github.com/chantouchsek/typeorm-naming-strategy/commit/23082231358225a3536ffb981eb874a5b388117c))
|
|
100
|
-
* remove tslint as it is deprecated ([58700ee](https://github.com/chantouchsek/typeorm-naming-strategy/commit/58700ee6f650119bbca88421154a5a14e0114d76))
|
|
101
|
-
|
|
102
|
-
## 1.0.0 (2021-12-17)
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
### Bug Fixes
|
|
106
|
-
|
|
107
|
-
* :beer: fixed eslint run ([14c919e](https://github.com/chantouchsek/typeorm-naming-strategy/commit/14c919e4899b482b51dfff0e418ab97db1021e8d))
|