Skip to content

Commit 89cbed0

Browse files
authored
feat: refactor configs [JS-831] (#1064)
* feat: refactor configs [JS-831] * fix circular dependency * Apply automatic changes * fix * Apply automatic changes * simplify * import only what's needed from lodash * fix? * just in case * make all aliases hidden from top-level of help * Apply automatic changes * stop managing ocker compose config completely * add config promise to the Map right away to prevent possible problems when using Promise.all that inits and manipulates the same config * fix --------- Co-authored-by: shamsartem <[email protected]>
1 parent 651845c commit 89cbed0

File tree

106 files changed

+4634
-5195
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

106 files changed

+4634
-5195
lines changed

packages/cli-connector/package.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,6 @@
3333
"@types/react-dom": "^18.3.0",
3434
"@vitejs/plugin-react-swc": "3.7.0",
3535
"eslint": "9.10.0",
36-
"hotscript": "1.0.13",
3736
"npm-check-updates": "^17.1.1",
3837
"typescript": "5.6.2",
3938
"typescript-eslint": "8.5.0",

packages/cli-connector/vite.config.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,4 +20,6 @@ import { defineConfig } from "vite";
2020

2121
export default defineConfig({
2222
plugins: [react()],
23+
// Disable chunk size warning cause this frontend is only used on local server
24+
build: { chunkSizeWarningLimit: Infinity },
2325
});

0 commit comments

Comments
 (0)