Skip to content

Commit

Permalink
fix: revert to pnpm
Browse files Browse the repository at this point in the history
  • Loading branch information
julesrx committed Nov 21, 2023
1 parent 0e2d925 commit f55ed5f
Show file tree
Hide file tree
Showing 4 changed files with 2,180 additions and 8 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/build-and-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,16 +8,16 @@ jobs:
steps:
- uses: actions/checkout@v3

- name: Setup Bun
uses: oven-sh/setup-bun@v1
- uses: actions/setup-node@v4
with:
bun-version: latest
node-version: 20.9

- name: Install dependencies
run: bun install
- uses: pnpm/action-setup@v2
with:
run_install: true

- name: Build
run: bun run build
run: pnpm build

- name: Test
run: bun run test
run: pnpm test
Binary file removed bun.lockb
Binary file not shown.
5 changes: 4 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
{
"name": "@julesrx/utils",
"description": "Components and helpers that I use in most of my projects",
"keywords": [
"typescript"
],
"private": false,
"version": "0.0.8",
"main": "./dist/index.js",
Expand All @@ -21,6 +24,7 @@
"repository": "github:julesrx/utils",
"homepage": "https://github.com/julesrx/utils",
"license": "MIT",
"packageManager": "[email protected]",
"scripts": {
"build": "bunchee",
"test": "vitest",
Expand All @@ -31,7 +35,6 @@
},
"devDependencies": {
"@tsconfig/node20": "^20.1.2",
"bun-types": "latest",
"bunchee": "^3.9.2",
"typescript": "^5.2.2",
"vitest": "^0.34.6"
Expand Down
Loading

0 comments on commit f55ed5f

Please sign in to comment.