@lowdefy/build 0.0.0-alpha.7 → 0.0.0-experimental-20231123101256

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.
Files changed (115) hide show
  1. package/LICENSE +201 -0
  2. package/dist/build/addDefaultPages/404.js +50 -0
  3. package/dist/build/addDefaultPages/addDefaultPages.js +43 -0
  4. package/dist/build/addKeys.js +90 -0
  5. package/dist/build/buildApp.js +40 -0
  6. package/dist/build/buildAuth/buildAuth.js +46 -0
  7. package/dist/build/buildAuth/buildAuthPlugins.js +71 -0
  8. package/dist/build/buildAuth/buildPageAuth.js +50 -0
  9. package/dist/build/buildAuth/getPageRoles.js +33 -0
  10. package/dist/build/buildAuth/getProtectedPages.js +28 -0
  11. package/dist/build/buildAuth/validateAuthConfig.js +64 -0
  12. package/dist/build/buildConnections.js +46 -0
  13. package/dist/build/buildImports/buildIconImports.js +90 -0
  14. package/dist/build/buildImports/buildImports.js +30 -0
  15. package/dist/build/buildImports/buildImportsDev.js +106 -0
  16. package/dist/build/buildImports/buildImportsProd.js +54 -0
  17. package/dist/build/buildImports/buildStyleImports.js +25 -0
  18. package/dist/build/buildImports/defaultIconsDev.js +584 -0
  19. package/dist/build/buildImports/defaultIconsProd.js +21 -0
  20. package/dist/build/buildMenu.js +118 -0
  21. package/dist/build/buildPages/buildBlock/buildBlock.js +35 -0
  22. package/dist/build/buildPages/buildBlock/buildEvents.js +76 -0
  23. package/dist/build/buildPages/buildBlock/buildRequests.js +51 -0
  24. package/dist/build/buildPages/buildBlock/buildSubBlocks.js +30 -0
  25. package/dist/build/buildPages/buildBlock/countBlockOperators.js +31 -0
  26. package/dist/build/buildPages/buildBlock/countBlockTypes.js +18 -0
  27. package/dist/build/buildPages/buildBlock/moveSkeletonBlocksToArea.js +35 -0
  28. package/dist/build/buildPages/buildBlock/moveSubBlocksToArea.js +25 -0
  29. package/dist/build/buildPages/buildBlock/setBlockId.js +20 -0
  30. package/dist/build/buildPages/buildBlock/validateBlock.js +38 -0
  31. package/dist/build/buildPages/buildPage.js +45 -0
  32. package/dist/build/buildPages/buildPages.js +31 -0
  33. package/dist/build/buildPages/buildTestPage.js +46 -0
  34. package/dist/build/buildRefs/buildRefs.js +32 -0
  35. package/dist/build/buildRefs/evaluateBuildOperators.js +34 -0
  36. package/dist/build/buildRefs/getConfigFile.js +28 -0
  37. package/dist/build/buildRefs/getKey.js +24 -0
  38. package/dist/build/buildRefs/getRefContent.js +44 -0
  39. package/dist/build/buildRefs/getRefPath.js +30 -0
  40. package/dist/build/buildRefs/getRefsFromFile.js +37 -0
  41. package/dist/build/buildRefs/getUserJavascriptFunction.js +25 -0
  42. package/dist/build/buildRefs/makeRefDefinition.js +37 -0
  43. package/dist/build/buildRefs/parseNunjucks.js +20 -0
  44. package/dist/build/buildRefs/parseRefContent.js +37 -0
  45. package/dist/build/buildRefs/populateRefs.js +43 -0
  46. package/dist/build/buildRefs/recursiveBuild.js +85 -0
  47. package/dist/build/buildRefs/runRefResolver.js +33 -0
  48. package/dist/build/buildRefs/runTransformer.js +30 -0
  49. package/dist/build/buildTypes.js +124 -0
  50. package/dist/build/cleanBuildDirectory.js +19 -0
  51. package/dist/build/copyPublicFolder.js +26 -0
  52. package/dist/build/testSchema.js +32 -0
  53. package/dist/build/updateServerPackageJson.js +45 -0
  54. package/dist/build/validateConfig.js +30 -0
  55. package/dist/build/writeApp.js +19 -0
  56. package/dist/build/writeAuth.js +19 -0
  57. package/dist/build/writeConfig.js +19 -0
  58. package/dist/build/writeConnections.js +26 -0
  59. package/dist/build/writeGlobal.js +25 -0
  60. package/dist/build/writeMaps.js +26 -0
  61. package/dist/build/writeMenus.js +22 -0
  62. package/dist/build/writePages.js +26 -0
  63. package/dist/build/writePluginImports/generateImportFile.js +31 -0
  64. package/dist/build/writePluginImports/writeActionImports.js +22 -0
  65. package/dist/build/writePluginImports/writeAuthImports.js +34 -0
  66. package/dist/build/writePluginImports/writeBlockImports.js +22 -0
  67. package/dist/build/writePluginImports/writeConnectionImports.js +22 -0
  68. package/dist/build/writePluginImports/writeIconImports.js +31 -0
  69. package/dist/build/writePluginImports/writeOperatorImports.js +26 -0
  70. package/dist/build/writePluginImports/writePluginImports.js +52 -0
  71. package/dist/build/writePluginImports/writeStyleImports.js +34 -0
  72. package/dist/build/writeRequests.js +32 -0
  73. package/dist/build/writeTypes.js +19 -0
  74. package/dist/createContext.js +58 -0
  75. package/dist/defaultTypesMap.js +2125 -0
  76. package/dist/index.js +149 -1
  77. package/dist/lowdefySchema.js +873 -0
  78. package/dist/scripts/generateDefaultTypes.js +91 -0
  79. package/dist/scripts/run.js +33 -0
  80. package/dist/test/buildRefs/testBuildRefsAsyncFunction.js +22 -0
  81. package/dist/test/buildRefs/testBuildRefsErrorResolver.js +18 -0
  82. package/dist/test/buildRefs/testBuildRefsNullResolver.js +19 -0
  83. package/dist/test/buildRefs/testBuildRefsParsingResolver.js +39 -0
  84. package/dist/test/buildRefs/testBuildRefsResolver.js +23 -0
  85. package/dist/test/buildRefs/testBuildRefsTransform.js +25 -0
  86. package/dist/test/buildRefs/testBuildRefsTransformIdentity.js +21 -0
  87. package/dist/test/testContext.js +56 -0
  88. package/dist/utils/countOperators.js +30 -0
  89. package/dist/utils/createCheckDuplicateId.js +31 -0
  90. package/dist/utils/createCounter.js +33 -0
  91. package/dist/utils/createPluginTypesMap.js +113 -0
  92. package/dist/utils/formatErrorMessage.js +56 -0
  93. package/dist/utils/makeId.js +23 -0
  94. package/dist/utils/readConfigFile.js +27 -0
  95. package/dist/utils/writeBuildArtifact.js +23 -0
  96. package/package.json +77 -36
  97. package/CHANGELOG.md +0 -61
  98. package/dist/116.index.js +0 -1
  99. package/dist/231.index.js +0 -1
  100. package/dist/270.index.js +0 -2
  101. package/dist/270.index.js.LICENSE.txt +0 -45
  102. package/dist/319.index.js +0 -1
  103. package/dist/377.index.js +0 -1
  104. package/dist/422.index.js +0 -1
  105. package/dist/449.index.js +0 -1
  106. package/dist/5.index.js +0 -2
  107. package/dist/5.index.js.LICENSE.txt +0 -1
  108. package/dist/564.index.js +0 -1
  109. package/dist/641.index.js +0 -1
  110. package/dist/655.index.js +0 -1
  111. package/dist/657.index.js +0 -1
  112. package/dist/747.index.js +0 -1
  113. package/dist/903.index.js +0 -1
  114. package/dist/904.index.js +0 -1
  115. package/dist/remoteEntry.js +0 -1
