Skip to content

Bump the dependencies group across 1 directory with 10 updates #560

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

Merged
merged 11 commits into from
Dec 18, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
Prev Previous commit
Next Next commit
Fix RollupError with recent rollup
> [!] (plugin typescript) RollupError: [plugin typescript] @rollup/plugin-typescript: Path of Typescript compiler option 'outDir' must be located inside the same directory as the Rollup 'file' option.
  • Loading branch information
kateinoigakukun committed Dec 17, 2024
commit f3d79dd40607d9c2c8d38cffe58ce3b22890f60c
2 changes: 1 addition & 1 deletion packages/npm-packages/ruby-wasm-wasi/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@
"format": "prettier --write .",
"build:static": "./tools/pack-bindgen-src.rb ./dist",
"build:rollup": "rollup -c rollup.config.mjs",
"build:tsc": "tsc -p tsconfig.json && tsc -p tsconfig.cjs.json",
"build:tsc": "tsc -p tsconfig.esm.json && tsc -p tsconfig.cjs.json",
"build": "npm run build:rollup && npm run build:tsc && npm run build:static && ./tools/post-build.sh ./dist"
},
"devDependencies": {
Expand Down
6 changes: 6 additions & 0 deletions packages/npm-packages/ruby-wasm-wasi/tsconfig.esm.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"extends": "./tsconfig.json",
"compilerOptions": {
"outDir": "./dist/esm"
}
}
1 change: 0 additions & 1 deletion packages/npm-packages/ruby-wasm-wasi/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@
"importHelpers": true,
"allowJs": true,
"module": "ES2015",
"outDir": "./dist/esm",
"target": "es2017",
"esModuleInterop": true,
"moduleResolution": "node",
Expand Down
Loading