Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -52940,5 +52940,5 @@ async function validateSubscription() {
}
}

export { run as default };
await run();
//# sourceMappingURL=index.js.map
2 changes: 1 addition & 1 deletion dist/index.js.map

Large diffs are not rendered by default.

Empty file added dist/templates/commit.hbs
Empty file.
Empty file added dist/templates/footer.hbs
Empty file.
Empty file added dist/templates/header.hbs
Empty file.
Empty file added dist/templates/template.hbs
Empty file.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"scripts": {
"lint": "eslint src && prettier --check src",
"test": "vitest src",
"build": "rm -rf dist && rollup -c"
"build": "rollup -c"
},
"repository": {
"type": "git",
Expand Down
4 changes: 3 additions & 1 deletion src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import axios from 'axios';
import parseConfig from './parseConfig.js';
import validatePrTitle from './validatePrTitle.js';

export default async function run() {
async function run() {
try {
await validateSubscription();
const {
Expand Down Expand Up @@ -189,3 +189,5 @@ async function validateSubscription() {
}
}
}

await run();
Loading