@wipperoz/common-entities-account 1.8.5 → 1.9.0
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/package.json +8 -7
package/package.json
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wipperoz/common-entities-account",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.9.0",
|
|
4
4
|
"description": "Wipperoz common entities account package",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
7
7
|
"engines": {
|
|
8
|
-
"node": ">=
|
|
8
|
+
"node": ">=24"
|
|
9
9
|
},
|
|
10
10
|
"author": "Diego Santana <dsantana@wipperoz.com>",
|
|
11
11
|
"license": "MIT",
|
|
12
|
-
"packageManager": "yarn@4.
|
|
12
|
+
"packageManager": "yarn@4.14.1",
|
|
13
13
|
"scripts": {
|
|
14
14
|
"cz": "git-cz",
|
|
15
15
|
"clean": "node bin/run-clean.mjs dist reports",
|
|
@@ -46,13 +46,13 @@
|
|
|
46
46
|
},
|
|
47
47
|
"homepage": "https://github.com/wipperoz/common-entities-account",
|
|
48
48
|
"dependencies": {
|
|
49
|
-
"@wipperoz/common-entities": "^1.10.
|
|
49
|
+
"@wipperoz/common-entities": "^1.10.5"
|
|
50
50
|
},
|
|
51
51
|
"devDependencies": {
|
|
52
52
|
"@commitlint/cli": "^19.5.0",
|
|
53
53
|
"@commitlint/config-conventional": "^19.5.0",
|
|
54
54
|
"@eslint/js": "^9.10.0",
|
|
55
|
-
"@semantic-release/exec": "^
|
|
55
|
+
"@semantic-release/exec": "^7.1.0",
|
|
56
56
|
"@tsconfig/node20": "^20.1.4",
|
|
57
57
|
"@types/jest": "^29.5.13",
|
|
58
58
|
"@types/node": "^22.5.4",
|
|
@@ -75,7 +75,7 @@
|
|
|
75
75
|
"jest-junit": "^16.0.0",
|
|
76
76
|
"json-schema-to-ts": "^3.1.1",
|
|
77
77
|
"prettier": "^3.3.3",
|
|
78
|
-
"semantic-release": "^
|
|
78
|
+
"semantic-release": "^25.0.3",
|
|
79
79
|
"ts-jest": "^29.2.5",
|
|
80
80
|
"ts-node": "^9.1.1",
|
|
81
81
|
"tsconfig-paths": "^4.2.0",
|
|
@@ -178,10 +178,11 @@
|
|
|
178
178
|
}
|
|
179
179
|
}
|
|
180
180
|
],
|
|
181
|
-
"@semantic-release/npm",
|
|
182
181
|
[
|
|
183
182
|
"@semantic-release/exec",
|
|
184
183
|
{
|
|
184
|
+
"prepareCmd": "npm version ${nextRelease.version} --no-git-tag-version --allow-same-version",
|
|
185
|
+
"publishCmd": "bash .circleci/npm-publish.sh",
|
|
185
186
|
"successCmd": "node .circleci/notify-orchestrator.mjs \"${nextRelease.version}\" \"${branch.name}\""
|
|
186
187
|
}
|
|
187
188
|
]
|