windmill-components 1.383.4 → 1.383.6
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.
|
@@ -108,8 +108,8 @@
|
|
|
108
108
|
// }
|
|
109
109
|
// }
|
|
110
110
|
// }
|
|
111
|
-
import { graphql } from 'graphql'
|
|
112
|
-
import { useWorkerFactory } from 'monaco-editor-wrapper/workerFactory';
|
|
111
|
+
// import { graphql } from 'graphql'
|
|
112
|
+
import { useWorkerFactory } from '@windmill-labs/monaco-editor-wrapper/workerFactory';
|
|
113
113
|
export function buildWorkerDefinition(...args) {
|
|
114
114
|
useWorkerFactory({
|
|
115
115
|
ignoreMapping: true,
|
|
@@ -122,31 +122,31 @@ export function buildWorkerDefinition(...args) {
|
|
|
122
122
|
},
|
|
123
123
|
javascript: () => {
|
|
124
124
|
console.log('javascript');
|
|
125
|
-
return new Worker(new URL('monaco-editor-wrapper/workers/module/ts', import.meta.url), {
|
|
125
|
+
return new Worker(new URL('@windmill-labs/monaco-editor-wrapper/workers/module/ts', import.meta.url), {
|
|
126
126
|
type: 'module'
|
|
127
127
|
});
|
|
128
128
|
},
|
|
129
129
|
typescript: () => {
|
|
130
130
|
console.log('typescript');
|
|
131
|
-
return new Worker(new URL('monaco-editor-wrapper/workers/module/ts', import.meta.url), {
|
|
131
|
+
return new Worker(new URL('@windmill-labs/monaco-editor-wrapper/workers/module/ts', import.meta.url), {
|
|
132
132
|
type: 'module'
|
|
133
133
|
});
|
|
134
134
|
},
|
|
135
135
|
json: () => {
|
|
136
136
|
console.log('json');
|
|
137
|
-
return new Worker(new URL('monaco-editor-wrapper/workers/module/json', import.meta.url), {
|
|
137
|
+
return new Worker(new URL('@windmill-labs/monaco-editor-wrapper/workers/module/json', import.meta.url), {
|
|
138
138
|
type: 'module'
|
|
139
139
|
});
|
|
140
140
|
},
|
|
141
141
|
html: () => {
|
|
142
142
|
console.log('html');
|
|
143
|
-
return new Worker(new URL('monaco-editor-wrapper/workers/module/html', import.meta.url), {
|
|
143
|
+
return new Worker(new URL('@windmill-labs/monaco-editor-wrapper/workers/module/html', import.meta.url), {
|
|
144
144
|
type: 'module'
|
|
145
145
|
});
|
|
146
146
|
},
|
|
147
147
|
css: () => {
|
|
148
148
|
console.log('html');
|
|
149
|
-
return new Worker(new URL('monaco-editor-wrapper/workers/module/css', import.meta.url), {
|
|
149
|
+
return new Worker(new URL('@windmill-labs/monaco-editor-wrapper/workers/module/css', import.meta.url), {
|
|
150
150
|
type: 'module'
|
|
151
151
|
});
|
|
152
152
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "windmill-components",
|
|
3
|
-
"version": "1.383.
|
|
3
|
+
"version": "1.383.6",
|
|
4
4
|
"scripts": {
|
|
5
5
|
"dev": "vite dev",
|
|
6
6
|
"build": "vite build",
|
|
@@ -116,7 +116,7 @@
|
|
|
116
116
|
"lucide-svelte": "^0.293.0",
|
|
117
117
|
"minimatch": "^10.0.1",
|
|
118
118
|
"monaco-editor": "npm:@codingame/monaco-vscode-editor-api@~8.0.2",
|
|
119
|
-
"monaco-editor-wrapper": "^5.5.2",
|
|
119
|
+
"@windmill-labs/monaco-editor-wrapper": "^5.5.2",
|
|
120
120
|
"monaco-graphql": "^1.6.0",
|
|
121
121
|
"@windmill-labs/monaco-languageclient": "~8.8.2",
|
|
122
122
|
"ol": "^7.4.0",
|