Skip to content

Commit 76aee2d

Browse files
committed
chore: bump version to 2.0.19 and consolidate monaco-related dependencies in vite config
1 parent 265bdae commit 76aee2d

3 files changed

Lines changed: 10 additions & 11 deletions

File tree

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"homepage": "https://experientialrobotics.org/",
55
"license": "GPL-2.0-only",
66
"private": true,
7-
"version": "2.0.18",
7+
"version": "2.0.19",
88
"type": "module",
99
"scripts": {
1010
"dev": "vite",

public/CHANGELOG.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Version 2.0.18
1+
# Version 2.0.19
22

33
#### XRPCode V2 Beta What’s New
44
* Rewritten with modern web tools for more solid and expandable future

vite.config.ts

Lines changed: 8 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -83,8 +83,14 @@ export default defineConfig(({ mode }) => {
8383
if (id.includes('react-blockly')) {
8484
return '@react-blockly'
8585
}
86-
if (id.includes('@codingame')) {
87-
return '@codingame'
86+
if (
87+
id.includes('@codingame') ||
88+
id.includes('monaco-languageclient') ||
89+
id.includes('@typefox/pyright-browser') ||
90+
id.includes('monaco-editor') ||
91+
id.includes('vscode')
92+
) {
93+
return '@monaco'
8894
}
8995
if (
9096
id.includes('react') ||
@@ -98,13 +104,6 @@ export default defineConfig(({ mode }) => {
98104
) {
99105
return '@react'
100106
}
101-
if (
102-
id.includes('monaco-languageclient') ||
103-
id.includes('@typefox/pyright-browser') ||
104-
id.includes('monaco-editor')
105-
) {
106-
return '@monaco'
107-
}
108107
}
109108
}
110109
}

0 commit comments

Comments
 (0)