|
33 | 33 | "@rollup/plugin-node-resolve": "^13.0.0", |
34 | 34 | "@rollup/plugin-replace": "^2.4.2", |
35 | 35 | "@rollup/pluginutils": "^4.1.0", |
| 36 | + "@rspack/cli": "^1.2.7", |
| 37 | + "@rspack/core": "^1.2.7", |
36 | 38 | "@types/debug": "^4.1.5", |
37 | 39 | "@types/eslint": "^9.6.1", |
38 | 40 | "@types/js-yaml": "^4.0.3", |
|
109 | 111 | "build:example": "run-s \"build:example:vite {@}\" \"build:example:webpack\" --", |
110 | 112 | "build:example:vite": "cd examples/vite && vite build --config ./vite.config.ts --outDir ./dist", |
111 | 113 | "build:example:webpack": "pnpm build && webpack --config ./examples/webpack/webpack.config.js", |
| 114 | + "build:example:rspack": "pnpm build && rspack --config ./examples/rspack/rsbuild.config.js", |
112 | 115 | "play:vite": "vite examples/vite -c examples/vite/vite.config.ts", |
113 | 116 | "play:webpack": "pnpm run build:unplugin && webpack serve --config ./examples/webpack/webpack.config.js", |
| 117 | + "play:rspack": "rspack dev --config ./examples/rspack/rspack.config.js", |
114 | 118 | "preview:vite": "vite preview examples/vite --outDir dist", |
115 | 119 | "check-install": "jiti scripts/playwright.ts", |
116 | 120 | "clean": "run-p \"clean:*\"", |
|
133 | 137 | "test:e2e:vite": "pnpm --filter @intlify/vite-plugin-vue-i18n test:e2e", |
134 | 138 | "test:e2e:webpack": "pnpm --filter @intlify/vue-i18n-loader test:e2e", |
135 | 139 | "test:e2e:unplugin": "pnpm --filter @intlify/unplugin-vue-i18n test:e2e", |
136 | | - "test:unit": "run-s \"test:unit:utils {@}\" \"test:unit:unplugin {@}\" --", |
| 140 | + "test:unit": "run-s \"test:unit:utils {@}\" \"test:unit:unplugin\" --", |
137 | 141 | "test:unit:utils": "vitest run packages/bundle-utils", |
138 | 142 | "test:unit:rollup": "vitest run packages/rollup-plugin-vue-i18n/test", |
139 | 143 | "test:unit:unplugin": "vitest run packages/unplugin-vue-i18n/test", |
| 144 | + "test:unit:unplugin-all": "run-s \"test:unit:unplugin:*\"", |
| 145 | + "test:unit:unplugin:vite": "TEST_FRAMEWORK=vite vitest run packages/unplugin-vue-i18n/test", |
| 146 | + "test:unit:unplugin:webpack": "TEST_FRAMEWORK=webpack vitest run packages/unplugin-vue-i18n/test", |
| 147 | + "test:unit:unplugin:rspack": "TEST_FRAMEWORK=rspack vitest run packages/unplugin-vue-i18n/test", |
140 | 148 | "changelog": "jiti ./scripts/changelog.ts", |
141 | 149 | "changelog:utils": "pnpm --filter @intlify/bundle-utils changelog", |
142 | 150 | "changelog:rollup": "pnpm --filter @intlify/rollup-plugin-vue-i18n changelog", |
|
0 commit comments