diff --git a/README.md b/README.md index 65780475..5c857f18 100644 --- a/README.md +++ b/README.md @@ -24,7 +24,7 @@ Detailed documentation is available at https://ecoAPM.github.io/xunit.ts - A supported TypeScript compiler - TypeScript (v4, v5) - - Vite (v2, v3, v4) + - Vite (v2, v3, v4, v5) - Rollup (v2, v3, v4) - Parcel (v1, v2) - Webpack (v5) @@ -32,12 +32,12 @@ Detailed documentation is available at https://ecoAPM.github.io/xunit.ts Note that 1.4.0 is the last release that will support legacy versions of the above; v2.0 (expected Q4 2023) will support: - Node.js 18+ - TypeScript 5+ - - Vite 4+ + - Vite 5+ - Rollup 4+ - Parcel 2+ - Webpack 5+ -Ongoing gommercial support for legacy versions is available for [Corporate, Premier, and Title Sponsors](https://github.com/sponsors/ecoAPM). +Ongoing commercial support for legacy versions is available for [Corporate, Premier, and Title Sponsors](https://github.com/sponsors/ecoAPM). ### Installation diff --git a/compiler-tests/rollup3.config.js b/compiler-tests/rollup3.config.js new file mode 100644 index 00000000..a36d93ee --- /dev/null +++ b/compiler-tests/rollup3.config.js @@ -0,0 +1,18 @@ +import typescript from "@rollup/plugin-typescript"; +import path from "path"; +import fs from "fs"; + +const files = fs.readdirSync(__dirname) + .filter(file => file.match("\\.ts$")) + .map(file => path.resolve(__dirname, file)); + +export default { + input: files, + output: { + dir: "dist/legacy-rollup3" + }, + plugins: [typescript({ + outDir: "dist/legacy-rollup3" + })], + external: ["xunit.ts"] +}; \ No newline at end of file