Skip to content

Commit

Permalink
chore(main): release 2.0.1 (#22)
Browse files Browse the repository at this point in the history
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
  • Loading branch information
github-actions[bot] authored Nov 21, 2024
1 parent dd8b6f8 commit 954d76f
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 6 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changelog

## [2.0.1](https://github.com/bgd-labs/action-rpc-env/compare/v2.0.0...v2.0.1) (2024-11-21)


### Bug Fixes

* arbitrum env ([42b121a](https://github.com/bgd-labs/action-rpc-env/commit/42b121ac9a889ab73ba0427b59c40c6aa6329355))
* do not throw when no env is found & add bin ([#29](https://github.com/bgd-labs/action-rpc-env/issues/29)) ([dd8b6f8](https://github.com/bgd-labs/action-rpc-env/commit/dd8b6f820fcba266ad0c58aef26a0d025ab22364))

## [2.0.0](https://github.com/bgd-labs/action-rpc-env/compare/v1.0.3...v2.0.0) (2024-11-07)


Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

19 changes: 15 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@bgd-labs/rpc-env",
"version": "2.0.0",
"version": "2.0.1",
"private": false,
"publishConfig": {
"access": "public"
Expand All @@ -11,7 +11,11 @@
"format": "biome check --write",
"prepublishOnly": "npm run build"
},
"files": ["src/*.ts", "dist/lib*", "dist/cli*"],
"files": [
"src/*.ts",
"dist/lib*",
"dist/cli*"
],
"bin": "./dist/cli.js",
"main": "./dist/lib.js",
"module": "./dist/lib.mjs",
Expand Down Expand Up @@ -41,11 +45,18 @@
"vitest": "^2.1.4"
},
"tsup": {
"entry": ["src/action.ts", "src/lib.ts", "src/cli.ts"],
"entry": [
"src/action.ts",
"src/lib.ts",
"src/cli.ts"
],
"splitting": false,
"sourcemap": false,
"clean": true,
"dts": true,
"format": ["esm", "cjs"]
"format": [
"esm",
"cjs"
]
}
}

0 comments on commit 954d76f

Please sign in to comment.