-
Notifications
You must be signed in to change notification settings - Fork 566
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: adjust pkg json scripts and remove redundant test workflow
- Loading branch information
1 parent
c6e3357
commit ee20ed4
Showing
3 changed files
with
14 additions
and
29 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -44,12 +44,15 @@ | |
"types" | ||
], | ||
"scripts": { | ||
"format": "run-p format:*", | ||
"format:eslint": "eslint --file index.js \"lib/**/*.js\" \"__tests__/**/*.js\" --fix", | ||
"format:prettier": "prettier \"**/*.{js,md}\" \"package.json\" --write", | ||
"lint": "run-p lint:*", | ||
"lint:eslint": "eslint --fix index.js \"lib/**/*.js\" \"__tests__/**/*.js\"", | ||
"lint:prettier": "prettier \"**/*.{js,md}\" \"package.json\" --list-different || (echo '↑↑ these files are not prettier formatted ↑↑' && exit 1)", | ||
"test": "npm run test-types && run-p lint:* && jest --runInBand --silent --coverage", | ||
"test-types": "tsd", | ||
"test": "run-p test:*", | ||
"test:unit": "jest --runInBand --silent --coverage", | ||
"test:types": "tsd", | ||
"test-watch": "npm run test-types && run-p lint:* && jest --runInBand --watch", | ||
"generate-docs": "node ./scripts/generateDocs.js", | ||
"serve-docs": "docsify serve docs -p 3000 -P 12345", | ||
|
@@ -130,7 +133,8 @@ | |
"Yuliya Baran <[email protected]>", | ||
"Charles Dorner <[email protected]>", | ||
"Dustin Boudreau <[email protected]>", | ||
"Danny Banks <[email protected]>" | ||
"Danny Banks <[email protected]>", | ||
"Joren Broekema <[email protected]>" | ||
], | ||
"homepage": "https://github.com/amzn/style-dictionary", | ||
"dependencies": { | ||
|