Skip to content

Commit

Permalink
Merge pull request #1156 from bridge-core/dev
Browse files Browse the repository at this point in the history
Hotfix compilation errors
  • Loading branch information
outercloudstudio committed Jul 11, 2024
2 parents 2becf4a + bcc0ace commit 9788f0a
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 31 deletions.
28 changes: 3 additions & 25 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "bridge",
"version": "2.7.25",
"version": "2.7.26",
"private": true,
"scripts": {
"dev": "vite",
Expand All @@ -13,13 +13,13 @@
},
"dependencies": {
"@bridge-editor/dash-compiler": "^0.11.4",
"@bridge-editor/js-runtime": "^0.4.4",
"@mdi/font": "^7.4.47",
"@swc/wasm-web": "^1.6.7",
"@tauri-apps/api": "^1.2.0",
"@types/lz-string": "^1.3.34",
"bridge-common-utils": "^0.3.3",
"bridge-iframe-api": "^0.4.11",
"bridge-js-runtime": "^0.4.1",
"bridge-model-viewer": "^0.7.7",
"buffer": "^6.0.3",
"color-convert": "^2.0.1",
Expand Down
2 changes: 0 additions & 2 deletions src/components/Data/TypeLoader.ts
Original file line number Diff line number Diff line change
Expand Up @@ -190,8 +190,6 @@ export class TypeLoader {
.filter((type) => type[0]) as [string, string?][]
}

console.log(libDefinitions)

const libs = await this.load(libDefinitions)

for (const [typePath, lib] of libs) {
Expand Down
2 changes: 1 addition & 1 deletion src/components/Extensions/Scripts/JsRuntime.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { Runtime } from 'bridge-js-runtime'
import { Runtime } from '@bridge-editor/js-runtime'
import { App } from '/@/App'
import { dirname } from '/@/utils/path'

Expand Down
2 changes: 1 addition & 1 deletion src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import jsonWorker from 'monaco-editor/esm/vs/language/json/json.worker.js?worker
import cssWorker from 'monaco-editor/esm/vs/language/css/css.worker.js?worker'
import htmlWorker from 'monaco-editor/esm/vs/language/html/html.worker.js?worker'
import tsWorker from 'monaco-editor/esm/vs/language/typescript/ts.worker.js?worker'
import { initRuntimes } from 'bridge-js-runtime'
import { initRuntimes } from '@bridge-editor/js-runtime'
import wasmUrl from '@swc/wasm-web/wasm_bg.wasm?url'
import './main.css'

Expand Down

0 comments on commit 9788f0a

Please sign in to comment.