@etsoo/appscript 1.6.46 → 1.6.48
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/.github/workflows/main.yml +3 -3
- package/lib/cjs/i18n/en.json +1 -0
- package/lib/cjs/i18n/zh-Hans.json +1 -0
- package/lib/cjs/i18n/zh-Hant.json +1 -0
- package/lib/mjs/i18n/en.json +1 -0
- package/lib/mjs/i18n/zh-Hans.json +1 -0
- package/lib/mjs/i18n/zh-Hant.json +1 -0
- package/package.json +5 -5
- package/src/i18n/en.json +1 -0
- package/src/i18n/zh-Hans.json +1 -0
- package/src/i18n/zh-Hant.json +1 -0
|
@@ -23,13 +23,13 @@ jobs:
|
|
|
23
23
|
steps:
|
|
24
24
|
# https://github.com/actions/checkout, This action checks-out your repository under $GITHUB_WORKSPACE
|
|
25
25
|
# so your workflow can access it.
|
|
26
|
-
- uses: actions/checkout@
|
|
26
|
+
- uses: actions/checkout@v5
|
|
27
27
|
|
|
28
28
|
# Set up your GitHub Actions workflow with a specific version of node.js
|
|
29
29
|
# Setup .npmrc file to publish to npm
|
|
30
|
-
- uses: actions/setup-node@
|
|
30
|
+
- uses: actions/setup-node@v6
|
|
31
31
|
with:
|
|
32
|
-
node-version: "
|
|
32
|
+
node-version: "24.11"
|
|
33
33
|
registry-url: "https://registry.npmjs.org"
|
|
34
34
|
|
|
35
35
|
# Named after Continuous Integration, installs dependencies directly from package-lock.json
|
package/lib/cjs/i18n/en.json
CHANGED
|
@@ -152,6 +152,7 @@
|
|
|
152
152
|
"passwordRepeatError": "The two passwords entered are inconsistent",
|
|
153
153
|
"passwordTip": "The password cannot be less than 6 characters and contains at least one letter and number",
|
|
154
154
|
"pdf": "PDF",
|
|
155
|
+
"phone": "Phone number",
|
|
155
156
|
"pinYin": "Pinyin Initials",
|
|
156
157
|
"previousStep": "Previous",
|
|
157
158
|
"print": "Print",
|
package/lib/mjs/i18n/en.json
CHANGED
|
@@ -152,6 +152,7 @@
|
|
|
152
152
|
"passwordRepeatError": "The two passwords entered are inconsistent",
|
|
153
153
|
"passwordTip": "The password cannot be less than 6 characters and contains at least one letter and number",
|
|
154
154
|
"pdf": "PDF",
|
|
155
|
+
"phone": "Phone number",
|
|
155
156
|
"pinYin": "Pinyin Initials",
|
|
156
157
|
"previousStep": "Previous",
|
|
157
158
|
"print": "Print",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@etsoo/appscript",
|
|
3
|
-
"version": "1.6.
|
|
3
|
+
"version": "1.6.48",
|
|
4
4
|
"description": "Applications shared TypeScript framework",
|
|
5
5
|
"main": "lib/cjs/index.js",
|
|
6
6
|
"module": "lib/mjs/index.js",
|
|
@@ -35,9 +35,9 @@
|
|
|
35
35
|
},
|
|
36
36
|
"homepage": "https://github.com/ETSOO/AppScript#readme",
|
|
37
37
|
"dependencies": {
|
|
38
|
-
"@etsoo/notificationbase": "^1.1.
|
|
39
|
-
"@etsoo/restclient": "^1.1.
|
|
40
|
-
"@etsoo/shared": "^1.2.
|
|
38
|
+
"@etsoo/notificationbase": "^1.1.66",
|
|
39
|
+
"@etsoo/restclient": "^1.1.33",
|
|
40
|
+
"@etsoo/shared": "^1.2.79",
|
|
41
41
|
"crypto-js": "^4.2.0"
|
|
42
42
|
},
|
|
43
43
|
"devDependencies": {
|
|
@@ -50,6 +50,6 @@
|
|
|
50
50
|
"@vitejs/plugin-react": "^5.1.0",
|
|
51
51
|
"jsdom": "^27.1.0",
|
|
52
52
|
"typescript": "^5.9.3",
|
|
53
|
-
"vitest": "^4.0.
|
|
53
|
+
"vitest": "^4.0.8"
|
|
54
54
|
}
|
|
55
55
|
}
|
package/src/i18n/en.json
CHANGED
|
@@ -152,6 +152,7 @@
|
|
|
152
152
|
"passwordRepeatError": "The two passwords entered are inconsistent",
|
|
153
153
|
"passwordTip": "The password cannot be less than 6 characters and contains at least one letter and number",
|
|
154
154
|
"pdf": "PDF",
|
|
155
|
+
"phone": "Phone number",
|
|
155
156
|
"pinYin": "Pinyin Initials",
|
|
156
157
|
"previousStep": "Previous",
|
|
157
158
|
"print": "Print",
|
package/src/i18n/zh-Hans.json
CHANGED