From aab8166ea1b0aa68b23edec40ebec6d4c726ad32 Mon Sep 17 00:00:00 2001 From: David Anson Date: Wed, 13 Jan 2021 14:17:17 -0800 Subject: [PATCH] Minor cleanup of unused/irrelevant components. --- .gitignore | 4 ---- markdownlint-cli2-action.js | 1 - package.json | 2 -- 3 files changed, 7 deletions(-) diff --git a/.gitignore b/.gitignore index 27903a0..eb96cee 100644 --- a/.gitignore +++ b/.gitignore @@ -2,13 +2,9 @@ logs *.log npm-debug.log* -yarn-debug.log* -yarn-error.log* -lerna-debug.log* # Dependency directories node_modules/ -jspm_packages/ # Optional npm cache directory .npm diff --git a/markdownlint-cli2-action.js b/markdownlint-cli2-action.js index 8a11252..eca2dd2 100644 --- a/markdownlint-cli2-action.js +++ b/markdownlint-cli2-action.js @@ -3,7 +3,6 @@ "use strict"; const core = require("@actions/core"); -// const github = require("@actions/github"); const { "main": markdownlintCli2 } = require("markdownlint-cli2"); const logMessage = core.info; diff --git a/package.json b/package.json index 1f7108e..a746b79 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,5 @@ { "name": "markdownlint-cli2-action", - "version": "0.0.1", "description": "A GitHub Action to run the markdownlint-cli2 tool for linting Markdown/CommonMark files with the markdownlint library", "author": { "name": "David Anson", @@ -18,7 +17,6 @@ }, "dependencies": { "@actions/core": "~1.2.6", - "@actions/github": "~4.0.0", "markdownlint-cli2": "~0.0.13" }, "devDependencies": {