We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5a15d00 commit 195ada0Copy full SHA for 195ada0
action/index.js
@@ -1,5 +1,5 @@
1
-const { monitorIssues } = require("./monitor-new-issue");
2
-const { monitorPRs } = require("./monitor-new-pr");
+const monitorIssues = require("./monitor-new-issue");
+const monitorPRs = require("./monitor-new-pr");
3
4
const core = require("@actions/core");
5
package.json
@@ -4,7 +4,8 @@
"description": "A GitHub Action to monitor a repository for new issues and PRs and send notifications to different channels.",
"main": "index.js",
6
"scripts": {
7
- "start": "node index.js"
+ "start": "node index.js",
8
+ "prepare": "ncc build action/index.js -o dist --source-map --license licenses.txt"
9
},
10
"repository": {
11
"type": "git",
0 commit comments