aboutsummaryrefslogtreecommitdiffstats
path: root/subprojects
diff options
context:
space:
mode:
authorLibravatar Kristóf Marussy <kristof@marussy.com>2023-12-24 02:33:56 +0100
committerLibravatar Kristóf Marussy <kristof@marussy.com>2023-12-24 17:32:54 +0100
commit3c628ac6c74a40096cc33b7433a7684bf7de5742 (patch)
tree6d3f0e92e47455425faaabdafa40d6d97e50f9c8 /subprojects
parentfix(language): unambigous reference serialization (diff)
downloadrefinery-3c628ac6c74a40096cc33b7433a7684bf7de5742.tar.gz
refinery-3c628ac6c74a40096cc33b7433a7684bf7de5742.tar.zst
refinery-3c628ac6c74a40096cc33b7433a7684bf7de5742.zip
chore(deps): bump dependencies
Diffstat (limited to 'subprojects')
-rw-r--r--subprojects/frontend/config/graphvizUMDVitePlugin.ts12
-rw-r--r--subprojects/frontend/package.json54
2 files changed, 34 insertions, 32 deletions
diff --git a/subprojects/frontend/config/graphvizUMDVitePlugin.ts b/subprojects/frontend/config/graphvizUMDVitePlugin.ts
index ab726e4f..0c3c9aa0 100644
--- a/subprojects/frontend/config/graphvizUMDVitePlugin.ts
+++ b/subprojects/frontend/config/graphvizUMDVitePlugin.ts
@@ -27,13 +27,15 @@ export default function graphvizUMDVitePlugin(): PluginOption {
27 async buildStart() { 27 async buildStart() {
28 const issuer = 28 const issuer =
29 root === undefined ? issuerFileName : path.join(root, issuerFileName); 29 root === undefined ? issuerFileName : path.join(root, issuerFileName);
30 const resolvedPath = pnpapi.resolveRequest( 30 // Since https://github.com/hpcc-systems/hpcc-js-wasm/commit/15e1ace5edae7f94714e547a3ac20e0e17cd6b0c,
31 '@hpcc-js/wasm/graphviz', 31 // hpcc-js has both a `.cjs` and a `.umd.js` build. PnPAPI will find the former, but we need the latter.
32 issuer, 32 const resolvedPath = pnpapi
33 ); 33 .resolveRequest('@hpcc-js/wasm/graphviz', issuer)
34 if (resolvedPath === null) { 34 ?.replace(/\.cjs$/, '.umd.js');
35 if (resolvedPath === undefined) {
35 return; 36 return;
36 } 37 }
38 console.log(resolvedPath);
37 if (command === 'serve') { 39 if (command === 'serve') {
38 url = `/@fs/${resolvedPath}`; 40 url = `/@fs/${resolvedPath}`;
39 } else { 41 } else {
diff --git a/subprojects/frontend/package.json b/subprojects/frontend/package.json
index f55093ce..9dec8b32 100644
--- a/subprojects/frontend/package.json
+++ b/subprojects/frontend/package.json
@@ -33,23 +33,23 @@
33 "@codemirror/language": "^6.9.3", 33 "@codemirror/language": "^6.9.3",
34 "@codemirror/lint": "^6.4.2", 34 "@codemirror/lint": "^6.4.2",
35 "@codemirror/search": "^6.5.5", 35 "@codemirror/search": "^6.5.5",
36 "@codemirror/state": "^6.3.2", 36 "@codemirror/state": "^6.3.3",
37 "@codemirror/view": "^6.22.1", 37 "@codemirror/view": "^6.22.3",
38 "@emotion/react": "^11.11.1", 38 "@emotion/react": "^11.11.3",
39 "@emotion/styled": "^11.11.0", 39 "@emotion/styled": "^11.11.0",
40 "@fontsource-variable/jetbrains-mono": "^5.0.18", 40 "@fontsource-variable/jetbrains-mono": "^5.0.19",
41 "@fontsource-variable/open-sans": "^5.0.18", 41 "@fontsource-variable/open-sans": "^5.0.21",
42 "@hpcc-js/wasm": "^2.15.0", 42 "@hpcc-js/wasm": "^2.15.3",
43 "@lezer/common": "^1.1.1", 43 "@lezer/common": "^1.1.2",
44 "@lezer/highlight": "^1.2.0", 44 "@lezer/highlight": "^1.2.0",
45 "@lezer/lr": "^1.3.14", 45 "@lezer/lr": "^1.3.14",
46 "@material-icons/svg": "^1.0.33", 46 "@material-icons/svg": "^1.0.33",
47 "@mui/icons-material": "5.14.19", 47 "@mui/icons-material": "^5.15.1",
48 "@mui/material": "5.14.19", 48 "@mui/material": "^5.15.1",
49 "@mui/system": "^5.14.19", 49 "@mui/system": "^5.15.1",
50 "@mui/x-data-grid": "^6.18.2", 50 "@mui/x-data-grid": "^6.18.6",
51 "ansi-styles": "^6.2.1", 51 "ansi-styles": "^6.2.1",
52 "csstype": "^3.1.2", 52 "csstype": "^3.1.3",
53 "d3": "^7.8.5", 53 "d3": "^7.8.5",
54 "d3-graphviz": "patch:d3-graphviz@npm%3A5.2.0#~/.yarn/patches/d3-graphviz-npm-5.2.0-161b1fbad4.patch", 54 "d3-graphviz": "patch:d3-graphviz@npm%3A5.2.0#~/.yarn/patches/d3-graphviz-npm-5.2.0-161b1fbad4.patch",
55 "d3-selection": "^3.0.0", 55 "d3-selection": "^3.0.0",
@@ -65,7 +65,7 @@
65 "notistack": "^3.0.1", 65 "notistack": "^3.0.1",
66 "react": "^18.2.0", 66 "react": "^18.2.0",
67 "react-dom": "^18.2.0", 67 "react-dom": "^18.2.0",
68 "react-resize-detector": "^9.1.0", 68 "react-resize-detector": "^9.1.1",
69 "xstate": "^4.38.3", 69 "xstate": "^4.38.3",
70 "zod": "^3.22.4" 70 "zod": "^3.22.4"
71 }, 71 },
@@ -75,38 +75,38 @@
75 "@types/d3-graphviz": "^2.6.10", 75 "@types/d3-graphviz": "^2.6.10",
76 "@types/d3-selection": "^3.0.10", 76 "@types/d3-selection": "^3.0.10",
77 "@types/d3-zoom": "^3.0.8", 77 "@types/d3-zoom": "^3.0.8",
78 "@types/eslint": "^8.44.8", 78 "@types/eslint": "^8.56.0",
79 "@types/html-minifier-terser": "^7.0.2", 79 "@types/html-minifier-terser": "^7.0.2",
80 "@types/lodash-es": "^4.17.12", 80 "@types/lodash-es": "^4.17.12",
81 "@types/micromatch": "^4.0.6", 81 "@types/micromatch": "^4.0.6",
82 "@types/ms": "^0.7.34", 82 "@types/ms": "^0.7.34",
83 "@types/node": "^20.10.2", 83 "@types/node": "^20.10.5",
84 "@types/pnpapi": "^0.0.5", 84 "@types/pnpapi": "^0.0.5",
85 "@types/react": "^18.2.41", 85 "@types/react": "^18.2.45",
86 "@types/react-dom": "^18.2.17", 86 "@types/react-dom": "^18.2.18",
87 "@typescript-eslint/eslint-plugin": "^6.13.1", 87 "@typescript-eslint/eslint-plugin": "^6.15.0",
88 "@typescript-eslint/parser": "^6.13.1", 88 "@typescript-eslint/parser": "^6.15.0",
89 "@vitejs/plugin-react-swc": "^3.5.0", 89 "@vitejs/plugin-react-swc": "^3.5.0",
90 "@xstate/cli": "^0.5.11", 90 "@xstate/cli": "^0.5.15",
91 "cross-env": "^7.0.3", 91 "cross-env": "^7.0.3",
92 "eslint": "^8.55.0", 92 "eslint": "^8.56.0",
93 "eslint-config-airbnb": "^19.0.4", 93 "eslint-config-airbnb": "^19.0.4",
94 "eslint-config-airbnb-typescript": "^17.1.0", 94 "eslint-config-airbnb-typescript": "^17.1.0",
95 "eslint-config-prettier": "^9.1.0", 95 "eslint-config-prettier": "^9.1.0",
96 "eslint-import-resolver-typescript": "^3.6.1", 96 "eslint-import-resolver-typescript": "^3.6.1",
97 "eslint-plugin-import": "^2.29.0", 97 "eslint-plugin-import": "^2.29.1",
98 "eslint-plugin-jsx-a11y": "^6.8.0", 98 "eslint-plugin-jsx-a11y": "^6.8.0",
99 "eslint-plugin-mobx": "^0.0.9", 99 "eslint-plugin-mobx": "^0.0.9",
100 "eslint-plugin-prettier": "^5.0.1", 100 "eslint-plugin-prettier": "^5.1.1",
101 "eslint-plugin-react": "^7.33.2", 101 "eslint-plugin-react": "^7.33.2",
102 "eslint-plugin-react-hooks": "^4.6.0", 102 "eslint-plugin-react-hooks": "^4.6.0",
103 "html-minifier-terser": "^7.2.0", 103 "html-minifier-terser": "^7.2.0",
104 "micromatch": "^4.0.5", 104 "micromatch": "^4.0.5",
105 "pnpapi": "^0.0.0", 105 "pnpapi": "^0.0.0",
106 "prettier": "^3.1.0", 106 "prettier": "^3.1.1",
107 "typescript": "5.3.2", 107 "typescript": "5.3.3",
108 "vite": "^5.0.4", 108 "vite": "^5.0.10",
109 "vite-plugin-pwa": "^0.17.2", 109 "vite-plugin-pwa": "^0.17.4",
110 "workbox-window": "^7.0.0" 110 "workbox-window": "^7.0.0"
111 } 111 }
112} 112}