@@ -0,0 +1,23 @@
1
+ /*
2
+ Copyright 2020-2023 Lowdefy, Inc
3
+
4
+ Licensed under the Apache License, Version 2.0 (the "License");
5
+ you may not use this file except in compliance with the License.
6
+ You may obtain a copy of the License at
7
+
8
+ http://www.apache.org/licenses/LICENSE-2.0
9
+
10
+ Unless required by applicable law or agreed to in writing, software
11
+ distributed under the License is distributed on an "AS IS" BASIS,
12
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
+ See the License for the specific language governing permissions and
14
+ limitations under the License.
15
+ */ import path from 'path';
16
+ import { writeFile } from '@lowdefy/node-utils';
17
+ function createWriteBuildArtifact({ directories }) {
18
+ async function writeBuildArtifact(filePath, content) {
19
+ await writeFile(path.join(directories.build, filePath), content);
20
+ }
21
+ return writeBuildArtifact;
22
+ }
23
+ export default createWriteBuildArtifact;
package/package.json CHANGED
@@ -1,9 +1,12 @@
1
1
  {
2
2
  "name": "@lowdefy/build",
3
- "version": "0.0.0-alpha.7",
4
- "licence": "Apache-2.0",
3
+ "version": "0.0.0-experimental-20231123101256",
4
+ "license": "Apache-2.0",
5
5
  "description": "",
6
6
  "homepage": "https://lowdefy.com",
7
+ "keywords": [
8
+ "lowdefy"
9
+ ],
7
10
  "bugs": {
8
11
  "url": "https://github.com/lowdefy/lowdefy/issues"
9
12
  },
@@ -15,50 +18,88 @@
15
18
  {
16
19
  "name": "Gerrie van Wyk",
17
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"
18
29
  }
19
30
  ],
