Skip to content

Commit

Permalink
Remove remaining references to yarn bootstrap
Browse files Browse the repository at this point in the history
  • Loading branch information
Rory-Powell committed Sep 5, 2023
1 parent cfde7c3 commit 9ff9da0
Show file tree
Hide file tree
Showing 7 changed files with 4 additions and 25 deletions.
1 change: 0 additions & 1 deletion .github/workflows/release-selfhost.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,6 @@ jobs:
- name: Bootstrap and build (CLI)
run: |
yarn
yarn bootstrap
yarn build
- name: Build OpenAPI spec
Expand Down
2 changes: 1 addition & 1 deletion docs/DEV-SETUP-DEBIAN.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ yarn setup
The yarn setup command runs several build steps i.e.

```
node ./hosting/scripts/setup.js && yarn && yarn bootstrap && yarn build && yarn dev
node ./hosting/scripts/setup.js && yarn && yarn build && yarn dev
```

So this command will actually run the application in dev mode. It creates .env files under `./packages/server` and `./packages/worker` and runs docker containers for each service via docker-compose.
Expand Down
2 changes: 1 addition & 1 deletion docs/DEV-SETUP-MACOSX.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ yarn setup
The yarn setup command runs several build steps i.e.

```
node ./hosting/scripts/setup.js && yarn && yarn bootstrap && yarn build && yarn dev
node ./hosting/scripts/setup.js && yarn && yarn build && yarn dev
```

So this command will actually run the application in dev mode. It creates .env files under `./packages/server` and `./packages/worker` and runs docker containers for each service via docker-compose.
Expand Down
1 change: 0 additions & 1 deletion hosting/single/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,6 @@ Node setup:
```
node ./hosting/scripts/setup.js
yarn
yarn bootstrap
yarn build
```
#### Build Image
Expand Down
1 change: 0 additions & 1 deletion hosting/tests/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,6 @@ Node setup:
```
node ./hosting/scripts/setup.js
yarn
yarn bootstrap
yarn build
```
#### Build Image
Expand Down
6 changes: 2 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,6 @@
"build": "lerna run build --stream",
"build:dev": "lerna run --stream prebuild && yarn nx run-many --target=build --output-style=dynamic --watch --preserveWatchOutput",
"check:types": "lerna run check:types",
"backend:bootstrap": "./scripts/scopeBackend.sh && yarn run bootstrap",
"backend:build": "./scripts/scopeBackend.sh 'lerna run --stream build'",
"build:sdk": "lerna run --stream build:sdk",
"deps:circular": "madge packages/server/dist/index.js packages/worker/src/index.ts packages/backend-core/dist/src/index.js packages/cli/src/index.js --circular",
"release": "lerna publish from-package --yes --force-publish --no-git-tag-version --no-push --no-git-reset",
Expand Down Expand Up @@ -92,8 +90,8 @@
"mode:account": "yarn mode:cloud && yarn env:account:enable",
"security:audit": "node scripts/audit.js",
"postinstall": "husky install",
"submodules:load": "git submodule init && git submodule update && yarn && yarn bootstrap",
"submodules:unload": "git submodule deinit --all && yarn && yarn bootstrap"
"submodules:load": "git submodule init && git submodule update && yarn",
"submodules:unload": "git submodule deinit --all && yarn"
},
"workspaces": {
"packages": [
Expand Down
16 changes: 0 additions & 16 deletions scripts/scopeBackend.sh

This file was deleted.

0 comments on commit 9ff9da0

Please sign in to comment.