Skip to content

Commit

Permalink
Merge pull request #372 from unjs/feat/define-env
Browse files Browse the repository at this point in the history
  • Loading branch information
pi0 authored Dec 11, 2024
2 parents d9d4d03 + bfbf678 commit 4cd756d
Show file tree
Hide file tree
Showing 6 changed files with 821 additions and 2 deletions.
1 change: 1 addition & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ jobs:
- run: pnpm install
- run: pnpm lint
- run: pnpm test:types
- run: pnpm vitest
- run: pnpm test:node
- run: pnpm test:workerd
- run: pnpm build
Expand Down
4 changes: 3 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,11 +27,12 @@
],
"scripts": {
"build": "unbuild",
"dev": "vitest",
"lint": "eslint . && prettier -c src test",
"lint:fix": "automd && eslint --fix . && prettier -w src test",
"prepack": "unbuild",
"release": "pnpm test && changelogen --release && pnpm publish && git push --follow-tags",
"test": "pnpm lint && pnpm test:types && pnpm test:node",
"test": "pnpm lint && pnpm vitest --run && pnpm test:types && pnpm test:node",
"test:node": "node --test --import jiti/register ./test/node/test-*",
"test:node-coverage": "node test/node-coverage.mjs",
"test:node:watch": "node --test --watch --import jiti/register ./test/node/test-*",
Expand All @@ -57,6 +58,7 @@
"prettier": "^3.4.1",
"typescript": "^5.7.2",
"unbuild": "^2.0.0",
"vitest": "^2.1.8",
"workerd": "^1.20241202.0",
"wrangler": "^3.91.0"
},
Expand Down
Loading

0 comments on commit 4cd756d

Please sign in to comment.