mirror of
https://github.com/marocchino/sticky-pull-request-comment.git
synced 2026-03-29 02:29:25 +00:00
* Fix failed ncc build (#1657) * 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> * 🔖 Version bump * 💚 Update condition * 🔧 Update tsconfig * Fix ERR_PACKAGE_PATH_NOT_EXPORTED with Node.js v24 and ESM-only @actions packages (#1659) * Initial plan * Initial plan for fixing ESM-only @actions packages build failure Co-authored-by: marocchino <128431+marocchino@users.noreply.github.com> * Fix build failure: update tsconfig and rollup config for ESM-only @actions packages 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: Copilot <198982749+Copilot@users.noreply.github.com> Co-authored-by: marocchino <128431+marocchino@users.noreply.github.com>
98 lines
1.5 KiB
Text
98 lines
1.5 KiB
Text
__tests__/runner/*
|
|
|
|
lib/*
|
|
rollup.config.js
|
|
# ^^^ compiled output of rollup.config.ts (generated by --configPlugin at build time)
|
|
# comment out in distribution branches
|
|
node_modules/
|
|
|
|
# Rest pulled from https://github.com/github/gitignore/blob/master/Node.gitignore
|
|
# Logs
|
|
logs
|
|
*.log
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.log*
|
|
lerna-debug.log*
|
|
|
|
# Diagnostic reports (https://nodejs.org/api/report.html)
|
|
report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json
|
|
|
|
# Runtime data
|
|
pids
|
|
*.pid
|
|
*.seed
|
|
*.pid.lock
|
|
|
|
# Directory for instrumented libs generated by jscoverage/JSCover
|
|
lib-cov
|
|
|
|
# Coverage directory used by tools like istanbul
|
|
coverage
|
|
*.lcov
|
|
|
|
# nyc test coverage
|
|
.nyc_output
|
|
|
|
# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
|
|
.grunt
|
|
|
|
# Bower dependency directory (https://bower.io/)
|
|
bower_components
|
|
|
|
# node-waf configuration
|
|
.lock-wscript
|
|
|
|
# Compiled binary addons (https://nodejs.org/api/addons.html)
|
|
build/Release
|
|
|
|
# Dependency directories
|
|
jspm_packages/
|
|
|
|
# TypeScript v1 declaration files
|
|
typings/
|
|
|
|
# TypeScript cache
|
|
*.tsbuildinfo
|
|
|
|
# Optional npm cache directory
|
|
.npm
|
|
|
|
# Optional eslint cache
|
|
.eslintcache
|
|
|
|
# Optional REPL history
|
|
.node_repl_history
|
|
|
|
# Output of 'npm pack'
|
|
*.tgz
|
|
|
|
# Yarn lock file
|
|
yarn.lock
|
|
|
|
# dotenv environment variables file
|
|
.env
|
|
.env.test
|
|
|
|
# parcel-bundler cache (https://parceljs.org/)
|
|
.cache
|
|
|
|
# next.js build output
|
|
.next
|
|
|
|
# nuxt.js build output
|
|
.nuxt
|
|
|
|
# vuepress build output
|
|
.vuepress/dist
|
|
|
|
# Serverless directories
|
|
.serverless/
|
|
|
|
# FuseBox cache
|
|
.fusebox/
|
|
|
|
# DynamoDB Local files
|
|
.dynamodb/
|
|
|
|
.vscode/
|