https://github.com/fgimenez/truffle-plus-analyze
https://github.com/fgimenez/truffle-plus-analyze
Last synced: 6 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/fgimenez/truffle-plus-analyze
- Owner: fgimenez
- Created: 2018-09-20T07:05:19.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2018-09-25T10:15:45.000Z (almost 8 years ago)
- Last Synced: 2025-02-01T10:45:39.551Z (over 1 year ago)
- Size: 453 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# truffle-analyze
Adds a patch on top of truffle for enabling the analyze command:
```
$ npm i -g truffle-analyze
$ mkdir test && cd $_
$ truffle-analyze init
[ write some contracts, build them ]
$ truffle-analyze analyze
```
This repo only contains the patches for truffle and the packaging. For the
patching system it uses [patch-package](https://github.com/ds300/patch-package).
For adding/updating a patch, from this cloned repo:
```
$ npm i
[ modify node_modules/truffle-core as needed ]
$ npx patch-package truffle-core
$ git add patches/*
$ git commit -m"new patch added..."
```