-
- Downloads
chore(pkg): replace npm-run-all with concurrently
... | @@ -7,13 +7,13 @@ | ... | @@ -7,13 +7,13 @@ |
"typings": "lib/index.d.ts", | "typings": "lib/index.d.ts", | ||
"scripts": { | "scripts": { | ||
"build": "tsc -p tsconfig.json", | "build": "tsc -p tsconfig.json", | ||
"fix": "run-s fix:*", | "fix": "concurrently -m 1 \"npm:fix:*\"", | ||
"fix:prettier": "prettier \"src/**/*.ts\" --write", | "fix:prettier": "prettier \"src/**/*.ts\" --write", | ||
"fix:lint": "eslint src --ext .ts --fix", | "fix:lint": "eslint src --ext .ts --fix", | ||
"test": "run-s test:*", | "test": "concurrently -m 1 \"npm:test:*\"", | ||
"test:unit": "jest", | |||
"test:lint": "eslint src --ext .ts", | "test:lint": "eslint src --ext .ts", | ||
"test:prettier": "prettier \"src/**/*.ts\" --list-different", | "test:prettier": "prettier \"src/**/*.ts\" --list-different", | ||
"test:unit": "jest", | |||
"prepare": "yarn run build", | "prepare": "yarn run build", | ||
"prepublishOnly": "yarn run test", | "prepublishOnly": "yarn run test", | ||
"preversion": "yarn run test" | "preversion": "yarn run test" | ||
... | @@ -27,6 +27,7 @@ | ... | @@ -27,6 +27,7 @@ |
"@types/node": "^18.16.2", | "@types/node": "^18.16.2", | ||
"@typescript-eslint/eslint-plugin": "^5.56.0", | "@typescript-eslint/eslint-plugin": "^5.56.0", | ||
"@typescript-eslint/parser": "^5.56.0", | "@typescript-eslint/parser": "^5.56.0", | ||
"concurrently": "^8.2.0", | |||
"eslint": "^8.36.0", | "eslint": "^8.36.0", | ||
"eslint-config-prettier": "^8.8.0", | "eslint-config-prettier": "^8.8.0", | ||
"fast-check": "^3.7.1", | "fast-check": "^3.7.1", | ||
... | @@ -35,7 +36,6 @@ | ... | @@ -35,7 +36,6 @@ |
"jest-junit": "^16.0.0", | "jest-junit": "^16.0.0", | ||
"jsdom": "^21.1.1", | "jsdom": "^21.1.1", | ||
"lodash": "^4.17.21", | "lodash": "^4.17.21", | ||
"npm-run-all": "^4.1.5", | |||
"prettier": "^2.8.6", | "prettier": "^2.8.6", | ||
"ts-jest": "^29.1.0", | "ts-jest": "^29.1.0", | ||
"ts-node": "^10.9.1", | "ts-node": "^10.9.1", | ||
... | ... |
File suppressed by a .gitattributes entry or the file's encoding is unsupported.
Please register or sign in to comment