Skip to content

Commit

Permalink
Fix v1.1.11 release
Browse files Browse the repository at this point in the history
chore: output tx2uml version in Github actions (#55)
chore: ensure lib/tx2uml.js is executable
chore: add missing build artifacts
chore: bumped version to v1.1.12
  • Loading branch information
naddison36 authored Mar 6, 2023
1 parent 90cdd82 commit c3afda7
Show file tree
Hide file tree
Showing 7 changed files with 21 additions and 8 deletions.
1 change: 1 addition & 0 deletions .github/workflows/install-tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ jobs:
with:
node-version: ${{ matrix.node-version }}
- run: npm link tx2uml --only=production
- run: tx2uml --version
- name: Uniswap V1 call
run: tx2uml 0xe5e35ee13bb6326df4da89f17504a81923299d4986de06a019ca7856cbe76bca -v -p
env:
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/platform-tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ jobs:
- run: npm install
- run: npm run build --if-present
- run: npm link
- run: tx2uml --version
- name: Uniswap V1 value
run: tx2uml 0xe5e35ee13bb6326df4da89f17504a81923299d4986de06a019ca7856cbe76bca -v
env:
Expand Down
5 changes: 3 additions & 2 deletions lib/copyTransactions.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 11 additions & 1 deletion lib/tracesPumlStreamer.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 0 additions & 1 deletion lib/types/tx2umlTypes.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,6 @@ export interface TransferPumlGenerationOptions extends OutputOptions {
onlyToken?: boolean;
}
export interface CopyOptions {
chain: Network;
destUrl: string;
url: string;
nodeType?: string;
Expand Down
5 changes: 3 additions & 2 deletions lib/valueDiagram.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
{
"name": "tx2uml",
"version": "1.1.11",
"version": "1.1.12",
"description": "Ethereum transaction visualizer that generates UML sequence diagrams.",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"scripts": {
"build": "tsc --build ./tsconfig.json",
"build": "tsc --build ./tsconfig.json; chmod 775 lib/tx2uml.js",
"clean": "tsc --build --clean ./tsconfig.json",
"package-lock": "npm i --package-lock-only",
"examples": "java -jar ./lib/plantuml.jar ./examples/syntax.puml ./examples/delegate.puml",
Expand Down

0 comments on commit c3afda7

Please sign in to comment.