From e02db41f99e0204502c120666280b37dcf40d630 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20Lipi=C5=84ski?= Date: Fri, 14 Apr 2017 13:18:47 +0200 Subject: [PATCH] Proper `style` npm script execution (#3103). --- package.json | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/package.json b/package.json index 6a4f674c1..93af6f38f 100644 --- a/package.json +++ b/package.json @@ -18,11 +18,7 @@ "doc:site": "node lib/main/build-doc site", "doc:sitehtml": "optional-dev-dependency marky-markdown@^9.0.1 && npm run doc:site && node lib/main/build-site", "pretest": "npm run build", - "style": "npm run style:main && npm run style:fp && npm run style:perf && npm run style:test", - "style:fp": "eslint fp/*.js lib/**/*.js", - "style:main": "eslint lodash.js", - "style:perf": "eslint perf/*.js perf/**/*.js", - "style:test": "eslint test/*.js test/**/*.js", + "style": "eslint *.js .internal/**/*.js", "test": "npm run test:main && npm run test:fp", "test:doc": "markdown-doctest doc/*.md", "test:fp": "node test/test-fp",