@lowdefy/server 4.0.0-rc.0 → 4.0.0-rc.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/lib/Page.js +1 -1
- package/lib/auth/Auth.js +1 -1
- package/lib/auth/AuthConfigured.js +1 -1
- package/lib/auth/AuthNotConfigured.js +1 -1
- package/lib/auth/getServerSession.js +1 -1
- package/lib/fileCache.js +1 -1
- package/lowdefy/build.mjs +1 -1
- package/lowdefy/createCustomPluginTypesMap.mjs +1 -1
- package/next.config.js +1 -6
- package/package.json +23 -21
- package/package.original.json +80 -0
- package/pages/404.js +1 -1
- package/pages/[pageId].js +1 -1
- package/pages/_app.js +1 -1
- package/pages/_document.js +1 -1
- package/pages/api/auth/[...nextauth].js +1 -1
- package/pages/api/request/[pageId]/[requestId].js +1 -1
- package/pages/index.js +1 -1
- package/public/apple-touch-icon.png +0 -0
- package/public/favicon.ico +0 -0
- package/public/icon-512.png +0 -0
- package/public/icon.svg +0 -17
- package/public/logo-dark-theme.png +0 -0
- package/public/logo-light-theme.png +0 -0
- package/public/logo-square-dark-theme.png +0 -0
- package/public/logo-square-light-theme.png +0 -0
- package/public/manifest.webmanifest +0 -16
package/lib/Page.js
CHANGED
package/lib/auth/Auth.js
CHANGED
package/lib/fileCache.js
CHANGED
package/lowdefy/build.mjs
CHANGED
package/next.config.js
CHANGED
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
const withLess = require('next-with-less');
|
|
2
2
|
const lowdefyConfig = require('./build/config.json');
|
|
3
3
|
|
|
4
|
-
// TODO: Trace env and args from cli that is required on the server.
|
|
5
4
|
module.exports = withLess({
|
|
6
5
|
basePath: process.env.LOWDEFY_BASE_PATH || lowdefyConfig.basePath,
|
|
7
6
|
reactStrictMode: true,
|
|
@@ -22,11 +21,7 @@ module.exports = withLess({
|
|
|
22
21
|
},
|
|
23
22
|
poweredByHeader: false,
|
|
24
23
|
// productionBrowserSourceMaps: true
|
|
25
|
-
|
|
26
|
-
// TODO: Convert from experimental.outputStandalone to output: 'standalone' when upgrading to Next 13
|
|
27
|
-
outputStandalone: process.env.LOWDEFY_BUILD_OUTPUT_STANDALONE === '1' || false,
|
|
28
|
-
// concurrentFeatures: true,
|
|
29
|
-
},
|
|
24
|
+
output: process.env.LOWDEFY_BUILD_OUTPUT_STANDALONE === '1' ? 'standalone' : undefined,
|
|
30
25
|
outputFileTracing: true,
|
|
31
26
|
eslint: {
|
|
32
27
|
ignoreDuringBuilds: true,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lowdefy/server",
|
|
3
|
-
"version": "4.0.0-rc.
|
|
3
|
+
"version": "4.0.0-rc.1",
|
|
4
4
|
"license": "Apache-2.0",
|
|
5
5
|
"description": "",
|
|
6
6
|
"homepage": "https://lowdefy.com",
|
|
@@ -31,10 +31,12 @@
|
|
|
31
31
|
"pages/*",
|
|
32
32
|
"public/*",
|
|
33
33
|
"next.config.js",
|
|
34
|
+
"package.original.json",
|
|
34
35
|
".eslintrc.yaml",
|
|
35
36
|
".npmrc"
|
|
36
37
|
],
|
|
37
38
|
"scripts": {
|
|
39
|
+
"build": "cp package.json package.original.json || copy package.json package.original.json",
|
|
38
40
|
"build:lowdefy": "node lowdefy/build.mjs",
|
|
39
41
|
"build:next": "next build",
|
|
40
42
|
"dev": "next dev",
|
|
@@ -43,37 +45,37 @@
|
|
|
43
45
|
"next": "next"
|
|
44
46
|
},
|
|
45
47
|
"dependencies": {
|
|
46
|
-
"@lowdefy/actions-core": "4.0.0-rc.
|
|
47
|
-
"@lowdefy/api": "4.0.0-rc.
|
|
48
|
-
"@lowdefy/blocks-antd": "4.0.0-rc.
|
|
49
|
-
"@lowdefy/blocks-basic": "4.0.0-rc.
|
|
50
|
-
"@lowdefy/blocks-loaders": "4.0.0-rc.
|
|
51
|
-
"@lowdefy/client": "4.0.0-rc.
|
|
52
|
-
"@lowdefy/helpers": "4.0.0-rc.
|
|
53
|
-
"@lowdefy/layout": "4.0.0-rc.
|
|
54
|
-
"@lowdefy/node-utils": "4.0.0-rc.
|
|
55
|
-
"@lowdefy/operators-js": "4.0.0-rc.
|
|
56
|
-
"@lowdefy/plugin-next-auth": "4.0.0-rc.
|
|
48
|
+
"@lowdefy/actions-core": "4.0.0-rc.1",
|
|
49
|
+
"@lowdefy/api": "4.0.0-rc.1",
|
|
50
|
+
"@lowdefy/blocks-antd": "4.0.0-rc.1",
|
|
51
|
+
"@lowdefy/blocks-basic": "4.0.0-rc.1",
|
|
52
|
+
"@lowdefy/blocks-loaders": "4.0.0-rc.1",
|
|
53
|
+
"@lowdefy/client": "4.0.0-rc.1",
|
|
54
|
+
"@lowdefy/helpers": "4.0.0-rc.1",
|
|
55
|
+
"@lowdefy/layout": "4.0.0-rc.1",
|
|
56
|
+
"@lowdefy/node-utils": "4.0.0-rc.1",
|
|
57
|
+
"@lowdefy/operators-js": "4.0.0-rc.1",
|
|
58
|
+
"@lowdefy/plugin-next-auth": "4.0.0-rc.1",
|
|
57
59
|
"next": "12.3.1",
|
|
58
|
-
"next-auth": "4.
|
|
60
|
+
"next-auth": "4.18.8",
|
|
59
61
|
"process": "0.11.10",
|
|
60
62
|
"react": "18.2.0",
|
|
61
63
|
"react-dom": "18.2.0",
|
|
62
|
-
"react-icons": "4.
|
|
64
|
+
"react-icons": "4.7.1"
|
|
63
65
|
},
|
|
64
66
|
"devDependencies": {
|
|
65
|
-
"@lowdefy/build": "4.0.0-rc.
|
|
67
|
+
"@lowdefy/build": "4.0.0-rc.1",
|
|
66
68
|
"@next/eslint-plugin-next": "12.1.6",
|
|
67
|
-
"less": "4.1.
|
|
68
|
-
"less-loader": "11.
|
|
69
|
+
"less": "4.1.3",
|
|
70
|
+
"less-loader": "11.1.0",
|
|
69
71
|
"next-with-less": "2.0.5",
|
|
70
|
-
"webpack": "5.
|
|
71
|
-
"yaml": "2.
|
|
72
|
-
"yargs": "17.
|
|
72
|
+
"webpack": "5.75.0",
|
|
73
|
+
"yaml": "2.2.1",
|
|
74
|
+
"yargs": "17.6.2"
|
|
73
75
|
},
|
|
74
76
|
"packageManager": "pnpm@7.11.0",
|
|
75
77
|
"publishConfig": {
|
|
76
78
|
"access": "public"
|
|
77
79
|
},
|
|
78
|
-
"gitHead": "
|
|
80
|
+
"gitHead": "ecc4f16c19eede929eda177db524cf13a8053379"
|
|
79
81
|
}
|
|
@@ -0,0 +1,80 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@lowdefy/server",
|
|
3
|
+
"version": "4.0.0-rc.1",
|
|
4
|
+
"license": "Apache-2.0",
|
|
5
|
+
"description": "",
|
|
6
|
+
"homepage": "https://lowdefy.com",
|
|
7
|
+
"keywords": [
|
|
8
|
+
"lowdefy",
|
|
9
|
+
"server"
|
|
10
|
+
],
|
|
11
|
+
"bugs": {
|
|
12
|
+
"url": "https://github.com/lowdefy/lowdefy/issues"
|
|
13
|
+
},
|
|
14
|
+
"contributors": [
|
|
15
|
+
{
|
|
16
|
+
"name": "Sam Tolmay",
|
|
17
|
+
"url": "https://github.com/SamTolmay"
|
|
18
|
+
},
|
|
19
|
+
{
|
|
20
|
+
"name": "Gerrie van Wyk",
|
|
21
|
+
"url": "https://github.com/Gervwyk"
|
|
22
|
+
}
|
|
23
|
+
],
|
|
24
|
+
"repository": {
|
|
25
|
+
"type": "git",
|
|
26
|
+
"url": "https://github.com/lowdefy/lowdefy.git"
|
|
27
|
+
},
|
|
28
|
+
"files": [
|
|
29
|
+
"lib/*",
|
|
30
|
+
"lowdefy/*",
|
|
31
|
+
"pages/*",
|
|
32
|
+
"public/*",
|
|
33
|
+
"next.config.js",
|
|
34
|
+
"package.original.json",
|
|
35
|
+
".eslintrc.yaml",
|
|
36
|
+
".npmrc"
|
|
37
|
+
],
|
|
38
|
+
"scripts": {
|
|
39
|
+
"build": "cp package.json package.original.json || copy package.json package.original.json",
|
|
40
|
+
"build:lowdefy": "node lowdefy/build.mjs",
|
|
41
|
+
"build:next": "next build",
|
|
42
|
+
"dev": "next dev",
|
|
43
|
+
"start": "next start",
|
|
44
|
+
"lint": "next lint",
|
|
45
|
+
"next": "next"
|
|
46
|
+
},
|
|
47
|
+
"dependencies": {
|
|
48
|
+
"@lowdefy/actions-core": "4.0.0-rc.1",
|
|
49
|
+
"@lowdefy/api": "4.0.0-rc.1",
|
|
50
|
+
"@lowdefy/blocks-antd": "4.0.0-rc.1",
|
|
51
|
+
"@lowdefy/blocks-basic": "4.0.0-rc.1",
|
|
52
|
+
"@lowdefy/blocks-loaders": "4.0.0-rc.1",
|
|
53
|
+
"@lowdefy/client": "4.0.0-rc.1",
|
|
54
|
+
"@lowdefy/helpers": "4.0.0-rc.1",
|
|
55
|
+
"@lowdefy/layout": "4.0.0-rc.1",
|
|
56
|
+
"@lowdefy/node-utils": "4.0.0-rc.1",
|
|
57
|
+
"@lowdefy/operators-js": "4.0.0-rc.1",
|
|
58
|
+
"@lowdefy/plugin-next-auth": "4.0.0-rc.1",
|
|
59
|
+
"next": "12.3.1",
|
|
60
|
+
"next-auth": "4.18.8",
|
|
61
|
+
"process": "0.11.10",
|
|
62
|
+
"react": "18.2.0",
|
|
63
|
+
"react-dom": "18.2.0",
|
|
64
|
+
"react-icons": "4.7.1"
|
|
65
|
+
},
|
|
66
|
+
"devDependencies": {
|
|
67
|
+
"@lowdefy/build": "4.0.0-rc.1",
|
|
68
|
+
"@next/eslint-plugin-next": "12.1.6",
|
|
69
|
+
"less": "4.1.3",
|
|
70
|
+
"less-loader": "11.1.0",
|
|
71
|
+
"next-with-less": "2.0.5",
|
|
72
|
+
"webpack": "5.75.0",
|
|
73
|
+
"yaml": "2.2.1",
|
|
74
|
+
"yargs": "17.6.2"
|
|
75
|
+
},
|
|
76
|
+
"packageManager": "pnpm@7.11.0",
|
|
77
|
+
"publishConfig": {
|
|
78
|
+
"access": "public"
|
|
79
|
+
}
|
|
80
|
+
}
|
package/pages/404.js
CHANGED
package/pages/[pageId].js
CHANGED
package/pages/_app.js
CHANGED
package/pages/_document.js
CHANGED
package/pages/index.js
CHANGED
|
Binary file
|
package/public/favicon.ico
DELETED
|
Binary file
|
package/public/icon-512.png
DELETED
|
Binary file
|
package/public/icon.svg
DELETED
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
2
|
-
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
|
3
|
-
<svg width="100%" height="100%" viewBox="0 0 94 94" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xml:space="preserve" xmlns:serif="http://www.serif.com/" style="fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2;">
|
|
4
|
-
<g transform="matrix(1,0,0,1,-979.672,-59.6924)">
|
|
5
|
-
<g transform="matrix(1,0,0,1.03297,-38.3284,-294.615)">
|
|
6
|
-
<g transform="matrix(1,0,0,1,952,232)">
|
|
7
|
-
<path d="M160,129.634C160,119.35 151.375,111 140.751,111L85.249,111C74.625,111 66,119.35 66,129.634L66,183.366C66,193.65 74.625,202 85.249,202L140.751,202C151.375,202 160,193.65 160,183.366L160,129.634Z"/>
|
|
8
|
-
</g>
|
|
9
|
-
<g transform="matrix(0.872141,0,0,1,1002.6,346)">
|
|
10
|
-
<rect x="36" y="12" width="36" height="59" style="fill:white;"/>
|
|
11
|
-
</g>
|
|
12
|
-
<g transform="matrix(0.78125,0,0,0.862069,1010.84,356.663)">
|
|
13
|
-
<rect x="77" y="41" width="32" height="29" style="fill:rgb(24,144,255);"/>
|
|
14
|
-
</g>
|
|
15
|
-
</g>
|
|
16
|
-
</g>
|
|
17
|
-
</svg>
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -1,16 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"short_name": "Lowdefy App",
|
|
3
|
-
"name": "Lowdefy App",
|
|
4
|
-
"description": "Lowdefy App",
|
|
5
|
-
"icons": [
|
|
6
|
-
{
|
|
7
|
-
"src": "/public/icon-512.png",
|
|
8
|
-
"type": "image/png",
|
|
9
|
-
"sizes": "512x512"
|
|
10
|
-
}
|
|
11
|
-
],
|
|
12
|
-
"start_url": "/",
|
|
13
|
-
"background_color": "#FFFFFF",
|
|
14
|
-
"display": "browser",
|
|
15
|
-
"scope": "/"
|
|
16
|
-
}
|