File tree Expand file tree Collapse file tree 4 files changed +11
-14
lines changed
Expand file tree Collapse file tree 4 files changed +11
-14
lines changed Original file line number Diff line number Diff 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 :
Original file line number Diff line number Diff line change @@ -35,7 +35,6 @@ The directory structure of this Nx monorepo is organized as follows:
3535Ensure 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
50492 . Install the dependencies:
5150 ``` bash
52- bun install
51+ npm install
5352 ```
5453
5554### Running the Applications
5655
5756To run the application:
5857
5958``` bash
60- bun start
59+ npm start
6160```
6261This 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
6968To build the Angular application for production:
7069
7170``` bash
72- bun run build
71+ npm run build
7372```
7473
7574To run the Application:
@@ -78,8 +77,6 @@ To run the Application:
7877node 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
Original file line number Diff line number Diff line change 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" : {
You can’t perform that action at this time.
0 commit comments