|
@@ -28,6 +28,7 @@
|
|
|
"wait-for:auth": "docker/wait-for.sh localhost $AUTH_SERVER_PORT",
|
|
|
"wait-for:syncing-server": "docker/wait-for.sh localhost $SYNCING_SERVER_PORT",
|
|
|
"wait-for:files": "docker/wait-for.sh localhost $FILES_SERVER_PORT",
|
|
|
+ "wait-for:revisions": "docker/wait-for.sh localhost $REVISIONS_SERVER_PORT",
|
|
|
"start:auth": "yarn wait-for:db && yarn workspace @standardnotes/auth-server start",
|
|
|
"start:auth-worker": "yarn wait-for:db && yarn workspace @standardnotes/auth-server worker",
|
|
|
"start:scheduler": "yarn workspace @standardnotes/scheduler-server worker",
|
|
@@ -35,11 +36,12 @@
|
|
|
"start:syncing-server-worker": "yarn wait-for:db && yarn workspace @standardnotes/syncing-server worker",
|
|
|
"start:files": "yarn wait-for:db && yarn workspace @standardnotes/files-server start",
|
|
|
"start:files-worker": "yarn wait-for:db && yarn workspace @standardnotes/files-server worker",
|
|
|
- "start:api-gateway": "yarn wait-for:auth && yarn wait-for:syncing-server && yarn wait-for:files && yarn workspace @standardnotes/api-gateway start",
|
|
|
+ "start:api-gateway": "yarn wait-for:auth && yarn wait-for:syncing-server && yarn wait-for:files && yarn wait-for:revisions && yarn workspace @standardnotes/api-gateway start",
|
|
|
"start:websockets": "yarn workspace @standardnotes/websockets-server start",
|
|
|
"start:workspace": "yarn workspace @standardnotes/workspace-server start",
|
|
|
"start:analytics": "yarn workspace @standardnotes/analytics worker",
|
|
|
- "start:revisions": "yarn workspace @standardnotes/revisions-server start",
|
|
|
+ "start:revisions": "yarn wait-for:db && yarn workspace @standardnotes/revisions-server start",
|
|
|
+ "start:revisions-worker": "yarn wait-for:db && yarn workspace @standardnotes/revisions-server worker",
|
|
|
"release": "lerna version --conventional-graduate --conventional-commits --yes -m \"chore(release): publish new version\"",
|
|
|
"publish": "lerna publish from-git --yes --no-verify-access --loglevel verbose",
|
|
|
"postversion": "./scripts/push-tags-one-by-one.sh",
|