Skip to content

Commit

Permalink
chore: fix release pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
lukemorales committed Feb 2, 2024
1 parent 9221a92 commit 9d917e2
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 2 deletions.
1 change: 0 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,6 @@ jobs:
with:
node-version: latest
check-latest: true
cache: 'pnpm'
registry-url: 'https://registry.npmjs.org'

- name: 👤 Set git user
Expand Down
Binary file modified bun.lockb
Binary file not shown.
18 changes: 17 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,16 @@
"files": [
"dist"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"module": "./dist/index.mjs",
"import": "./dist/index.mjs",
"require": "./dist/index.js",
"default": "./dist/index.mjs"
},
"./package.json": "./package.json"
},
"scripts": {
"build": "run-p build:*",
"build:tsup": "tsup --dts --minify",
Expand All @@ -31,8 +41,13 @@
"lint:tsc": "tsc --project tsconfig.json --noEmit",
"test": "vitest --passWithNoTests",
"test:ci": "bun run test:coverage --run",
"test:coverage": "bun run test --coverage"
"test:coverage": "bun run test --coverage",
"prerelease": "run-p build test:ci",
"release": "changeset publish"
},
"trustedDependencies": [
"npm-run-all"
],
"eslintConfig": {
"extends": [
"lukemorales/oss",
Expand All @@ -53,6 +68,7 @@
"jsdom": "^24.0.0",
"next": "^14.1.0",
"npm-run-all": "^4.1.5",
"prettier": "^3.2.4",
"tsup": "^8.0.1",
"typescript": "^4.8.2",
"vitest": "^1.2.2",
Expand Down

0 comments on commit 9d917e2

Please sign in to comment.