@lowdefy/build 3.23.3 → 4.0.0-alpha.11
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/dist/build/addDefaultPages/404.js +51 -0
- package/dist/build/addDefaultPages/addDefaultPages.js +44 -0
- package/dist/build/buildAuth/buildAuth.js +31 -0
- package/dist/build/buildAuth/buildAuthPlugins.js +78 -0
- package/dist/build/buildAuth/buildPageAuth.js +50 -0
- package/dist/build/buildAuth/getPageRoles.js +33 -0
- package/dist/build/buildAuth/getProtectedPages.js +30 -0
- package/dist/build/buildAuth/validateAuthConfig.js +61 -0
- package/dist/build/buildConnections.js +46 -0
- package/dist/build/buildImports/buildIconImports.js +92 -0
- package/dist/build/buildImports/buildImports.js +30 -0
- package/dist/build/buildImports/buildImportsDev.js +101 -0
- package/dist/build/buildImports/buildImportsProd.js +52 -0
- package/dist/build/buildImports/buildStyleImports.js +28 -0
- package/dist/build/buildMenu.js +122 -0
- package/dist/build/buildPages/buildBlock/buildBlock.js +35 -0
- package/dist/build/buildPages/buildBlock/buildEvents.js +75 -0
- package/dist/build/buildPages/buildBlock/buildRequests.js +51 -0
- package/dist/build/buildPages/buildBlock/buildSubBlocks.js +35 -0
- package/dist/build/buildPages/buildBlock/countBlockOperators.js +31 -0
- package/dist/build/buildPages/buildBlock/countBlockTypes.js +18 -0
- package/dist/build/buildPages/buildBlock/moveSkeletonBlocksToArea.js +35 -0
- package/dist/build/buildPages/buildBlock/moveSubBlocksToArea.js +25 -0
- package/dist/build/buildPages/buildBlock/setBlockId.js +20 -0
- package/dist/build/buildPages/buildBlock/validateBlock.js +38 -0
- package/dist/build/buildPages/buildPage.js +50 -0
- package/dist/build/buildPages/buildPages.js +33 -0
- package/dist/build/buildRefs/buildRefs.js +26 -0
- package/dist/build/buildRefs/evaluateBuildOperators.js +35 -0
- package/dist/build/buildRefs/getConfigFile.js +28 -0
- package/dist/build/buildRefs/getRefContent.js +44 -0
- package/dist/build/buildRefs/getRefPath.js +30 -0
- package/dist/build/buildRefs/getRefsFromFile.js +37 -0
- package/dist/build/buildRefs/getUserJavascriptFunction.js +24 -0
- package/dist/build/buildRefs/makeRefDefinition.js +30 -0
- package/dist/build/buildRefs/parseNunjucks.js +20 -0
- package/dist/build/buildRefs/parseRefContent.js +37 -0
- package/dist/build/buildRefs/populateRefs.js +43 -0
- package/dist/build/buildRefs/recursiveBuild.js +68 -0
- package/dist/build/buildRefs/runRefResolver.js +33 -0
- package/dist/build/buildRefs/runTransformer.js +30 -0
- package/dist/build/buildTypes.js +119 -0
- package/dist/build/cleanBuildDirectory.js +19 -0
- package/dist/build/copyPublicFolder.js +23 -0
- package/dist/build/testSchema.js +33 -0
- package/dist/build/updateServerPackageJson.js +49 -0
- package/dist/build/validateApp.js +34 -0
- package/dist/build/validateConfig.js +33 -0
- package/dist/build/writeApp.js +18 -0
- package/dist/build/writeAuth.js +18 -0
- package/dist/build/writeConfig.js +18 -0
- package/dist/build/writeConnections.js +26 -0
- package/dist/build/writeGlobal.js +25 -0
- package/dist/build/writeMenus.js +22 -0
- package/dist/build/writePages.js +26 -0
- package/dist/build/writePluginImports/generateImportFile.js +31 -0
- package/dist/build/writePluginImports/writeActionImports.js +22 -0
- package/dist/build/writePluginImports/writeAuthImports.js +30 -0
- package/dist/build/writePluginImports/writeBlockImports.js +22 -0
- package/dist/build/writePluginImports/writeConnectionImports.js +22 -0
- package/dist/build/writePluginImports/writeIconImports.js +31 -0
- package/dist/build/writePluginImports/writeOperatorImports.js +26 -0
- package/dist/build/writePluginImports/writePluginImports.js +52 -0
- package/dist/build/writePluginImports/writeStyleImports.js +28 -0
- package/dist/build/writeRequests.js +32 -0
- package/dist/build/writeTypes.js +18 -0
- package/dist/defaultTypesMap.json +1874 -0
- package/dist/index.js +179 -1
- package/dist/lowdefySchema.js +793 -0
- package/dist/scripts/generateDefaultTypes.js +78 -0
- package/dist/scripts/run.js +33 -0
- package/dist/test/buildRefs/testBuildRefsAsyncFunction.js +22 -0
- package/dist/test/buildRefs/testBuildRefsErrorResolver.js +18 -0
- package/dist/test/buildRefs/testBuildRefsNullResolver.js +19 -0
- package/dist/test/buildRefs/testBuildRefsParsingResolver.js +39 -0
- package/dist/test/buildRefs/testBuildRefsResolver.js +23 -0
- package/dist/test/buildRefs/testBuildRefsTransform.js +25 -0
- package/dist/test/buildRefs/testBuildRefsTransformIdentity.js +21 -0
- package/dist/test/testContext.js +48 -0
- package/dist/utils/countOperators.js +30 -0
- package/dist/utils/createCheckDuplicateId.js +31 -0
- package/dist/utils/createCounter.js +33 -0
- package/dist/utils/createPluginTypesMap.js +106 -0
- package/dist/utils/formatErrorMessage.js +56 -0
- package/dist/utils/readConfigFile.js +24 -0
- package/dist/utils/writeBuildArtifact.js +23 -0
- package/package.json +56 -23
- package/dist/138.index.js +0 -2
- package/dist/138.index.js.LICENSE.txt +0 -3
- package/dist/231.index.js +0 -1
- package/dist/319.index.js +0 -1
- package/dist/35.index.js +0 -1
- package/dist/422.index.js +0 -1
- package/dist/443.index.js +0 -1
- package/dist/449.index.js +0 -1
- package/dist/5.index.js +0 -2
- package/dist/5.index.js.LICENSE.txt +0 -1
- package/dist/564.index.js +0 -1
- package/dist/569.index.js +0 -1
- package/dist/625.index.js +0 -1
- package/dist/693.index.js +0 -2
- package/dist/693.index.js.LICENSE.txt +0 -1
- package/dist/734.index.js +0 -1
- package/dist/904.index.js +0 -1
- package/dist/remoteEntry.js +0 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lowdefy/build",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "4.0.0-alpha.11",
|
|
4
4
|
"licence": "Apache-2.0",
|
|
5
5
|
"description": "",
|
|
6
6
|
"homepage": "https://lowdefy.com",
|
|
@@ -18,47 +18,80 @@
|
|
|
18
18
|
{
|
|
19
19
|
"name": "Gerrie van Wyk",
|
|
20
20
|
"url": "https://github.com/Gervwyk"
|
|
21
|
+
},
|
|
22
|
+
{
|
|
23
|
+
"name": "Johann Möller",
|
|
24
|
+
"url": "https://github.com/JohannMoller"
|
|
25
|
+
},
|
|
26
|
+
{
|
|
27
|
+
"name": "Sandile Memela",
|
|
28
|
+
"url": "https://github.com/sah-memela"
|
|
21
29
|
}
|
|
22
30
|
],
|
|
23
31
|
"repository": {
|
|
24
32
|
"type": "git",
|
|
25
33
|
"url": "https://github.com/lowdefy/lowdefy.git"
|
|
26
34
|
},
|
|
27
|
-
"
|
|
35
|
+
"type": "module",
|
|
36
|
+
"bin": {
|
|
37
|
+
"lowdefy-build": "./dist/scripts/run.js"
|
|
38
|
+
},
|
|
39
|
+
"exports": "./dist/index.js",
|
|
28
40
|
"files": [
|
|
29
41
|
"dist/*"
|
|
30
42
|
],
|
|
31
43
|
"scripts": {
|
|
32
|
-
"build": "yarn
|
|
44
|
+
"build": "yarn swc && node dist/scripts/generateDefaultTypes.js",
|
|
33
45
|
"clean": "rm -rf dist",
|
|
34
46
|
"prepare": "yarn build",
|
|
35
|
-
"
|
|
36
|
-
"
|
|
47
|
+
"start": "node dist/scripts/run.js",
|
|
48
|
+
"swc": "swc src --out-dir dist --config-file ../../.swcrc --delete-dir-on-start",
|
|
49
|
+
"test": "yarn node --experimental-vm-modules $(yarn bin jest)"
|
|
37
50
|
},
|
|
38
51
|
"dependencies": {
|
|
39
|
-
"@lowdefy/ajv": "
|
|
40
|
-
"@lowdefy/
|
|
41
|
-
"@lowdefy/
|
|
42
|
-
"@lowdefy/
|
|
43
|
-
"
|
|
44
|
-
"
|
|
45
|
-
"
|
|
52
|
+
"@lowdefy/ajv": "4.0.0-alpha.11",
|
|
53
|
+
"@lowdefy/blocks-basic": "4.0.0-alpha.11",
|
|
54
|
+
"@lowdefy/blocks-loaders": "4.0.0-alpha.11",
|
|
55
|
+
"@lowdefy/helpers": "4.0.0-alpha.11",
|
|
56
|
+
"@lowdefy/node-utils": "4.0.0-alpha.11",
|
|
57
|
+
"@lowdefy/nunjucks": "4.0.0-alpha.11",
|
|
58
|
+
"@lowdefy/operators": "4.0.0-alpha.11",
|
|
59
|
+
"@lowdefy/operators-js": "4.0.0-alpha.11",
|
|
60
|
+
"ajv": "8.9.0",
|
|
46
61
|
"json5": "2.2.0",
|
|
47
|
-
"uuid": "8.3.2"
|
|
62
|
+
"uuid": "8.3.2",
|
|
63
|
+
"yaml": "2.0.0-10",
|
|
64
|
+
"yargs": "17.3.1"
|
|
48
65
|
},
|
|
49
66
|
"devDependencies": {
|
|
50
|
-
"@
|
|
51
|
-
"@
|
|
52
|
-
"@
|
|
53
|
-
"
|
|
54
|
-
"
|
|
55
|
-
"
|
|
56
|
-
"
|
|
57
|
-
"
|
|
58
|
-
"
|
|
67
|
+
"@jest/globals": "27.5.1",
|
|
68
|
+
"@lowdefy/actions-core": "4.0.0-alpha.11",
|
|
69
|
+
"@lowdefy/blocks-antd": "4.0.0-alpha.11",
|
|
70
|
+
"@lowdefy/blocks-color-selectors": "4.0.0-alpha.11",
|
|
71
|
+
"@lowdefy/blocks-echarts": "4.0.0-alpha.11",
|
|
72
|
+
"@lowdefy/blocks-markdown": "4.0.0-alpha.11",
|
|
73
|
+
"@lowdefy/connection-axios-http": "4.0.0-alpha.11",
|
|
74
|
+
"@lowdefy/connection-elasticsearch": "4.0.0-alpha.11",
|
|
75
|
+
"@lowdefy/connection-google-sheets": "4.0.0-alpha.11",
|
|
76
|
+
"@lowdefy/connection-knex": "4.0.0-alpha.11",
|
|
77
|
+
"@lowdefy/connection-mongodb": "4.0.0-alpha.11",
|
|
78
|
+
"@lowdefy/connection-redis": "4.0.0-alpha.11",
|
|
79
|
+
"@lowdefy/connection-sendgrid": "4.0.0-alpha.11",
|
|
80
|
+
"@lowdefy/connection-stripe": "4.0.0-alpha.11",
|
|
81
|
+
"@lowdefy/operators-change-case": "4.0.0-alpha.11",
|
|
82
|
+
"@lowdefy/operators-diff": "4.0.0-alpha.11",
|
|
83
|
+
"@lowdefy/operators-mql": "4.0.0-alpha.11",
|
|
84
|
+
"@lowdefy/operators-nunjucks": "4.0.0-alpha.11",
|
|
85
|
+
"@lowdefy/operators-uuid": "4.0.0-alpha.11",
|
|
86
|
+
"@lowdefy/operators-yaml": "4.0.0-alpha.11",
|
|
87
|
+
"@lowdefy/plugin-next-auth": "4.0.0-alpha.11",
|
|
88
|
+
"@swc/cli": "0.1.55",
|
|
89
|
+
"@swc/core": "1.2.135",
|
|
90
|
+
"@swc/jest": "0.2.17",
|
|
91
|
+
"jest": "27.5.1"
|
|
59
92
|
},
|
|
60
93
|
"publishConfig": {
|
|
61
94
|
"access": "public"
|
|
62
95
|
},
|
|
63
|
-
"gitHead": "
|
|
96
|
+
"gitHead": "810fb2d8cb9ee8b0586b55fbbf26a5a5a0da3b2a"
|
|
64
97
|
}
|