@kinevolution/appwrite-functions-shared-utils 0.1.2 → 0.1.3
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 -8
package/package.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"publishConfig": {
|
|
4
4
|
"access": "public"
|
|
5
5
|
},
|
|
6
|
-
"version": "0.1.
|
|
6
|
+
"version": "0.1.3",
|
|
7
7
|
"license": "ISC",
|
|
8
8
|
"author": "Nicolas Forêt <nicolas4@gmail.com>",
|
|
9
9
|
"description": "Shared utilities for Appwrite functions",
|
|
@@ -19,20 +19,20 @@
|
|
|
19
19
|
"dist"
|
|
20
20
|
],
|
|
21
21
|
"scripts": {
|
|
22
|
-
"
|
|
23
|
-
"build
|
|
22
|
+
"bat-update": "cd .. && shared-update.bat",
|
|
23
|
+
"build": "rmdir /S /Q dist && tsc -p tsconfig.json",
|
|
24
24
|
"bump-version": "npm run bump-version:patch",
|
|
25
25
|
"bump-version:major": "gulp bump-version --type=major",
|
|
26
26
|
"bump-version:minor": "gulp bump-version --type=minor",
|
|
27
27
|
"bump-version:patch": "gulp bump-version --type=patch",
|
|
28
|
-
"deploy": "npm run build
|
|
28
|
+
"deploy": "npm run build && npm run bump-version && npm publish --access public && npm run bat-update",
|
|
29
|
+
"npm-update": "rmdir /S /Q node_modules && del package-lock.json && ncu -u && npm i"
|
|
29
30
|
},
|
|
30
31
|
"devDependencies": {
|
|
31
|
-
"@types/node": "
|
|
32
|
-
"gulp": "
|
|
32
|
+
"@types/node": "24.10.0",
|
|
33
|
+
"gulp": "5.0.1",
|
|
33
34
|
"gulp-replace": "1.1.4",
|
|
34
35
|
"minimist": "1.2.8",
|
|
35
|
-
"
|
|
36
|
-
"typescript": "^5.4.5"
|
|
36
|
+
"typescript": "5.9.3"
|
|
37
37
|
}
|
|
38
38
|
}
|