shared-dto 1.0.0 → 1.0.1
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 +10 -5
package/package.json
CHANGED
|
@@ -1,12 +1,17 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "shared-dto",
|
|
3
|
-
"version": "1.0.
|
|
4
|
-
"main": "dist/index.js",
|
|
5
|
-
"types": "dist/index.d.ts",
|
|
3
|
+
"version": "1.0.1",
|
|
4
|
+
"main": "dist/index.js",
|
|
5
|
+
"types": "dist/index.d.ts",
|
|
6
6
|
"scripts": {
|
|
7
|
-
"build": "tsc"
|
|
7
|
+
"build": "tsc",
|
|
8
|
+
"version-bump": "npm version patch",
|
|
9
|
+
"publish-lib": "npm publish --access public",
|
|
10
|
+
"update-frontend": "cd ../front_end && npm install shared-dto@latest",
|
|
11
|
+
"update-backend": "cd ../back_end && npm install shared-dto@latest",
|
|
12
|
+
"update-all": "npm run build && npm run version-bump && npm run publish-lib && npm run update-frontend && npm run update-backend"
|
|
8
13
|
},
|
|
9
14
|
"devDependencies": {
|
|
10
|
-
"typescript": "^5.6.2"
|
|
15
|
+
"typescript": "^5.6.2"
|
|
11
16
|
}
|
|
12
17
|
}
|