mirror of
https://github.com/rowyio/rowy.git
synced 2025-12-29 00:16:39 +01:00
remove local yarn script
This commit is contained in:
@@ -115,7 +115,7 @@ module.exports.deployToFirebaseHosting = (projectId, dir = "firetable/www") =>
|
||||
|
||||
module.exports.startFiretableLocally = (dir = "firetable/www") =>
|
||||
new Promise((resolve) => {
|
||||
const child = spawn("npm", ["run", "start"], { cwd: dir });
|
||||
const child = spawn("npm", ["run", "serve"], { cwd: dir });
|
||||
child.stdout.on("data", (data) => {
|
||||
const msg = data.toString();
|
||||
const portRegex = /^INFO: Accepting connections at (http:\/\/[\w\.]+:\d+)/;
|
||||
|
||||
@@ -51,8 +51,8 @@
|
||||
"yup": "^0.27.0"
|
||||
},
|
||||
"scripts": {
|
||||
"start": "serve -s build",
|
||||
"local": "react-scripts start",
|
||||
"serve": "serve -s build",
|
||||
"start": "react-scripts start",
|
||||
"build": "react-scripts build",
|
||||
"test": "react-scripts test --env=jsdom",
|
||||
"eject": "react-scripts eject",
|
||||
|
||||
Reference in New Issue
Block a user