Skip to content

Commit

Permalink
chore(main): release 2.2.0 (#40)
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 26, 2024
1 parent 0db719c commit a345d50
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.2.0](https://github.com/bgd-labs/action-rpc-env/compare/v2.1.2...v2.2.0) (2024-11-26)


### Features

* add config for linea ([#39](https://github.com/bgd-labs/action-rpc-env/issues/39)) ([d8de31a](https://github.com/bgd-labs/action-rpc-env/commit/d8de31a47fb0657a7dbb6fb7ffe3e83e6c3a9293))
* initial quicknode support ([#38](https://github.com/bgd-labs/action-rpc-env/issues/38)) ([6b70b22](https://github.com/bgd-labs/action-rpc-env/commit/6b70b222a0737572d6cd7fc3cdb0b5dbe474ad52))

## [2.1.2](https://github.com/bgd-labs/action-rpc-env/compare/v2.1.1...v2.1.2) (2024-11-21)


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.1.2",
"version": "2.2.0",
"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 a345d50

Please sign in to comment.