Skip to content

Commit c4e76c3

Browse files
committed
bun is still having issues with reading the graph, see: nrwl/nx#26053
1 parent 7e67ed4 commit c4e76c3

File tree

4 files changed

+11
-14
lines changed

4 files changed

+11
-14
lines changed

.github/workflows/ci.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -18,18 +18,18 @@ jobs:
1818
with:
1919
fetch-depth: 0
2020

21-
- uses: oven-sh/setup-bun@v1
21+
- uses: actions/setup-node@v4
2222
with:
23-
bun-version: latest
23+
node-version: latest
2424

25-
- run: bun install --no-cache
25+
- run: npm ci
2626
- uses: nrwl/nx-set-shas@v4
2727

2828
- name: Install Playwright Browsers
2929
run: npx playwright install --with-deps
3030

31-
- run: bun nx affected -t lint test build
32-
- run: bun nx affected --parallel 1 -t e2e-ci
31+
- run: npm nx affected -t lint test build
32+
- run: npm nx affected --parallel 1 -t e2e-ci
3333
- uses: actions/upload-artifact@v4
3434
if: ${{ !cancelled() }}
3535
with:

README.md

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,6 @@ The directory structure of this Nx monorepo is organized as follows:
3535
Ensure you have the following installed on your machine:
3636

3737
- Node.js (latest LTS version recommended)
38-
- Bun
3938
- Nx CLI
4039

4140
### Installation
@@ -49,15 +48,15 @@ Ensure you have the following installed on your machine:
4948

5049
2. Install the dependencies:
5150
```bash
52-
bun install
51+
npm install
5352
```
5453

5554
### Running the Applications
5655

5756
To run the application:
5857

5958
```bash
60-
bun start
59+
npm start
6160
```
6261
This will start the development server and the application will be available at `http://localhost:4200`.
6362

@@ -69,7 +68,7 @@ This will start the development server and the application will be available at
6968
To build the Angular application for production:
7069

7170
```bash
72-
bun run build
71+
npm run build
7372
```
7473

7574
To run the Application:
@@ -78,8 +77,6 @@ To run the Application:
7877
node dist/apps/app/server/server.mjs
7978
```
8079

81-
*NOTE: I'm still looking into running this with bun.*
82-
8380
### Testing
8481

8582
#### Running Unit Tests

bun.lockb

-614 KB
Binary file not shown.

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@
22
"name": "@app/source",
33
"version": "0.0.0",
44
"license": "MIT",
5-
"packageManager": "bun@1.1.10",
5+
"packageManager": "npm@10.7.0",
66
"scripts": {
77
"start": "nx run-many -t serve -p tag:scope:app",
8-
"build": "bunx concurrently \"nx serve api\" \"bun run wait-and-build\" --kill-others --success last --kill-signal SIGINT",
9-
"wait-and-build": "bunx wait-on tcp:3000 && nx build app"
8+
"build": "concurrently \"nx serve api\" \"npm run wait-and-build\" --kill-others --success last --kill-signal SIGINT",
9+
"wait-and-build": "wait-on tcp:3000 && nx build app"
1010
},
1111
"private": true,
1212
"dependencies": {

0 commit comments

Comments
 (0)