20
31
  "repository": {
21
32
  "type": "git",
22
33
  "url": "https://github.com/lowdefy/lowdefy.git"
23
34
  },
24
- "main": "dist/index.js",
35
+ "type": "module",
36
+ "bin": {
37
+ "lowdefy-build": "./dist/scripts/run.js"
38
+ },
39
+ "exports": {
40
+ ".": "./dist/index.js",
41
+ "./buildTestPage": "./dist/build/buildPages/buildTestPage.js"
42
+ },
25
43
  "files": [
26
44
  "dist/*"
27
45
  ],
28
- "scripts": {
29
- "build": "yarn webpack",
30
- "clean": "rm -rf dist",
31
- "npm-publish": "npm publish --access public",
32
- "prepare": "yarn build",
33
- "prepublishOnly": "yarn build",
34
- "test": "jest --coverage",
35
- "webpack": "webpack --config webpack.config.js",
36
- "version:prerelease": "yarn version prerelease",
37
- "version:patch": "yarn version patch",
38
- "version:minor": "yarn version minor",
39
- "version:major": "yarn version major"
40
- },
41
46
  "dependencies": {
42
- "@lowdefy/ajv": "1.1.0",
43
- "@lowdefy/helpers": "1.2.0",
44
- "@lowdefy/node-utils": "1.0.2",
45
- "@lowdefy/nunjucks": "1.1.0",
46
- "ajv": "6.12.6",
47
- "axios": "0.21.0",
48
- "dataloader": "2.0.0",
49
- "js-yaml": "3.14.1",
50
- "json5": "2.1.3",
51
- "uuid": "8.3.2"
47
+ "@lowdefy/ajv": "0.0.0-experimental-20231123101256",
48
+ "@lowdefy/blocks-basic": "0.0.0-experimental-20231123101256",
49
+ "@lowdefy/blocks-loaders": "0.0.0-experimental-20231123101256",
50
+ "@lowdefy/helpers": "0.0.0-experimental-20231123101256",
51
+ "@lowdefy/node-utils": "0.0.0-experimental-20231123101256",
52
+ "@lowdefy/nunjucks": "0.0.0-experimental-20231123101256",
53
+ "@lowdefy/operators": "0.0.0-experimental-20231123101256",
54
+ "@lowdefy/operators-js": "0.0.0-experimental-20231123101256",
55
+ "ajv": "8.12.0",
56
+ "json5": "2.2.3",
57
+ "yaml": "2.3.4",
58
+ "yargs": "17.7.2"
52
59
  },
