Skip to content

Commit

Permalink
Use bun
Browse files Browse the repository at this point in the history
  • Loading branch information
mellevanderlinde committed Nov 2, 2024
1 parent 8ccc95c commit 4079e1a
Show file tree
Hide file tree
Showing 8 changed files with 17 additions and 6,930 deletions.
9 changes: 4 additions & 5 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,7 @@ jobs:

- name: Build
run: |
npm install -g pnpm
pnpm install
pnpm lint
pnpm build
pnpm test
bun install
bun run lint
bun run build
bun run test
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ This repository contains my portfolio, served with Amazon CloudFront and S3 on [
To install the project's dependencies, build the website and deploy to AWS, run the following:

```
pnpm install
pnpm build
bun install
bun run build
cd apps/infra
npx cdk deploy -c accountId=012345678912
```
2 changes: 1 addition & 1 deletion apps/infra/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
"experimentalDecorators": true,
"strictPropertyInitialization": false,
"typeRoots": [
"./node_modules/@types"
"./../../node_modules/@types"
]
},
"exclude": [
Expand Down
10 changes: 5 additions & 5 deletions apps/website/__tests__/__snapshots__/components.tsx.snap
Original file line number Diff line number Diff line change
Expand Up @@ -306,23 +306,23 @@ exports[`Match robots 1`] = `
exports[`Match sitemap 1`] = `
[
{
"lastModified": 2024-11-01T11:00:00.000Z,
"lastModified": 2024-11-02T11:00:00.000Z,
"url": "https://mellevanderlinde.com/",
},
{
"lastModified": 2024-11-01T11:00:00.000Z,
"lastModified": 2024-11-02T11:00:00.000Z,
"url": "https://mellevanderlinde.com/blog",
},
{
"lastModified": 2024-11-01T11:00:00.000Z,
"lastModified": 2024-11-02T11:00:00.000Z,
"url": "https://mellevanderlinde.com/projects",
},
{
"lastModified": 2024-11-01T11:00:00.000Z,
"lastModified": 2024-11-02T11:00:00.000Z,
"url": "https://mellevanderlinde.com/work",
},
{
"lastModified": 2024-11-01T11:00:00.000Z,
"lastModified": 2024-11-02T11:00:00.000Z,
"url": "https://mellevanderlinde.com/blog/openid-connect-aws-github",
},
]
Expand Down
Binary file added bun.lockb
Binary file not shown.
6 changes: 5 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,9 @@
"dependencies": {
"turbo": "^2.1.3"
},
"packageManager": "[email protected]"
"workspaces": [
"apps/*",
"packages/*"
],
"packageManager": "[email protected]"
}
Loading

0 comments on commit 4079e1a

Please sign in to comment.