Skip to content
This repository was archived by the owner on Jul 11, 2023. It is now read-only.

Commit 93e2130

Browse files
authored
Merge pull request #5 from jonabc/fix-run
Fix importing run into main
2 parents 123cff7 + e8a6995 commit 93e2130

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

dist/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -289,7 +289,7 @@ module.exports._enoent = enoent;
289289
/***/ 31:
290290
/***/ (function(__unusedmodule, __unusedexports, __webpack_require__) {
291291

292-
const { run } = __webpack_require__(171);
292+
const run = __webpack_require__(171);
293293

294294
run();
295295

package-lock.json

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

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "sync-task-issues",
3-
"version": "0.1.0",
3+
"version": "0.1.2",
44
"description": "Marks issues and PRs referenced from checkbox lists as completed",
55
"main": "dist/index.js",
66
"scripts": {

src/main.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
const { run } = require('./sync-task-issues');
1+
const run = require('./sync-task-issues');
22

33
run();

0 commit comments

Comments
 (0)