Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/format.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,6 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/setup-node@v6
- run: yarn install
- run: yarn run checkFormat
- uses: oven-sh/setup-bun@v2
- run: bun install
- run: bun run checkFormat
6 changes: 3 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,6 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/setup-node@v6
- run: yarn install
- run: yarn run test
- uses: oven-sh/setup-bun@v2
- run: bun install
- run: bun run test
3,258 changes: 3,258 additions & 0 deletions bun.lock

Large diffs are not rendered by default.

1,472 changes: 1,472 additions & 0 deletions docs/bun.lock

Large diffs are not rendered by default.

14 changes: 7 additions & 7 deletions docs/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,22 +6,22 @@
"private": true,
"scripts": {
"dev": "next",
"prebuild": "yarn build:meta && yarn build:theme",
"build:meta": "cd ../packages/meta && npx microbundle --jsxImportSource react --jsx jsx --globals react/jsx-runtime=jsxRuntime",
"build:theme": "cd ../packages/theme && npx microbundle",
"prebuild": "bun run build:meta && bun run build:theme",
"build:meta": "cd ../packages/meta && bunx microbundle --jsxImportSource react --jsx jsx --globals react/jsx-runtime=jsxRuntime",
"build:theme": "cd ../packages/theme && bunx microbundle",
"build": "next build",
"start": "yarn run dev"
"start": "bun run dev"
},
"dependencies": {
"@emotion/react": "^11.14.0",
"@hackclub/meta": "file:../packages/meta",
"@hackclub/theme": "file:../packages/theme",
"@hackclub/meta": "workspace:*",
"@hackclub/theme": "workspace:*",
"@mdx-js/loader": "^3.1.1",
"@next/mdx": "^16.1.6",
"@theme-ui/css": "^0.17.4",
"@theme-ui/style-guide": "^0.17.4",
"lodash": "^4.17.23",
"next": "^16.1.6",
"next": "^16.2.0",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"theme-ui": "^0.17.4"
Expand Down
2,136 changes: 0 additions & 2,136 deletions docs/yarn.lock

This file was deleted.

2 changes: 1 addition & 1 deletion lerna.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "independent",
"npmClient": "yarn",
"npmClient": "bun",
"packages": ["packages/*"]
}
13 changes: 6 additions & 7 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,18 +2,17 @@
"private": true,
"scripts": {
"build": "lerna run build",
"prepare": "yarn build",
"prepare": "bun run build",
"clean": "lerna run clean",
"test": "jest",
"test:e2e": "yarn clean && yarn build && yarn test && node scripts/dist-smoke.cjs && yarn --cwd docs build",
"test:e2e": "bun run clean && bun run build && bun run test && node scripts/dist-smoke.cjs && bun run --cwd docs build",
"format": "prettier --write .",
"checkFormat": "prettier --check ."
},
"workspaces": {
"packages": [
"packages/*"
]
},
"workspaces": [
"packages/*",
"docs"
],
"devDependencies": {
"@swc/core": "^1.15.18",
"@swc/jest": "^0.2.39",
Expand Down
2 changes: 1 addition & 1 deletion packages/meta/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"sideEffects": false,
"scripts": {
"build": "rm -rf ./dist && microbundle --jsxImportSource react --jsx jsx --globals react/jsx-runtime=jsxRuntime",
"prepare": "yarn build",
"prepare": "bun run build",
"watch": "microbundle watch --jsxImportSource react --jsx jsx --globals react/jsx-runtime=jsxRuntime --no-compress",
"clean": "rm -rf ./dist"
},
Expand Down
2 changes: 1 addition & 1 deletion packages/theme/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
"sideEffects": false,
"scripts": {
"build": "microbundle",
"prepare": "yarn build",
"prepare": "bun run build",
"watch": "microbundle watch --no-compress",
"clean": "rm -rf ./dist"
},
Expand Down
Loading
Loading