run to index (#67)

* run to index

* action.yaml route

* move to dev dep
This commit is contained in:
David Gamero
2022-02-09 11:26:07 -05:00
committed by GitHub
parent e00756a00e
commit fa870ea9a2
3 changed files with 36 additions and 17 deletions

View File

@ -13,17 +13,18 @@
"@octokit/graphql": "^4.6.1",
"semver": "^6.1.0"
},
"main": "lib/run.js",
"main": "lib/index.js",
"scripts": {
"build": "tsc --outDir ./lib --rootDir ./src",
"build": "ncc build src/run.ts -o lib",
"test": "jest",
"test-coverage": "jest --coverage"
},
"devDependencies": {
"@types/node": "^12.0.10",
"typescript": "^3.5.2",
"jest": "^26.0.1",
"@types/jest": "^25.2.2",
"ts-jest": "^25.5.1"
"@types/node": "^12.0.10",
"@vercel/ncc": "^0.33.1",
"jest": "^26.0.1",
"ts-jest": "^25.5.1",
"typescript": "^3.5.2"
}
}
}