├── .github └── workflows │ └── check-dist.yml ├── .gitignore ├── .nvmrc ├── .prettierignore ├── .prettierrc ├── LICENSE ├── README.md ├── action.yml ├── dist ├── index.js ├── index.js.map ├── licenses.txt └── sourcemap-register.js ├── funding.json ├── package.json ├── src ├── format.ts ├── index.ts ├── report.ts └── types.ts ├── tests ├── mocks │ ├── 1-1.md │ ├── 1-2.md │ ├── gas_report.1.ansi │ └── gas_report.2.ansi └── report.test.ts ├── tsconfig.build.json ├── tsconfig.json └── yarn.lock /.github/workflows/check-dist.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rubilmax/foundry-gas-diff/HEAD/.github/workflows/check-dist.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rubilmax/foundry-gas-diff/HEAD/.gitignore -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | 22 -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | dist 2 | node_modules -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rubilmax/foundry-gas-diff/HEAD/.prettierrc -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rubilmax/foundry-gas-diff/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rubilmax/foundry-gas-diff/HEAD/README.md -------------------------------------------------------------------------------- /action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rubilmax/foundry-gas-diff/HEAD/action.yml -------------------------------------------------------------------------------- /dist/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rubilmax/foundry-gas-diff/HEAD/dist/index.js -------------------------------------------------------------------------------- /dist/index.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rubilmax/foundry-gas-diff/HEAD/dist/index.js.map -------------------------------------------------------------------------------- /dist/licenses.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rubilmax/foundry-gas-diff/HEAD/dist/licenses.txt -------------------------------------------------------------------------------- /dist/sourcemap-register.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rubilmax/foundry-gas-diff/HEAD/dist/sourcemap-register.js -------------------------------------------------------------------------------- /funding.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rubilmax/foundry-gas-diff/HEAD/funding.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rubilmax/foundry-gas-diff/HEAD/package.json -------------------------------------------------------------------------------- /src/format.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rubilmax/foundry-gas-diff/HEAD/src/format.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rubilmax/foundry-gas-diff/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/report.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rubilmax/foundry-gas-diff/HEAD/src/report.ts -------------------------------------------------------------------------------- /src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rubilmax/foundry-gas-diff/HEAD/src/types.ts -------------------------------------------------------------------------------- /tests/mocks/1-1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rubilmax/foundry-gas-diff/HEAD/tests/mocks/1-1.md -------------------------------------------------------------------------------- /tests/mocks/1-2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rubilmax/foundry-gas-diff/HEAD/tests/mocks/1-2.md -------------------------------------------------------------------------------- /tests/mocks/gas_report.1.ansi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rubilmax/foundry-gas-diff/HEAD/tests/mocks/gas_report.1.ansi -------------------------------------------------------------------------------- /tests/mocks/gas_report.2.ansi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rubilmax/foundry-gas-diff/HEAD/tests/mocks/gas_report.2.ansi -------------------------------------------------------------------------------- /tests/report.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rubilmax/foundry-gas-diff/HEAD/tests/report.test.ts -------------------------------------------------------------------------------- /tsconfig.build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rubilmax/foundry-gas-diff/HEAD/tsconfig.build.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rubilmax/foundry-gas-diff/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rubilmax/foundry-gas-diff/HEAD/yarn.lock --------------------------------------------------------------------------------