Skip to content

Commit 195ada0

Browse files
feat: import fix (shubhaamgupta11#11)
1 parent 5a15d00 commit 195ada0

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

action/index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
const { monitorIssues } = require("./monitor-new-issue");
2-
const { monitorPRs } = require("./monitor-new-pr");
1+
const monitorIssues = require("./monitor-new-issue");
2+
const monitorPRs = require("./monitor-new-pr");
33

44
const core = require("@actions/core");
55

package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,8 @@
44
"description": "A GitHub Action to monitor a repository for new issues and PRs and send notifications to different channels.",
55
"main": "index.js",
66
"scripts": {
7-
"start": "node index.js"
7+
"start": "node index.js",
8+
"prepare": "ncc build action/index.js -o dist --source-map --license licenses.txt"
89
},
910
"repository": {
1011
"type": "git",

0 commit comments

Comments
 (0)