From: Iskren Chernev Date: Tue, 28 Apr 2020 19:14:50 +0000 (+0300) Subject: Change prettier args to work on Windows as well X-Git-Tag: 2.25.0~15 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=f9e42d2cf88b41087d8bf9e6cebc43f48a2ed7f8;p=thirdparty%2Fmoment.git Change prettier args to work on Windows as well --- diff --git a/package.json b/package.json index 518a17aad..5d2dd8bd2 100644 --- a/package.json +++ b/package.json @@ -96,8 +96,8 @@ "typescript-test": "node_modules/typescript/bin/tsc --project typing-tests", "test": "grunt test", "eslint": "eslint Gruntfile.js tasks src", - "prettier-check": "prettier --check Gruntfile.js 'tasks/*.js' 'src/**/*.js'", - "prettier-fmt": "prettier --write Gruntfile.js 'tasks/*.js' 'src/**/*.js'", + "prettier-check": "prettier --check Gruntfile.js tasks src", + "prettier-fmt": "prettier --write Gruntfile.js tasks src", "coverage": "nyc npm test && nyc report", "coveralls": "nyc npm test && nyc report --reporter=text-lcov | coveralls" },