Skip to content

Commit

Permalink
feat: standardize on one package manager
Browse files Browse the repository at this point in the history
  • Loading branch information
brent-hoover committed Dec 20, 2021
1 parent 8bdadba commit d62110a
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
12.14.1
14.18.1
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -51,15 +51,15 @@
"license": "Apache-2.0",
"sideEffects": false,
"scripts": {
"dev": "echo 'Note: dev script has been renamed to start:dev' && yarn run start:dev",
"build": "yarn run build-clean && NODE_ENV=production IS_BUILDING_NEXTJS=1 next build",
"dev": "echo 'Note: dev script has been renamed to start:dev' && npm run start:dev",
"build": "npm run build-clean && NODE_ENV=production IS_BUILDING_NEXTJS=1 next build",
"build-clean": "rimraf .next",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"start": "NODE_ENV=production next start -p 4000",
"start:dev": "NODE_ENV=development next dev -p 4000",
"test": "yarn run test:unit",
"test:ci": "yarn run test:unit --ci --runInBand --colors",
"test": "npm run test:unit",
"test:ci": "npm run test:unit --ci --runInBand --colors",
"test:unit": "NODE_ENV=jesttest jest",
"test:unit:watch": "NODE_ENV=jesttest jest --watchAll",
"test:link": "blc http://web.reaction.localhost:4000 -ro -filter=3 -e",
Expand Down

0 comments on commit d62110a

Please sign in to comment.