Compare commits
2 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| d4d6b09364 | |||
| 3868baa51f |
+1
-1
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "sticky-pull-request-comment",
|
||||
"version": "3.0.1",
|
||||
"version": "3.0.3",
|
||||
"private": true,
|
||||
"description": "Create comment on pull request, if exists update that comment.",
|
||||
"main": "lib/main.js",
|
||||
|
||||
@@ -7,12 +7,6 @@ import typescript from "@rollup/plugin-typescript"
|
||||
const config = {
|
||||
context: "globalThis",
|
||||
input: "src/main.ts",
|
||||
onwarn: (warning, warn) => {
|
||||
if (warning.code === "CIRCULAR_DEPENDENCY" && warning.ids?.every(id => id.includes("/node_modules/"))) {
|
||||
return
|
||||
}
|
||||
warn(warning)
|
||||
},
|
||||
output: {
|
||||
exports: "auto",
|
||||
file: "dist/index.js",
|
||||
|
||||
+3
-3
@@ -15,13 +15,13 @@
|
||||
"noUnusedLocals": true,
|
||||
"noUnusedParameters": false,
|
||||
"outDir": "./dist",
|
||||
"rootDir": "./src",
|
||||
"types": ["node"],
|
||||
"pretty": true,
|
||||
"resolveJsonModule": true,
|
||||
"rootDir": "./src",
|
||||
"strict": true,
|
||||
"strictNullChecks": true,
|
||||
"target": "ES2022"
|
||||
"target": "ES2022",
|
||||
"types": ["node"]
|
||||
},
|
||||
"exclude": ["node_modules", "**/*.test.ts", "dist"],
|
||||
"include": ["src"]
|
||||
|
||||
Reference in New Issue
Block a user