Skip to content

Commit

Permalink
v0.0.4
Browse files Browse the repository at this point in the history
  • Loading branch information
cdump committed Nov 25, 2023
1 parent 853961f commit 51038c5
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -72,5 +72,5 @@ jobs:
POETRY_PYPI_TOKEN_PYPI: ${{ secrets.PYPI_TOKEN }}
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
run: |
echo poetry publish
poetry publish
cd js && npm publish
10 changes: 7 additions & 3 deletions js/package.json
Original file line number Diff line number Diff line change
@@ -1,13 +1,17 @@
{
"name": "evmole",
"version": "0.0.3",
"version": "0.0.4",
"description": "Extracts function selectors from EVM bytecode",
"main": "dist/index.cjs.js",
"main": "dist/index.cjs",
"module": "dist/index.esm.js",
"types": "dist/index.d.ts",
"type": "module",
"exports": {
"import": "./dist/index.esm.js",
"require": "./dist/index.cjs"
},
"scripts": {
"build-cjs": "npx esbuild ./src/ --bundle --minify --sourcemap --format=cjs --outfile=dist/index.cjs.js",
"build-cjs": "npx esbuild ./src/ --bundle --minify --sourcemap --format=cjs --outfile=dist/index.cjs",
"build-esm": "npx esbuild ./src/ --bundle --minify --sourcemap --format=esm --outfile=dist/index.esm.js",
"build": "rm -rf dist/ && npm run build-cjs && npm run build-esm && cp ./src/index.d.ts dist/",
"lint": "npx eslint ./src/",
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "evmole"
version = "0.0.3"
version = "0.0.4"
description = "Extracts function selectors from EVM bytecode"
authors = ["Maxim Andreev <[email protected]>"]
license = "MIT"
Expand Down

0 comments on commit 51038c5

Please sign in to comment.