Skip to content

Commit

Permalink
chore(main): release 2.3.2 (#73)
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 Jan 29, 2025
1 parent 80a5bc0 commit f56d90a
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 6 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Changelog

## [2.3.2](https://github.com/bgd-labs/action-rpc-env/compare/v2.3.1...v2.3.2) (2025-01-29)


### Bug Fixes

* allow quicknode on get client ([#72](https://github.com/bgd-labs/action-rpc-env/issues/72)) ([ad14a20](https://github.com/bgd-labs/action-rpc-env/commit/ad14a204953c7182012ec9bd20360d3f2fe0bef3))

## [2.3.1](https://github.com/bgd-labs/action-rpc-env/compare/v2.3.0...v2.3.1) (2025-01-27)


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.3.1",
"version": "2.3.2",
"private": false,
"publishConfig": {
"access": "public"
Expand All @@ -12,7 +12,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 @@ -43,12 +47,19 @@
"dotenv": "^16.4.7"
},
"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,
"treeshake": true,
"format": ["esm", "cjs"]
"format": [
"esm",
"cjs"
]
}
}

0 comments on commit f56d90a

Please sign in to comment.