Skip to content

Commit d967f28

Browse files
committed
Fix type errors
1 parent 237b42a commit d967f28

File tree

4 files changed

+32
-11
lines changed

4 files changed

+32
-11
lines changed

dist/index.js

Lines changed: 29 additions & 6 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

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.

index.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
import core from '@actions/core';
2-
import github from '@actions/github';
1+
import * as core from '@actions/core';
2+
import * as github from '@actions/github';
33

44
import {
55
PackageCache,

package.json

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,6 @@
55
"main": "index.ts",
66
"scripts": {
77
"lint": "eslint .",
8-
"base-build": "npm ci && tsc",
9-
"build": "npm run base-build && npm exec -- @vercel/ncc build --source-map lib/src/index.js",
108
"prepare": "ncc build index.ts -o dist --source-map --license licenses.txt",
119
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js",
1210
"all": "npm run lint && npm run prepare && npm run test"

0 commit comments

Comments
 (0)