53
60
  "devDependencies": {
54
- "@babel/cli": "7.12.10",
55
- "@babel/core": "7.12.10",
56
- "@babel/preset-env": "7.12.10",
57
- "babel-jest": "26.6.3",
58
- "babel-loader": "8.2.2",
59
- "clean-webpack-plugin": "3.0.0",
60
- "jest": "26.6.3",
61
- "webpack": "5.10.0",
62
- "webpack-cli": "4.2.0"
61
+ "@jest/globals": "28.1.3",
62
+ "@lowdefy/actions-core": "0.0.0-experimental-20231123101256",
63
+ "@lowdefy/actions-pdf-make": "0.0.0-experimental-20231123101256",
64
+ "@lowdefy/blocks-aggrid": "0.0.0-experimental-20231123101256",
65
+ "@lowdefy/blocks-algolia": "0.0.0-experimental-20231123101256",
66
+ "@lowdefy/blocks-antd": "0.0.0-experimental-20231123101256",
67
+ "@lowdefy/blocks-color-selectors": "0.0.0-experimental-20231123101256",
68
+ "@lowdefy/blocks-echarts": "0.0.0-experimental-20231123101256",
69
+ "@lowdefy/blocks-google-maps": "0.0.0-experimental-20231123101256",
70
+ "@lowdefy/blocks-markdown": "0.0.0-experimental-20231123101256",
71
+ "@lowdefy/blocks-qr": "0.0.0-experimental-20231123101256",
72
+ "@lowdefy/connection-axios-http": "0.0.0-experimental-20231123101256",
73
+ "@lowdefy/connection-elasticsearch": "0.0.0-experimental-20231123101256",
74
+ "@lowdefy/connection-google-sheets": "0.0.0-experimental-20231123101256",
75
+ "@lowdefy/connection-knex": "0.0.0-experimental-20231123101256",
76
+ "@lowdefy/connection-mongodb": "0.0.0-experimental-20231123101256",
77
+ "@lowdefy/connection-redis": "0.0.0-experimental-20231123101256",
78
+ "@lowdefy/connection-sendgrid": "0.0.0-experimental-20231123101256",
79
+ "@lowdefy/connection-stripe": "0.0.0-experimental-20231123101256",
80
+ "@lowdefy/operators-change-case": "0.0.0-experimental-20231123101256",
81
+ "@lowdefy/operators-diff": "0.0.0-experimental-20231123101256",
82
+ "@lowdefy/operators-moment": "0.0.0-experimental-20231123101256",
83
+ "@lowdefy/operators-mql": "0.0.0-experimental-20231123101256",
84
+ "@lowdefy/operators-nunjucks": "0.0.0-experimental-20231123101256",
85
+ "@lowdefy/operators-uuid": "0.0.0-experimental-20231123101256",
86
+ "@lowdefy/operators-yaml": "0.0.0-experimental-20231123101256",
87
+ "@lowdefy/plugin-auth0": "0.0.0-experimental-20231123101256",
88
+ "@lowdefy/plugin-aws": "0.0.0-experimental-20231123101256",
89
+ "@lowdefy/plugin-csv": "0.0.0-experimental-20231123101256",
90
+ "@lowdefy/plugin-next-auth": "0.0.0-experimental-20231123101256",
91
+ "@swc/cli": "0.1.63",
92
+ "@swc/core": "1.3.99",
93
+ "@swc/jest": "0.2.29",
94
+ "jest": "28.1.3"
95
+ },
96
+ "publishConfig": {
97
+ "access": "public"
98
+ },
99
+ "scripts": {
100
+ "build": "swc src --out-dir dist --config-file ../../.swcrc --delete-dir-on-start && node dist/scripts/generateDefaultTypes.js",
101
+ "clean": "rm -rf dist",
102
+ "start": "node dist/scripts/run.js",
103
+ "test": "node --experimental-vm-modules node_modules/jest/bin/jest.js"
63
104
  }
