Skip to content
Snippets Groups Projects
Commit d946ea14 authored by Reiter, Christoph's avatar Reiter, Christoph :snake:
Browse files

auth: only use yarn in package.json

npm has started to complain that yarn uses a different node binary,
so just use yarn everywhere.
parent 689d8c3f
No related branches found
No related tags found
No related merge requests found
......@@ -37,17 +37,17 @@
},
"scripts": {
"clean": "rm dist/*",
"build": "npm run build-local",
"build": "yarn run build-local",
"build-local": "rollup -c",
"build-dev": "rollup -c --environment BUILD:development",
"build-prod": "rollup -c --environment BUILD:production",
"build-demo": "rollup -c --environment BUILD:demo",
"build-test": "rollup -c --environment BUILD:test",
"i18next": "i18next-scanner",
"watch": "npm run watch-local",
"watch": "yarn run watch-local",
"watch-local": "rollup -c --watch",
"watch-dev": "rollup -c --watch --environment BUILD:development",
"test": "npm run build-test && karma start --singleRun",
"test": "yarn run build-test && karma start --singleRun",
"lint": "eslint ."
}
}
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