@lyrolab/nest-shared 1.0.1 → 1.0.2
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/.releaserc.json +1 -2
- package/CHANGELOG.md +2 -0
- package/package.json +6 -1
- package/commitlint.config.ts +0 -4
package/.releaserc.json
CHANGED
package/CHANGELOG.md
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lyrolab/nest-shared",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.2",
|
|
4
4
|
"description": "A collection of shared modules for NestJS applications",
|
|
5
5
|
"author": "",
|
|
6
6
|
"license": "UNLICENSED",
|
|
@@ -142,6 +142,11 @@
|
|
|
142
142
|
"^@app/nest-shared(|/.*)$": "<rootDir>/libs/nest-shared/src/$1"
|
|
143
143
|
}
|
|
144
144
|
},
|
|
145
|
+
"commitlint": {
|
|
146
|
+
"extends": [
|
|
147
|
+
"@commitlint/config-conventional"
|
|
148
|
+
]
|
|
149
|
+
},
|
|
145
150
|
"lint-staged": {
|
|
146
151
|
"*.{js,ts,json,css,scss,md}": [
|
|
147
152
|
"prettier --write"
|
package/commitlint.config.ts
DELETED