Skip to content

Commit 0cca910

Browse files
Merge branch 'main' into ci/node_version
2 parents 7d35aec + b82eb4d commit 0cca910

File tree

8 files changed

+6
-4
lines changed

8 files changed

+6
-4
lines changed

dist/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52940,5 +52940,5 @@ async function validateSubscription() {
5294052940
}
5294152941
}
5294252942

52943-
export { run as default };
52943+
await run();
5294452944
//# sourceMappingURL=index.js.map

dist/index.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/templates/commit.hbs

Whitespace-only changes.

dist/templates/footer.hbs

Whitespace-only changes.

dist/templates/header.hbs

Whitespace-only changes.

dist/templates/template.hbs

Whitespace-only changes.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
"scripts": {
88
"lint": "eslint src && prettier --check src",
99
"test": "vitest src",
10-
"build": "rm -rf dist && rollup -c"
10+
"build": "rollup -c"
1111
},
1212
"repository": {
1313
"type": "git",

src/index.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import axios from 'axios';
44
import parseConfig from './parseConfig.js';
55
import validatePrTitle from './validatePrTitle.js';
66

7-
export default async function run() {
7+
async function run() {
88
try {
99
await validateSubscription();
1010
const {
@@ -189,3 +189,5 @@ async function validateSubscription() {
189189
}
190190
}
191191
}
192+
193+
await run();

0 commit comments

Comments
 (0)