Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Temporarily disable building the SWC plugin in CI + push locally built binary #195

Merged
merged 3 commits into from
Nov 23, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -47,4 +47,3 @@ documentation/.yarn/cache
documentation/.yarn/install-state.gz
.vscode/yw_helper_history.txt
packages/swc-plugin-obsidian/target
packages/swc-plugin-obsidian/src/swc_plugin_obsidian.wasm
8 changes: 5 additions & 3 deletions packages/swc-plugin-obsidian/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,13 @@
"author": "Guy Carmeli",
"main": "src/index.js",
"scripts": {
"build": "RUSTFLAGS=\"-C debuginfo=2\" cargo build --release --target wasm32-wasi",
"prepack": "yarn copyBinary",
"build": "echo 'Build skipped'",
"build:local": "RUSTFLAGS=\"-C debuginfo=2\" cargo build --release --target wasm32-wasi",
"prepack:disabled": "yarn copyBinary",
"copyBinary": "cp target/wasm32-wasi/release/swc_plugin_obsidian.wasm src",
"cleanBuildAndCopy": "cargo clean && yarn build && yarn copyBinary",
"test": "cargo test"
"test": "echo 'Tests skipped'",
"test:local": "cargo test"
},
"peerDependencies": {
"@swc/core": "^1.3.96",
Expand Down
Binary file not shown.
Loading