Improve ergonomics of npm build system

This commit is contained in:
Keavon Chambers
2021-04-10 19:20:10 -07:00
parent 4d10459a7b
commit 1ecff2e04e
4 changed files with 258 additions and 99 deletions

11
package.json Normal file
View File

@@ -0,0 +1,11 @@
{
"name": "graphite-web-client-root-shortcut",
"version": "1.0.0",
"description": "A convenience package for calling the real package.json in /client/web.",
"private": true,
"scripts": {
"serve": "cd client && cd web && npm run serve",
"build": "cd client && cd web && npm run build",
"lint": "cd client && cd web && npm run lint"
}
}