@lowdefy/server 0.0.0-experimental-20260113090459 → 0.0.0-experimental-20260113102133
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/lowdefy/build.mjs +9 -1
- package/package.json +19 -19
- package/package.original.json +19 -19
package/lowdefy/build.mjs
CHANGED
|
@@ -59,4 +59,12 @@ async function run() {
|
|
|
59
59
|
});
|
|
60
60
|
}
|
|
61
61
|
|
|
62
|
-
run()
|
|
62
|
+
run().catch((error) => {
|
|
63
|
+
// If error is already formatted (from error collection), just show the message
|
|
64
|
+
if (error.isFormatted || error.hideStack) {
|
|
65
|
+
console.error(error.message);
|
|
66
|
+
process.exit(1);
|
|
67
|
+
}
|
|
68
|
+
// Otherwise, show full error with stack trace
|
|
69
|
+
throw error;
|
|
70
|
+
});
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lowdefy/server",
|
|
3
|
-
"version": "0.0.0-experimental-
|
|
3
|
+
"version": "0.0.0-experimental-20260113102133",
|
|
4
4
|
"license": "Apache-2.0",
|
|
5
5
|
"description": "",
|
|
6
6
|
"homepage": "https://lowdefy.com",
|
|
@@ -36,23 +36,23 @@
|
|
|
36
36
|
".npmrc"
|
|
37
37
|
],
|
|
38
38
|
"dependencies": {
|
|
39
|
-
"@lowdefy/actions-core": "0.0.0-experimental-
|
|
40
|
-
"@lowdefy/api": "0.0.0-experimental-
|
|
41
|
-
"@lowdefy/block-utils": "0.0.0-experimental-
|
|
42
|
-
"@lowdefy/blocks-antd": "0.0.0-experimental-
|
|
43
|
-
"@lowdefy/blocks-basic": "0.0.0-experimental-
|
|
44
|
-
"@lowdefy/blocks-loaders": "0.0.0-experimental-
|
|
45
|
-
"@lowdefy/blocks-markdown": "0.0.0-experimental-
|
|
46
|
-
"@lowdefy/client": "0.0.0-experimental-
|
|
47
|
-
"@lowdefy/connection-axios-http": "0.0.0-experimental-
|
|
48
|
-
"@lowdefy/connection-mongodb": "0.0.0-experimental-
|
|
49
|
-
"@lowdefy/helpers": "0.0.0-experimental-
|
|
50
|
-
"@lowdefy/layout": "0.0.0-experimental-
|
|
51
|
-
"@lowdefy/node-utils": "0.0.0-experimental-
|
|
52
|
-
"@lowdefy/operators-js": "0.0.0-experimental-
|
|
53
|
-
"@lowdefy/operators-nunjucks": "0.0.0-experimental-
|
|
54
|
-
"@lowdefy/operators-uuid": "0.0.0-experimental-
|
|
55
|
-
"@lowdefy/plugin-next-auth": "0.0.0-experimental-
|
|
39
|
+
"@lowdefy/actions-core": "0.0.0-experimental-20260113102133",
|
|
40
|
+
"@lowdefy/api": "0.0.0-experimental-20260113102133",
|
|
41
|
+
"@lowdefy/block-utils": "0.0.0-experimental-20260113102133",
|
|
42
|
+
"@lowdefy/blocks-antd": "0.0.0-experimental-20260113102133",
|
|
43
|
+
"@lowdefy/blocks-basic": "0.0.0-experimental-20260113102133",
|
|
44
|
+
"@lowdefy/blocks-loaders": "0.0.0-experimental-20260113102133",
|
|
45
|
+
"@lowdefy/blocks-markdown": "0.0.0-experimental-20260113102133",
|
|
46
|
+
"@lowdefy/client": "0.0.0-experimental-20260113102133",
|
|
47
|
+
"@lowdefy/connection-axios-http": "0.0.0-experimental-20260113102133",
|
|
48
|
+
"@lowdefy/connection-mongodb": "0.0.0-experimental-20260113102133",
|
|
49
|
+
"@lowdefy/helpers": "0.0.0-experimental-20260113102133",
|
|
50
|
+
"@lowdefy/layout": "0.0.0-experimental-20260113102133",
|
|
51
|
+
"@lowdefy/node-utils": "0.0.0-experimental-20260113102133",
|
|
52
|
+
"@lowdefy/operators-js": "0.0.0-experimental-20260113102133",
|
|
53
|
+
"@lowdefy/operators-nunjucks": "0.0.0-experimental-20260113102133",
|
|
54
|
+
"@lowdefy/operators-uuid": "0.0.0-experimental-20260113102133",
|
|
55
|
+
"@lowdefy/plugin-next-auth": "0.0.0-experimental-20260113102133",
|
|
56
56
|
"@sentry/nextjs": "8.53.0",
|
|
57
57
|
"uuid": "13.0.0",
|
|
58
58
|
"next": "13.5.4",
|
|
@@ -64,7 +64,7 @@
|
|
|
64
64
|
"react-icons": "4.12.0"
|
|
65
65
|
},
|
|
66
66
|
"devDependencies": {
|
|
67
|
-
"@lowdefy/build": "0.0.0-experimental-
|
|
67
|
+
"@lowdefy/build": "0.0.0-experimental-20260113102133",
|
|
68
68
|
"@next/eslint-plugin-next": "13.5.4",
|
|
69
69
|
"less": "4.2.0",
|
|
70
70
|
"less-loader": "11.1.3",
|
package/package.original.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lowdefy/server",
|
|
3
|
-
"version": "0.0.0-experimental-
|
|
3
|
+
"version": "0.0.0-experimental-20260113102133",
|
|
4
4
|
"license": "Apache-2.0",
|
|
5
5
|
"description": "",
|
|
6
6
|
"homepage": "https://lowdefy.com",
|
|
@@ -46,23 +46,23 @@
|
|
|
46
46
|
"prepublishOnly": "pnpm build"
|
|
47
47
|
},
|
|
48
48
|
"dependencies": {
|
|
49
|
-
"@lowdefy/actions-core": "0.0.0-experimental-
|
|
50
|
-
"@lowdefy/api": "0.0.0-experimental-
|
|
51
|
-
"@lowdefy/block-utils": "0.0.0-experimental-
|
|
52
|
-
"@lowdefy/blocks-antd": "0.0.0-experimental-
|
|
53
|
-
"@lowdefy/blocks-basic": "0.0.0-experimental-
|
|
54
|
-
"@lowdefy/blocks-loaders": "0.0.0-experimental-
|
|
55
|
-
"@lowdefy/blocks-markdown": "0.0.0-experimental-
|
|
56
|
-
"@lowdefy/client": "0.0.0-experimental-
|
|
57
|
-
"@lowdefy/connection-axios-http": "0.0.0-experimental-
|
|
58
|
-
"@lowdefy/connection-mongodb": "0.0.0-experimental-
|
|
59
|
-
"@lowdefy/helpers": "0.0.0-experimental-
|
|
60
|
-
"@lowdefy/layout": "0.0.0-experimental-
|
|
61
|
-
"@lowdefy/node-utils": "0.0.0-experimental-
|
|
62
|
-
"@lowdefy/operators-js": "0.0.0-experimental-
|
|
63
|
-
"@lowdefy/operators-nunjucks": "0.0.0-experimental-
|
|
64
|
-
"@lowdefy/operators-uuid": "0.0.0-experimental-
|
|
65
|
-
"@lowdefy/plugin-next-auth": "0.0.0-experimental-
|
|
49
|
+
"@lowdefy/actions-core": "0.0.0-experimental-20260113102133",
|
|
50
|
+
"@lowdefy/api": "0.0.0-experimental-20260113102133",
|
|
51
|
+
"@lowdefy/block-utils": "0.0.0-experimental-20260113102133",
|
|
52
|
+
"@lowdefy/blocks-antd": "0.0.0-experimental-20260113102133",
|
|
53
|
+
"@lowdefy/blocks-basic": "0.0.0-experimental-20260113102133",
|
|
54
|
+
"@lowdefy/blocks-loaders": "0.0.0-experimental-20260113102133",
|
|
55
|
+
"@lowdefy/blocks-markdown": "0.0.0-experimental-20260113102133",
|
|
56
|
+
"@lowdefy/client": "0.0.0-experimental-20260113102133",
|
|
57
|
+
"@lowdefy/connection-axios-http": "0.0.0-experimental-20260113102133",
|
|
58
|
+
"@lowdefy/connection-mongodb": "0.0.0-experimental-20260113102133",
|
|
59
|
+
"@lowdefy/helpers": "0.0.0-experimental-20260113102133",
|
|
60
|
+
"@lowdefy/layout": "0.0.0-experimental-20260113102133",
|
|
61
|
+
"@lowdefy/node-utils": "0.0.0-experimental-20260113102133",
|
|
62
|
+
"@lowdefy/operators-js": "0.0.0-experimental-20260113102133",
|
|
63
|
+
"@lowdefy/operators-nunjucks": "0.0.0-experimental-20260113102133",
|
|
64
|
+
"@lowdefy/operators-uuid": "0.0.0-experimental-20260113102133",
|
|
65
|
+
"@lowdefy/plugin-next-auth": "0.0.0-experimental-20260113102133",
|
|
66
66
|
"@sentry/nextjs": "8.53.0",
|
|
67
67
|
"uuid": "13.0.0",
|
|
68
68
|
"next": "13.5.4",
|
|
@@ -74,7 +74,7 @@
|
|
|
74
74
|
"react-icons": "4.12.0"
|
|
75
75
|
},
|
|
76
76
|
"devDependencies": {
|
|
77
|
-
"@lowdefy/build": "0.0.0-experimental-
|
|
77
|
+
"@lowdefy/build": "0.0.0-experimental-20260113102133",
|
|
78
78
|
"@next/eslint-plugin-next": "13.5.4",
|
|
79
79
|
"less": "4.2.0",
|
|
80
80
|
"less-loader": "11.1.3",
|