echadospalante-core 5.0.0 → 5.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/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "echadospalante-core",
|
3
|
-
"version": "5.0.
|
3
|
+
"version": "5.0.2",
|
4
4
|
"description": "This package contains the core of the echadospalante project, it contains the domain entities, helpers, and other utilities that are shared between the different services.",
|
5
5
|
"main": "dist/index.js",
|
6
6
|
"private": false,
|
@@ -9,6 +9,9 @@
|
|
9
9
|
"dev": "concurrently \"tsc --watch\" \"node dist/src/index.js --watch\"",
|
10
10
|
"start": "tsc && node dist/src/index.js",
|
11
11
|
"build": "tsc",
|
12
|
+
"publish:patch": "npm version patch && npm run release",
|
13
|
+
"publish:minor": "npm version minor && npm run release",
|
14
|
+
"publish:major": "npm version major && npm run release",
|
12
15
|
"release": "npm run build && npm publish"
|
13
16
|
},
|
14
17
|
"author": "Juan Camilo Cardona Calderón, Maria Carolina Cardona Calderón",
|
package/src/index.ts
CHANGED