Skip to content

Commit

Permalink
chore(main): release 2.2.1 (#46)
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 Dec 11, 2024
1 parent 5e49b2a commit 55150ae
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.2.1](https://github.com/bgd-labs/action-rpc-env/compare/v2.2.0...v2.2.1) (2024-12-11)


### Bug Fixes

* add default quicknode ([#45](https://github.com/bgd-labs/action-rpc-env/issues/45)) ([cd4ea52](https://github.com/bgd-labs/action-rpc-env/commit/cd4ea52c62bf054252840745e63566cf97cbe99d))

## [2.2.0](https://github.com/bgd-labs/action-rpc-env/compare/v2.1.2...v2.2.0) (2024-11-26)


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.2.0",
"version": "2.2.1",
"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.5"
},
"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 55150ae

Please sign in to comment.