Skip to content
Closed
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 .github/actions/build-upstream/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,6 @@ runs:
- name: Build upstream TypeScript packages
shell: bash
run: |
pnpm --filter @rolldown/pluginutils build
pnpm --filter rolldown build-node
pnpm --filter vite build-types
pnpm --filter "@voidzero-dev/*" build
Expand Down
1 change: 1 addition & 0 deletions Cargo.lock

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

1 change: 0 additions & 1 deletion justfile
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,6 @@ _fix_symlinks:

build:
pnpm install
pnpm --filter @rolldown/pluginutils build
pnpm --filter rolldown build-binding:release
pnpm --filter rolldown build-node
pnpm --filter vite build-types
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
failed to load config from <cwd>/vite.config.ts
Failed to load vite.config: Build failed with 1 error:

[PARSE_ERROR] Error: Unexpected token
[PARSE_ERROR] Unexpected token
╭─[ vite.config.ts:5:42 ]
5 │ // syntax error: missing closing brace
Expand Down
3 changes: 3 additions & 0 deletions packages/core/build.ts
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,9 @@ const rolldownPluginUtilsDir = resolve(
'..',
'rolldown',
'packages',
'rolldown',
'node_modules',
'@rolldown',
'pluginutils',
);

Expand Down
16 changes: 5 additions & 11 deletions packages/core/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -85,14 +85,8 @@
"default": "./dist/rolldown/plugins-index.mjs",
"types": "./dist/rolldown/plugins-index.d.mts"
},
"./rolldown/pluginutils": {
"default": "./dist/pluginutils/index.js",
"types": "./dist/pluginutils/index.d.ts"
},
"./rolldown/pluginutils/filter": {
"default": "./dist/pluginutils/filter/index.js",
"types": "./dist/pluginutils/filter/index.d.ts"
},
"./rolldown/pluginutils": "./dist/pluginutils/index.mjs",
"./rolldown/pluginutils/filter": "./dist/pluginutils/filter/index.mjs",
"./rolldown/utils": {
"default": "./dist/rolldown/utils-index.mjs",
"types": "./dist/rolldown/utils-index.d.mts"
Expand All @@ -118,7 +112,7 @@
"@babel/types": "^7.28.5",
"@oxc-node/cli": "catalog:",
"@oxc-node/core": "catalog:",
"@vitejs/devtools": "^0.1.21",
"@vitejs/devtools": "^0.1.22",
"es-module-lexer": "^1.7.0",
"hookable": "^6.0.1",
"magic-string": "^0.30.21",
Expand Down Expand Up @@ -224,8 +218,8 @@
"node": "^20.19.0 || >=22.12.0"
},
"bundledVersions": {
"vite": "8.0.11",
"rolldown": "1.0.0",
"vite": "8.0.12",
"rolldown": "1.0.1",
"tsdown": "0.22.0"
}
}
32 changes: 16 additions & 16 deletions packages/test/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -293,17 +293,17 @@
"@blazediff/core": "1.9.1",
"@oxc-node/cli": "catalog:",
"@oxc-node/core": "catalog:",
"@vitest/browser": "4.1.5",
"@vitest/browser-playwright": "4.1.5",
"@vitest/browser-preview": "4.1.5",
"@vitest/browser-webdriverio": "4.1.5",
"@vitest/expect": "4.1.5",
"@vitest/mocker": "4.1.5",
"@vitest/pretty-format": "4.1.5",
"@vitest/runner": "4.1.5",
"@vitest/snapshot": "4.1.5",
"@vitest/spy": "4.1.5",
"@vitest/utils": "4.1.5",
"@vitest/browser": "4.1.6",
"@vitest/browser-playwright": "4.1.6",
"@vitest/browser-preview": "4.1.6",
"@vitest/browser-webdriverio": "4.1.6",
"@vitest/expect": "4.1.6",
"@vitest/mocker": "4.1.6",
"@vitest/pretty-format": "4.1.6",
"@vitest/runner": "4.1.6",
"@vitest/snapshot": "4.1.6",
"@vitest/spy": "4.1.6",
"@vitest/utils": "4.1.6",
"chai": "^6.2.1",
"convert-source-map": "^2.0.0",
"estree-walker": "^3.0.3",
Expand All @@ -316,16 +316,16 @@
"rolldown": "workspace:*",
"rolldown-plugin-dts": "catalog:",
"tinyrainbow": "^3.1.0",
"vitest-dev": "^4.1.5",
"vitest-dev": "^4.1.6",
"why-is-node-running": "^2.3.0"
},
"peerDependencies": {
"@edge-runtime/vm": "*",
"@opentelemetry/api": "^1.9.0",
"@types/node": "^20.0.0 || ^22.0.0 || >=24.0.0",
"@vitest/coverage-istanbul": "4.1.5",
"@vitest/coverage-v8": "4.1.5",
"@vitest/ui": "4.1.5",
"@vitest/coverage-istanbul": "4.1.6",
"@vitest/coverage-v8": "4.1.6",
"@vitest/ui": "4.1.6",
"happy-dom": "*",
"jsdom": "*",
"vite": "^6.0.0 || ^7.0.0 || ^8.0.0"
Expand Down Expand Up @@ -363,6 +363,6 @@
"node": "^20.0.0 || ^22.0.0 || >=24.0.0"
},
"bundledVersions": {
"vitest": "4.1.5"
"vitest": "4.1.6"
}
}
4 changes: 2 additions & 2 deletions packages/tools/.upstream-versions.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@
"rolldown": {
"repo": "https://github.com/rolldown/rolldown.git",
"branch": "main",
"hash": "ac5c71025a639d394a0db9c3a921b7eda5d71a88"
"hash": "27779450b5986931e7c798184ec3aa82e60e7090"
},
"vite": {
"repo": "https://github.com/vitejs/vite.git",
"branch": "main",
"hash": "66f3194aa8e59924562575f0a98e7f4ae0acdd89"
"hash": "4dce8b44d7f844d2b68aabb4e10fa267879cd1a6"
}
}
6 changes: 6 additions & 0 deletions packages/tools/src/sync-remote-deps.ts
Original file line number Diff line number Diff line change
Expand Up @@ -735,10 +735,16 @@ export async function syncRemote() {
const corePackagePath = join(rootDir, CORE_PACKAGE_PATH, 'package.json');
const rolldownPackagePath = join(rootDir, ROLLDOWN_DIR, 'packages', 'rolldown', 'package.json');
const rolldownVitePackagePath = join(rootDir, VITE_DIR, 'packages', 'vite', 'package.json');
// `@rolldown/pluginutils` was moved out of the rolldown monorepo into a
// standalone package on npm (rolldown/plugins). Resolve the installed copy
// via pnpm's hoisted node_modules under the rolldown package.
const pluginutilsPackagePath = join(
rootDir,
ROLLDOWN_DIR,
'packages',
'rolldown',
'node_modules',
'@rolldown',
'pluginutils',
'package.json',
);
Expand Down
Loading
Loading