From d284f0ddf231a468edcb59009508ccdafb5bd82a Mon Sep 17 00:00:00 2001 From: Arthur Lu Date: Sun, 20 Nov 2022 14:17:10 -0800 Subject: [PATCH] change some npm scripts Signed-off-by: Arthur Lu --- package.json | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/package.json b/package.json index 6ea0de5..be9a691 100644 --- a/package.json +++ b/package.json @@ -4,10 +4,11 @@ "type": "module", "scripts": { "test": "mocha --recursive --require mock-local-storage './{,!(node_modules)/**}/*.test.js'", - "lint": "eslint **/*.js", - "fix-style": "eslint --fix **/*.js", - "lintHTML": "htmlhint **/*.html", - "lintCSS": "stylelint **/*.css", + "lint-js": "eslint **/*.js", + "fix-js": "eslint --fix **/*.js", + "lint-html": "htmlhint **/*.html", + "lint-css": "stylelint **/*.css", + "fix-css": "stylelint --fix **/*.css", "http-server": "http-server source" }, "devDependencies": {