64
- }
105
+ }
package/CHANGELOG.md DELETED
@@ -1,61 +0,0 @@
1
- # Change Log
2
-
3
- All notable changes to this project will be documented in this file.
4
- See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
-
6
- # 0.0.0-alpha.7 (2020-12-10)
7
-
8
-
9
- ### Bug Fixes
10
-
11
- * **ajv:** fix ajv validate parameter name ([5aba723](https://github.com/lowdefy/lowdefy/commit/5aba7230fec264cc12a8dcbd578da098ef3afe0e))
12
- * **build:** add contextId to saved request file path ([81219b5](https://github.com/lowdefy/lowdefy/commit/81219b5c1dd8b26e213da9e4ab72178ac70ba812))
13
- * **build:** add visible to block schema. ([4865208](https://github.com/lowdefy/lowdefy/commit/4865208416b7cccb0719984b1fb10813084dfbc1))
14
- * **build:** app schema fix, add style on block ([a39c1ca](https://github.com/lowdefy/lowdefy/commit/a39c1ca83b8a859e87c764536c042edcce29f110))
15
- * **build:** fix build issues ([0f1bd9c](https://github.com/lowdefy/lowdefy/commit/0f1bd9c5176b3d7472bf41d77e90dde491225564))
16
- * **build:** fix local run script ([c69ee94](https://github.com/lowdefy/lowdefy/commit/c69ee94c057ef1ed1b0a29d88c0a3b475f62dcd1))
17
- * **build:** Fix lowdefy schema, closes [#269](https://github.com/lowdefy/lowdefy/issues/269) ([09105a9](https://github.com/lowdefy/lowdefy/commit/09105a99b33bb358aac17593b4ad29906a461791))
18
- * **build:** Icon block is part of blocks-antd package ([8507556](https://github.com/lowdefy/lowdefy/commit/8507556c10a9e076cf0d769a739d5687f3385482))
19
- * **build:** improve error if block meta can not be found ([03dccb1](https://github.com/lowdefy/lowdefy/commit/03dccb169d71c9bb417d3754615d50937abfb38d)), closes [#121](https://github.com/lowdefy/lowdefy/issues/121)
20
- * **build:** in shcema areas.content.block must be an array ([f53dcb8](https://github.com/lowdefy/lowdefy/commit/f53dcb8fffd18624b5f8b3aee11c5ed785c8d1e7))
21
- * **build:** remove test file from git ignore ([c16ad0b](https://github.com/lowdefy/lowdefy/commit/c16ad0b5b17dc4b093ff5972ab7f27b6d987b749))
22
- * **build:** remove unneccesary cli logs ([1f27b7d](https://github.com/lowdefy/lowdefy/commit/1f27b7d5d2c739fbffa21a04971c674fe9ce26cd))
23
- * **build:** write block metas to meta folder in cache ([d6277a5](https://github.com/lowdefy/lowdefy/commit/d6277a59bb2561ac26d6cb4e292e0888f0da5bb4))
24
- * **build:** write config object to output in build ([46ec66d](https://github.com/lowdefy/lowdefy/commit/46ec66d9e0330fafb323cbea2bdd3118a48eb7c4))
25
- * **deps:** update dependency axios to v0.21.0 ([aee32c0](https://github.com/lowdefy/lowdefy/commit/aee32c0b37646e07bc8d5eeff7947e3af84ceb2c))
26
- * **deps:** update dependency js-yaml to v3.14.1 ([935ad89](https://github.com/lowdefy/lowdefy/commit/935ad894cd221901784360bee684189a60a2d386))
27
- * **deps:** update dependency uuid to v8.3.2 ([abca08f](https://github.com/lowdefy/lowdefy/commit/abca08f599ec689e45ac208670bceb6f4fa2b089))
28
- * move file helpers to new node-utils package ([0a6ef8d](https://github.com/lowdefy/lowdefy/commit/0a6ef8d09b6f1a75c8a8ceb1749f7dfe14c46b5f))
29
-
30
-
31
- ### Features
32
-
33
- * **blocksTools:** mockBlockProps to provide schema errors ([6c192d4](https://github.com/lowdefy/lowdefy/commit/6c192d42b0ab9521b9c74a3a1466b03d414864bb))
34
- * **build:** add block meta loader ([2a483ad](https://github.com/lowdefy/lowdefy/commit/2a483ad8e6237771eb485cad11364c85883b6943))
35
- * **build:** add build context ([0f13e41](https://github.com/lowdefy/lowdefy/commit/0f13e4114dc96a9af918452918614cd13d8930a1))
36
- * **build:** add build pages function ([01e892f](https://github.com/lowdefy/lowdefy/commit/01e892fad5d4c6c5c59406501cd936668b244085))
37
- * **build:** add buildRefs function ([3ab2819](https://github.com/lowdefy/lowdefy/commit/3ab2819944fc3f7dd122e18b8e90ac24e832a5c9))
38
- * **build:** add clean directory util ([127eb39](https://github.com/lowdefy/lowdefy/commit/127eb397134811126253d4feb820e421faaa71e5))
39
- * **build:** add cleanOutputDirectory function ([e3a3bf9](https://github.com/lowdefy/lowdefy/commit/e3a3bf9952f7a07e981cd5ef2e38cfd60c68e636))
40
- * **build:** add color selector defaultMetaLocations ([6c28a66](https://github.com/lowdefy/lowdefy/commit/6c28a6683c32062f457991ad7746d1eb321bb223))
41
- * **build:** add defaultMetaLocations ([fe14001](https://github.com/lowdefy/lowdefy/commit/fe140013df9c145c457be2c039747f39c64983bf))
42
- * **build:** add error messages to lowdefy schema ([6fd15f0](https://github.com/lowdefy/lowdefy/commit/6fd15f0bbcd031a79c215321b195a0fe0fae34b4))
43
- * **build:** add getFileExtension util ([46586f0](https://github.com/lowdefy/lowdefy/commit/46586f05f2db9d87493c511a79f9047ee30829b6))
44
- * **build:** add schema test utils ([bb0574f](https://github.com/lowdefy/lowdefy/commit/bb0574fb1da37286fc19ba2bade7b458b4c8fc36))
45
- * **build:** add test schema function, cleanup ([ac216d4](https://github.com/lowdefy/lowdefy/commit/ac216d448396d49e5e08a64244d5c404ad08ef91))
46
- * **build:** add util functions ([8686857](https://github.com/lowdefy/lowdefy/commit/8686857222f52f9939df9c2644e444f96978c3ee))
47
- * **build:** add write functions ([701b583](https://github.com/lowdefy/lowdefy/commit/701b583a6d29a03eedaed5899b48cf94641c3694))
48
- * **build:** build connections and menus ([3f4b486](https://github.com/lowdefy/lowdefy/commit/3f4b486459574e38d9e33c0c9b8b1ac0b918a31f))
49
- * **build:** cleanup, test fixes ([1c1792b](https://github.com/lowdefy/lowdefy/commit/1c1792b6906d1a8d90e3eff811fb978995d8e9b1))
50
- * **build:** init package @lowdefy/build ([6f7f73b](https://github.com/lowdefy/lowdefy/commit/6f7f73bbe021f41b82c347130dfe79a40d5e2273))
51
- * **build:** remove mutations ([1e9801b](https://github.com/lowdefy/lowdefy/commit/1e9801b6ac4be70f1f30635ac450394f0c0db973))
52
- * **build:** update app schema ([fc40948](https://github.com/lowdefy/lowdefy/commit/fc40948b488a2e3a105c8dcb123a4fe26e096aeb))
53
- * **build:** use @lowdefy/ajv for json schema checks ([98eb4be](https://github.com/lowdefy/lowdefy/commit/98eb4be30cf217b9db0dd27e8c68ddadb480b67e))
54
- * **build:** write pages and requests ([fc6176d](https://github.com/lowdefy/lowdefy/commit/fc6176d312dbcaaa9238d2c1990bb8c414596028))
55
- * **cli:** add errorBoundary and getLowdefyVersion utils ([519e604](https://github.com/lowdefy/lowdefy/commit/519e6047714a8e32072eaacaa111eff666b69e71))
56
- * **cli:** improve cli console logs ([7ca7509](https://github.com/lowdefy/lowdefy/commit/7ca7509e2696e2380a02aded5b22d6bd9b1ec62f)), closes [#247](https://github.com/lowdefy/lowdefy/issues/247)
57
- * **cli:** init cli with build command ([92fff8f](https://github.com/lowdefy/lowdefy/commit/92fff8f157ce6ac2d2df09dac7f8f2073e120b63))
58
- * **cli:** init dev server ([7eae1a8](https://github.com/lowdefy/lowdefy/commit/7eae1a80f456f0987c8835a3966ca5a7a6a80018))
59
- * **cli:** init module federation of build script ([34dba01](https://github.com/lowdefy/lowdefy/commit/34dba017246b38b940f6614d66def34844f9e961))
60
- * update webpack configs ([bcce3c8](https://github.com/lowdefy/lowdefy/commit/bcce3c85cea5857e429f1821785ffb939dcaa52a))
61
- * **helpers:** move file utilities to helpers ([1159ac7](https://github.com/lowdefy/lowdefy/commit/1159ac71e7e1029c8c9d94e1826fea2f72d76aa9))