Skip to content

Commit

Permalink
Use bun (#10)
Browse files Browse the repository at this point in the history
* Use bun

* Use bun

* Use bun

* Use bun

* Remove typeRoots

---------

Co-authored-by: Melle <[email protected]>
  • Loading branch information
mellevanderlinde and mellevanderlinde authored Nov 3, 2024
1 parent 8ccc95c commit 70b5047
Show file tree
Hide file tree
Showing 8 changed files with 18 additions and 6,933 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ jobs:

- name: Build
run: |
npm install -g pnpm
pnpm install
pnpm lint
pnpm build
pnpm test
npm install -g bun
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
```
5 changes: 1 addition & 4 deletions apps/infra/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,7 @@
"inlineSourceMap": true,
"inlineSources": true,
"experimentalDecorators": true,
"strictPropertyInitialization": false,
"typeRoots": [
"./node_modules/@types"
]
"strictPropertyInitialization": false
},
"exclude": [
"node_modules",
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-03T11:00:00.000Z,
"url": "https://mellevanderlinde.com/",
},
{
"lastModified": 2024-11-01T11:00:00.000Z,
"lastModified": 2024-11-03T11:00:00.000Z,
"url": "https://mellevanderlinde.com/blog",
},
{
"lastModified": 2024-11-01T11:00:00.000Z,
"lastModified": 2024-11-03T11:00:00.000Z,
"url": "https://mellevanderlinde.com/projects",
},
{
"lastModified": 2024-11-01T11:00:00.000Z,
"lastModified": 2024-11-03T11:00:00.000Z,
"url": "https://mellevanderlinde.com/work",
},
{
"lastModified": 2024-11-01T11:00:00.000Z,
"lastModified": 2024-11-03T11: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 70b5047

Please sign in to comment.