@seidor-cloud-produtos/tax-core 0.0.111 → 1.0.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 +9 -3
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@seidor-cloud-produtos/tax-core",
|
|
3
|
-
"version": "0.0
|
|
3
|
+
"version": "1.0.0",
|
|
4
4
|
"description": "Biblioteca para acelerar a geração de arquivos fiscais",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"fiscal",
|
|
@@ -45,8 +45,14 @@
|
|
|
45
45
|
"build": "export NODE_OPTIONS='--openssl-legacy-provider --max-old-space-size=4096' && tsup",
|
|
46
46
|
"copy:json": "cp lib/masterData/infra/db/*.json dist/masterData/infra/db/",
|
|
47
47
|
"npm:prepare": "npm install --package-lock-only && npm run lint:prettier:fix && npm test && npm run build",
|
|
48
|
-
"npm:bump": "npm run npm:prepare && npm version patch --no-git-tag-version",
|
|
49
|
-
"npm:
|
|
48
|
+
"npm:bump:patch": "npm run npm:prepare && npm version patch --no-git-tag-version",
|
|
49
|
+
"npm:bump:minor": "npm run npm:prepare && npm version minor --no-git-tag-version",
|
|
50
|
+
"npm:bump:major": "npm run npm:prepare && npm version major --no-git-tag-version",
|
|
51
|
+
"npm:publish": "npm publish && npm run git:new_version",
|
|
52
|
+
"npm:publish:fix": "npm run npm:bump:patch && npm run npm:publish",
|
|
53
|
+
"npm:publish:feat": "npm run npm:bump:minor && npm npm run npm:publish",
|
|
54
|
+
"npm:publish:major": "npm run npm:bump:major && npm run npm:publish",
|
|
55
|
+
"npm:publish:rc": "npm run npm:prepare && npm version prerelease --preid rc --no-git-tag-version && npm publish --tag rc",
|
|
50
56
|
"git:new_version": "git add package* && git commit -m \"chore: upgrade lib version to $(npm show ./ version)\"",
|
|
51
57
|
"test:cmd": "node --import tsx --test",
|
|
52
58
|
"test:cmd:c": "node --import tsx --test --experimental-test-coverage",
|