├── .github └── workflows │ ├── force-publish.yml │ ├── manual-crates-publish.yml │ ├── release.yml │ ├── rust.yml │ └── semantic-release.yml ├── .gitignore ├── .releaserc.json ├── CHANGELOG.md ├── CONTRIBUTING.md ├── Cargo.lock ├── Cargo.toml ├── LICENSE ├── README.md ├── screenshot.png ├── scripts └── sync-crates-version.sh └── src └── main.rs /.github/workflows/force-publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkforge/node-size-analyzer/HEAD/.github/workflows/force-publish.yml -------------------------------------------------------------------------------- /.github/workflows/manual-crates-publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkforge/node-size-analyzer/HEAD/.github/workflows/manual-crates-publish.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkforge/node-size-analyzer/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/rust.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkforge/node-size-analyzer/HEAD/.github/workflows/rust.yml -------------------------------------------------------------------------------- /.github/workflows/semantic-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkforge/node-size-analyzer/HEAD/.github/workflows/semantic-release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkforge/node-size-analyzer/HEAD/.gitignore -------------------------------------------------------------------------------- /.releaserc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkforge/node-size-analyzer/HEAD/.releaserc.json -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkforge/node-size-analyzer/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkforge/node-size-analyzer/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkforge/node-size-analyzer/HEAD/Cargo.lock -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkforge/node-size-analyzer/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkforge/node-size-analyzer/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkforge/node-size-analyzer/HEAD/README.md -------------------------------------------------------------------------------- /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkforge/node-size-analyzer/HEAD/screenshot.png -------------------------------------------------------------------------------- /scripts/sync-crates-version.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkforge/node-size-analyzer/HEAD/scripts/sync-crates-version.sh -------------------------------------------------------------------------------- /src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkforge/node-size-analyzer/HEAD/src/main.rs --------------------------------------------------------------------------------