@edifice.io/edifice-nestjs-core 1.0.0-develop-pedago.7 → 1.0.0-develop-pedago.20251204183503
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 +25 -0
- package/dist/bin/update-rn-version.d.ts +2 -0
- package/dist/bin/update-rn-version.js +56 -0
- package/dist/bin/update-rn-version.js.map +1 -0
- package/dist/bin/update-version.d.ts +2 -0
- package/dist/bin/update-version.js +50 -0
- package/dist/bin/update-version.js.map +1 -0
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +21 -6
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@edifice.io/edifice-nestjs-core",
|
|
3
|
-
"version": "1.0.0-develop-pedago.
|
|
3
|
+
"version": "1.0.0-develop-pedago.20251204183503",
|
|
4
4
|
"description": "Core NestJS modules and utilities for Edifice applications",
|
|
5
5
|
"author": "Edifice",
|
|
6
6
|
"license": "AGPL-3.0",
|
|
@@ -9,7 +9,9 @@
|
|
|
9
9
|
"bin": {
|
|
10
10
|
"edifice-generate-entities": "./dist/bin/generate-entities.js",
|
|
11
11
|
"edifice-generate-metadata": "./dist/bin/generate-metadata.js",
|
|
12
|
-
"edifice-k6-sync-dto": "./dist/bin/k6-sync-dto.js"
|
|
12
|
+
"edifice-k6-sync-dto": "./dist/bin/k6-sync-dto.js",
|
|
13
|
+
"edifice-update-rn-version": "./dist/bin/update-rn-version.js",
|
|
14
|
+
"edifice-update-version": "./dist/bin/update-version.js"
|
|
13
15
|
},
|
|
14
16
|
"files": [
|
|
15
17
|
"dist",
|
|
@@ -71,6 +73,8 @@
|
|
|
71
73
|
"yaml": "2.8.1"
|
|
72
74
|
},
|
|
73
75
|
"devDependencies": {
|
|
76
|
+
"@commitlint/cli": "20.1.0",
|
|
77
|
+
"@commitlint/config-conventional": "20.0.0",
|
|
74
78
|
"@eslint/eslintrc": "3.3.1",
|
|
75
79
|
"@eslint/js": "9.35.0",
|
|
76
80
|
"@eslint/json": "0.14.0",
|
|
@@ -107,10 +111,18 @@
|
|
|
107
111
|
"ts-node": "10.9.2",
|
|
108
112
|
"tsconfig-paths": "4.2.0",
|
|
109
113
|
"typescript": "5.9.2",
|
|
110
|
-
"typescript-eslint": "8.43.0"
|
|
114
|
+
"typescript-eslint": "8.43.0",
|
|
115
|
+
"husky": "9.1.7",
|
|
116
|
+
"lint-staged": "16.2.4"
|
|
117
|
+
},
|
|
118
|
+
"lint-staged": {
|
|
119
|
+
"**/*.{js,ts}": [
|
|
120
|
+
"eslint --fix --no-warn-ignored"
|
|
121
|
+
],
|
|
122
|
+
"**/*": "prettier --write --ignore-unknown"
|
|
111
123
|
},
|
|
112
124
|
"engines": {
|
|
113
|
-
"node": ">=
|
|
125
|
+
"node": ">=20",
|
|
114
126
|
"pnpm": ">=8"
|
|
115
127
|
},
|
|
116
128
|
"publishConfig": {
|
|
@@ -121,8 +133,11 @@
|
|
|
121
133
|
"build": "pnpm run clean && tsc",
|
|
122
134
|
"clean": "rm -rf dist",
|
|
123
135
|
"format": "prettier --write \"src/**/*.ts\"",
|
|
124
|
-
"lint": "eslint \"src/**/*.ts\"
|
|
136
|
+
"lint": "eslint \"src/**/*.ts\"",
|
|
137
|
+
"lint:fix": "eslint \"src/**/*.ts\" --fix",
|
|
138
|
+
"pre-commit": "pnpm run format && pnpm run lint:fix && pnpm run build",
|
|
125
139
|
"publish:release": "pnpm publish -r --no-git-checks --tag $TAG_BRANCH",
|
|
126
|
-
"publish:dry": "pnpm publish -r --no-git-checks --tag $TAG_BRANCH --dry-run"
|
|
140
|
+
"publish:dry": "pnpm publish -r --no-git-checks --tag $TAG_BRANCH --dry-run",
|
|
141
|
+
"version:update": "node ./dist/bin/update-version.js"
|
|
127
142
|
}
|
|
128
143
|
}
|