Skip to content
Snippets Groups Projects
Verified Commit c6f4dd4c authored by Jan Loewe's avatar Jan Loewe :speech_balloon:
Browse files

chore(pkg): replace npm-run-all with concurrently

parent e161d355
No related branches found
No related tags found
No related merge requests found
......@@ -7,13 +7,13 @@
"typings": "lib/index.d.ts",
"scripts": {
"build": "tsc -p tsconfig.json",
"fix": "run-s fix:*",
"fix": "concurrently -m 1 \"npm:fix:*\"",
"fix:prettier": "prettier \"src/**/*.ts\" --write",
"fix:lint": "eslint src --ext .ts --fix",
"test": "run-s test:*",
"test:unit": "jest",
"test": "concurrently -m 1 \"npm:test:*\"",
"test:lint": "eslint src --ext .ts",
"test:prettier": "prettier \"src/**/*.ts\" --list-different",
"test:unit": "jest",
"prepare": "yarn run build",
"prepublishOnly": "yarn run test",
"preversion": "yarn run test"
......@@ -27,6 +27,7 @@
"@types/node": "^18.16.2",
"@typescript-eslint/eslint-plugin": "^5.56.0",
"@typescript-eslint/parser": "^5.56.0",
"concurrently": "^8.2.0",
"eslint": "^8.36.0",
"eslint-config-prettier": "^8.8.0",
"fast-check": "^3.7.1",
......@@ -35,7 +36,6 @@
"jest-junit": "^16.0.0",
"jsdom": "^21.1.1",
"lodash": "^4.17.21",
"npm-run-all": "^4.1.5",
"prettier": "^2.8.6",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.1",
......
File suppressed by a .gitattributes entry or the file's encoding is unsupported.
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment