Skip to content

Commit 8eb134e

Browse files
committed
Add packages
1 parent 524d069 commit 8eb134e

File tree

2 files changed

+50
-2
lines changed

2 files changed

+50
-2
lines changed

next.config.js

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,29 @@
11
/** @type {import('next').NextConfig} */
22
const nextConfig = {
33
reactStrictMode: true,
4+
5+
transpilePackages: [
6+
// 1. Hylimo Pakete
7+
"@hylimo/diagram-common",
8+
"@hylimo/diagram-protocol",
9+
"@hylimo/diagram-ui",
10+
"@hylimo/core",
11+
"@hylimo/diagram-render-pdf",
12+
"@hylimo/diagram-render-svg",
13+
"@hylimo/language-server",
14+
15+
// 2. Monaco & VSCode Language Client
16+
"monaco-languageclient",
17+
"vscode-languageclient",
18+
"vscode-languageserver",
19+
"vscode-languageserver-protocol",
20+
"vscode-languageserver-types",
21+
"vscode-jsonrpc",
22+
23+
],
24+
25+
26+
427
output: "standalone",
528

629
compiler: {

package.json

Lines changed: 27 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,10 +29,15 @@
2929
"@mui/x-date-pickers": "^5.0.20",
3030
"@react-hook/resize-observer": "^1.2.6",
3131
"@tiptap/extension-mention": "^2.23.1",
32+
"@tiptap/core": "^2.26.3",
33+
"@tiptap/extension-mention": "^2.26.4",
3234
"@tiptap/extension-underline": "^2.23.1",
3335
"@tiptap/react": "^2.23.1",
3436
"@tiptap/starter-kit": "^2.23.1",
3537
"@tiptap/suggestion": "^2.23.1",
38+
"@tiptap/react": "^2.26.4",
39+
"@tiptap/starter-kit": "^2.26.4",
40+
"@tiptap/suggestion": "^3.4.5",
3641
"@types/is-hotkey": "^0.1.10",
3742
"@types/lodash": "^4.17.0",
3843
"@types/node": "18.15.12",
@@ -84,7 +89,27 @@
8489
"uuid": "^13.0.0",
8590
"victory": "^36.9.2",
8691
"yup": "^1.4.0",
87-
"zustand": "^5.0.7"
92+
"zustand": "^5.0.7",
93+
"@hylimo/core": "^2.1.1",
94+
"@hylimo/diagram-render-pdf": "^2.1.1",
95+
"@hylimo/diagram-render-svg": "^2.1.1",
96+
"@hylimo/diagram-ui": "^2.1.1",
97+
"@hylimo/diagram-protocol": "^2.1.1",
98+
"@hylimo/language-server": "^2.1.1",
99+
"@hylimo/diagram-common": "^2.1.1",
100+
"file-saver": "^2.0.5",
101+
"monaco-editor": "npm:@codingame/monaco-vscode-editor-api@^23.2.2",
102+
"vscode": "npm:@codingame/monaco-vscode-extension-api@^23.2.2",
103+
"monaco-languageclient": "^10.4.0",
104+
"reflect-metadata": "^0.2.2",
105+
"sprotty": "^1.4.0",
106+
"sprotty-protocol": "1.4.0",
107+
"vscode-languageserver": "^9.0.1",
108+
"vscode-languageserver-protocol": "^3.17.5",
109+
"react-split": "^2.0.14",
110+
"@codingame/monaco-vscode-editor-api": "^23.2.2",
111+
"vscode-languageclient": "^9.0.1",
112+
"@codingame/monaco-vscode-api": "^23.2.2"
88113
},
89114
"devDependencies": {
90115
"@types/react-relay": "14.1.3",
@@ -99,4 +124,4 @@
99124
"raw-loader": "^4.0.2",
100125
"relay-compiler": "15.0.0"
101126
}
102-
}
127+
}

0 commit comments

Comments
 (0)