ci fix
Some checks failed
CI / frontend (push) Failing after 1m50s
CI / publish-crates (push) Has been cancelled
CI / publish-npm (push) Has been cancelled
CI / wasm (push) Has been cancelled
CI / rust (push) Successful in 48s

This commit is contained in:
2026-04-07 01:52:29 +03:00
parent 603624724c
commit 33f7556b03
3 changed files with 10 additions and 2 deletions

View File

@@ -28,6 +28,13 @@ jobs:
steps:
- uses: actions/checkout@v4
- uses: oven-sh/setup-bun@v2
- uses: dtolnay/rust-toolchain@stable
with:
targets: wasm32-unknown-unknown
- name: Install wasm-pack
run: curl https://rustwasm.github.io/wasm-pack/installer/init.sh -sSf | sh
- name: Build WASM
run: wasm-pack build layout-engine --target web --release --out-dir ../frontend/src/core/wasm-layout
- name: Install dependencies
run: cd frontend && bun install
- name: Type check

1
frontend/.npmrc Normal file
View File

@@ -0,0 +1 @@
@duhanbalci:registry=https://gitea.duhanbalci.com/api/packages/duhanbalci/npm/

View File

@@ -2,8 +2,8 @@
import { ref, onMounted, onBeforeUnmount, watch, computed } from 'vue'
import { EditorView, lineNumbers } from '@codemirror/view'
import { EditorState } from '@codemirror/state'
import { dexpr } from 'codemirror-lang-dexpr'
import type { DexprLanguageInfo } from 'codemirror-lang-dexpr'
import { dexpr } from '@duhanbalci/codemirror-lang-dexpr'
import type { DexprLanguageInfo } from '@duhanbalci/codemirror-lang-dexpr'
import { useSchemaStore } from '../../stores/schema'
import type { SchemaNode } from '../../core/schema-parser'