mirror of
https://github.com/marocchino/sticky-pull-request-comment.git
synced 2026-04-10 08:20:07 +00:00
* Initial plan
* Replace @vercel/ncc with esbuild to support @actions/core@3.0.0 (ESM-only)
Co-authored-by: marocchino <128431+marocchino@users.noreply.github.com>
* 📦️ Build
* Replace esbuild with rimraf + rollup for packaging
Co-authored-by: marocchino <128431+marocchino@users.noreply.github.com>
* Remove rollup.config.js build artifact from git tracking
Co-authored-by: marocchino <128431+marocchino@users.noreply.github.com>
* Remove yarn, switch to npm
Co-authored-by: marocchino <128431+marocchino@users.noreply.github.com>
---------
Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>
Co-authored-by: marocchino <128431+marocchino@users.noreply.github.com>
Co-authored-by: marocchino <marocchino@users.noreply.github.com>
18 lines
458 B
TypeScript
18 lines
458 B
TypeScript
// See: https://rollupjs.org/introduction/
|
|
|
|
import commonjs from "@rollup/plugin-commonjs"
|
|
import nodeResolve from "@rollup/plugin-node-resolve"
|
|
import typescript from "@rollup/plugin-typescript"
|
|
|
|
const config = {
|
|
input: "src/main.ts",
|
|
output: {
|
|
esModule: true,
|
|
file: "dist/index.js",
|
|
format: "es",
|
|
sourcemap: true,
|
|
},
|
|
plugins: [typescript({outDir: "dist"}), nodeResolve({preferBuiltins: true}), commonjs()],
|
|
}
|
|
|
|
export default config
|