Skip to content

Commit

Permalink
Move run script to root. (#9)
Browse files Browse the repository at this point in the history
* Move run script to root and update yarn targets.
  • Loading branch information
squidsoup committed Jun 11, 2019
1 parent 70a3ba0 commit fb319e3
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 2 deletions.
4 changes: 4 additions & 0 deletions .gitignore
Expand Up @@ -5,6 +5,10 @@
/.pnp
.pnp.js

# run script
.docker-project
.yarn.*.hash

npm-debug.log*
yarn-debug.log*
yarn-error.log*
6 changes: 6 additions & 0 deletions package.json
@@ -1,4 +1,10 @@
{
"scripts": {
"build": "cd ui && yarn run build",
"serve": "cd ui && yarn run start",
"test": "cd ui && yarn run test",
"clean": "cd ui && yarn run clean"
},
"private": true,
"workspaces": ["ui"]
}
File renamed without changes.
4 changes: 2 additions & 2 deletions ui/package.json
Expand Up @@ -10,11 +10,11 @@
},
"scripts": {
"start": "react-scripts start",
"serve": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"lint": "eslint src"
"lint": "eslint src",
"clean": "rm -rf node_modules build"
},
"eslintConfig": {
"extends": "react-app"
Expand Down

0 comments on commit fb319e3

Please sign in to comment.