@appsemble/cli 0.35.16 → 0.35.18
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/README.md
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
#  Appsemble CLI
|
|
2
2
|
|
|
3
3
|
> Manage apps and blocks from the command line.
|
|
4
4
|
|
|
5
5
|
[](https://www.npmjs.com/package/@appsemble/cli)
|
|
6
|
-
[](https://gitlab.com/appsemble/appsemble/-/releases/0.35.18)
|
|
7
7
|
[](https://prettier.io)
|
|
8
8
|
|
|
9
9
|
## Table of Contents
|
|
@@ -323,5 +323,5 @@ appsemble run-cronjobs --interval 30
|
|
|
323
323
|
|
|
324
324
|
## License
|
|
325
325
|
|
|
326
|
-
[LGPL-3.0-only](https://gitlab.com/appsemble/appsemble/-/blob/0.35.
|
|
326
|
+
[LGPL-3.0-only](https://gitlab.com/appsemble/appsemble/-/blob/0.35.18/LICENSE.md) ©
|
|
327
327
|
[Appsemble](https://appsemble.com)
|
package/lib/app.js
CHANGED
|
@@ -669,6 +669,10 @@ export async function writeAppMessages(path, languages, verify, format) {
|
|
|
669
669
|
const appMessagePrefixes = Object.keys(newAppMessages);
|
|
670
670
|
for (const [key, message] of Object.entries(oldMessages.app ?? {})) {
|
|
671
671
|
const match = /^(pages\.[\dA-Za-z-]+(\..+)?)\.blocks\.\d+.+/.exec(key);
|
|
672
|
+
const emailMatch = /emails\.(appInvite|appMemberEmailChange|emailAdded|groupInvite|resend|reset|welcome)\.(body|subject)/.test(key);
|
|
673
|
+
if (emailMatch) {
|
|
674
|
+
newAppMessages[key] = message;
|
|
675
|
+
}
|
|
672
676
|
if (!match) {
|
|
673
677
|
continue;
|
|
674
678
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@appsemble/cli",
|
|
3
|
-
"version": "0.35.
|
|
3
|
+
"version": "0.35.18",
|
|
4
4
|
"description": "The CLI for developing with Appsemble apps and blocks",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"app",
|
|
@@ -44,10 +44,10 @@
|
|
|
44
44
|
"test": "vitest"
|
|
45
45
|
},
|
|
46
46
|
"dependencies": {
|
|
47
|
-
"@appsemble/node-utils": "0.35.
|
|
48
|
-
"@appsemble/types": "0.35.
|
|
49
|
-
"@appsemble/lang-sdk": "0.35.
|
|
50
|
-
"@appsemble/utils": "0.35.
|
|
47
|
+
"@appsemble/node-utils": "0.35.18",
|
|
48
|
+
"@appsemble/types": "0.35.18",
|
|
49
|
+
"@appsemble/lang-sdk": "0.35.18",
|
|
50
|
+
"@appsemble/utils": "0.35.18",
|
|
51
51
|
"@fortawesome/fontawesome-common-types": "^6.0.0",
|
|
52
52
|
"@koa/cors": "^5.0.0",
|
|
53
53
|
"@odata/parser": "^0.2.0",
|
|
@@ -56,7 +56,7 @@
|
|
|
56
56
|
"comment-parser": "^1.0.0",
|
|
57
57
|
"cosmiconfig": "^7.0.0",
|
|
58
58
|
"csvtojson": "^2.0.0",
|
|
59
|
-
"esbuild": "^0.
|
|
59
|
+
"esbuild": "^0.26.0",
|
|
60
60
|
"fast-glob": "^3.0.0",
|
|
61
61
|
"form-data": "^4.0.4",
|
|
62
62
|
"global-cache-dir": "^6.0.0",
|
|
@@ -90,8 +90,8 @@
|
|
|
90
90
|
"yargs": "^17.0.0"
|
|
91
91
|
},
|
|
92
92
|
"devDependencies": {
|
|
93
|
-
"@appsemble/types": "0.35.
|
|
94
|
-
"@appsemble/server": "0.35.
|
|
93
|
+
"@appsemble/types": "0.35.18",
|
|
94
|
+
"@appsemble/server": "0.35.18",
|
|
95
95
|
"bcrypt": "5.1.1",
|
|
96
96
|
"axios-test-instance": "7.0.0",
|
|
97
97
|
"@types/concat-stream": "2.0.3",
|
|
@@ -6,7 +6,7 @@ pages:
|
|
|
6
6
|
- name: Example Page A
|
|
7
7
|
blocks:
|
|
8
8
|
- type: action-button
|
|
9
|
-
version: 0.35.
|
|
9
|
+
version: 0.35.18
|
|
10
10
|
parameters:
|
|
11
11
|
icon: arrow-right
|
|
12
12
|
actions:
|
|
@@ -17,7 +17,7 @@ pages:
|
|
|
17
17
|
- name: Example Page B
|
|
18
18
|
blocks:
|
|
19
19
|
- type: action-button
|
|
20
|
-
version: 0.35.
|
|
20
|
+
version: 0.35.18
|
|
21
21
|
parameters:
|
|
22
22
|
icon: arrow-left
|
|
23
23
|
actions:
|