1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-07-26 13:48:33 +02:00

chore: Use yarn for scripts

This commit is contained in:
Christopher Kolstad 2021-01-26 10:10:37 +01:00
parent da049865ee
commit 73f54e8288
No known key found for this signature in database
GPG Key ID: 319DE53FE911815A

View File

@ -37,11 +37,11 @@
"start:dev": "NODE_ENV=development supervisor --ignore ./node_modules/,website server-dev.js",
"db-migrate": "db-migrate",
"lint": "eslint .",
"pretest": "npm run lint",
"pretest": "yarn run lint",
"test": "NODE_ENV=test PORT=4243 ava",
"test:docker": "./scripts/docker-postgres.sh",
"test:watch": "npm run test -- --watch",
"test:coverage": "nyc --reporter=lcov npm run test",
"test:watch": "yarn test --watch",
"test:coverage": "nyc --reporter=lcov yarn test",
"test:coverage-report": "nyc report --reporter=text-lcov | coveralls"
},
"nyc": {