diff --git a/.github/actions/download-exe/package-lock.json b/.github/actions/download-exe/package-lock.json index 077c80c0d..41746a966 100644 --- a/.github/actions/download-exe/package-lock.json +++ b/.github/actions/download-exe/package-lock.json @@ -1,8 +1,6 @@ { - "name": "download-exe", - "version": "1.0.0", - "lockfileVersion": 1, "requires": true, + "lockfileVersion": 1, "dependencies": { "@actions/core": { "version": "1.2.0", @@ -95,6 +93,12 @@ "resolved": "https://registry.npmjs.org/@types/node/-/node-12.12.21.tgz", "integrity": "sha512-8sRGhbpU+ck1n0PGAUgVrWrWdjSW2aqNeyC15W88GRsMpSwzv6RJGlLhE7s2RhVSOdyDmxbqlWSeThq4/7xqlA==" }, + "@zeit/ncc": { + "version": "0.21.0", + "resolved": "https://registry.npmjs.org/@zeit/ncc/-/ncc-0.21.0.tgz", + "integrity": "sha512-RUMdvVK/w78oo+yBjruZltt0kJXYar2un/1bYQ2LuHG7GmFVm+QjxzEmySwREctaJdEnBvlMdUNWd9hXHxEI3g==", + "dev": true + }, "atob-lite": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/atob-lite/-/atob-lite-2.0.0.tgz", diff --git a/.github/actions/download-exe/package.json b/.github/actions/download-exe/package.json index 5e9c92722..69b93739e 100644 --- a/.github/actions/download-exe/package.json +++ b/.github/actions/download-exe/package.json @@ -1,17 +1,15 @@ { - "name": "download-exe", - "version": "1.0.0", - "description": "", + "private": true, "main": "index.js", "scripts": { - "test": "echo \"Error: no test specified\" && exit 1" + "build": "rm -rf dist && ncc build index.js -o dist" }, - "keywords": [], - "author": "", - "license": "ISC", "dependencies": { "@actions/core": "^1.2.0", "@actions/github": "^2.0.0", "node-fetch": "^2.6.0" + }, + "devDependencies": { + "@zeit/ncc": "^0.21.0" } }