diff --git a/README.md b/README.md index 0052be8..9f31163 100644 --- a/README.md +++ b/README.md @@ -66,7 +66,7 @@ See the [toolkit documentation](https://github.com/actions/toolkit/blob/master/R ## Package for distribution -Actions are run from GitHub repos. Packaging the action will create a self encapsulated distribution runnable from the GitHub graph. +Actions are run from GitHub repos. Packaging the action will create a packaged action in the dist folder. Comment out node_modules in .gitignore and create a releases/v1 branch ```bash diff --git a/package-lock.json b/package-lock.json index a721404..42fa6b6 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1209,31 +1209,6 @@ "integrity": "sha512-Dj6Wk3tWyTE+Fo1rW8v0Xhwk80um6yFYKbuAxc9c3EZxIHFDYwbi34Uk42u1CdnIiVorvt4RmlSDjIPyzGC2ew==", "dev": true }, - "dist": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/dist/-/dist-0.1.2.tgz", - "integrity": "sha1-iJhinMJRKX420TVKmpWYYZq6Wxo=", - "requires": { - "filesize": "~1.6.6", - "optimist": "~0.3.5", - "uglify-js": "~1.3.4" - }, - "dependencies": { - "optimist": { - "version": "0.3.7", - "resolved": "https://registry.npmjs.org/optimist/-/optimist-0.3.7.tgz", - "integrity": "sha1-yQlBrVnkJzMokjB00s8ufLxuwNk=", - "requires": { - "wordwrap": "~0.0.2" - } - }, - "uglify-js": { - "version": "1.3.5", - "resolved": "https://registry.npmjs.org/uglify-js/-/uglify-js-1.3.5.tgz", - "integrity": "sha1-S1v/+Rhu/7qoiOTJ6UvZ/EyUkp0=" - } - } - }, "doctrine": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-3.0.0.tgz", @@ -1712,11 +1687,6 @@ "flat-cache": "^2.0.1" } }, - "filesize": { - "version": "1.6.7", - "resolved": "https://registry.npmjs.org/filesize/-/filesize-1.6.7.tgz", - "integrity": "sha1-DQrPJoUeKnM5/8RayH48Lt/w6W4=" - }, "fill-range": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-4.0.0.tgz", @@ -5287,7 +5257,8 @@ "wordwrap": { "version": "0.0.3", "resolved": "https://registry.npmjs.org/wordwrap/-/wordwrap-0.0.3.tgz", - "integrity": "sha1-o9XabNXAvAAI03I0u68b7WMFkQc=" + "integrity": "sha1-o9XabNXAvAAI03I0u68b7WMFkQc=", + "dev": true }, "wrap-ansi": { "version": "5.1.0", diff --git a/package.json b/package.json index 9eb9e8e..693ad24 100644 --- a/package.json +++ b/package.json @@ -24,8 +24,7 @@ }, "homepage": "https://github.com/actions/javascript-action#readme", "dependencies": { - "@actions/core": "^1.1.1", - "dist": "^0.1.2" + "@actions/core": "^1.1.1" }, "devDependencies": { "@zeit/ncc": "^0.20.5",