Skip to content

Commit

Permalink
chore(main): release 2.1.0 (#32)
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 9ca7ca1 commit b002257
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.1.0](https://github.com/bgd-labs/action-rpc-env/compare/v2.0.1...v2.1.0) (2024-11-21)


### Features

* expose chainList ([#31](https://github.com/bgd-labs/action-rpc-env/issues/31)) ([9ca7ca1](https://github.com/bgd-labs/action-rpc-env/commit/9ca7ca1550d02b5d89733c815bc0a0d992f8c1dd))

## [2.0.1](https://github.com/bgd-labs/action-rpc-env/compare/v2.0.0...v2.0.1) (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.0.1",
"version": "2.1.0",
"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 b002257

Please sign in to comment.