├── .eslintignore ├── .eslintrc ├── .github └── workflows │ ├── release.yml │ └── test.yml ├── .gitignore ├── LICENSE ├── README.md ├── action.yml ├── dist ├── fsevents.node ├── index.js ├── index.js.map ├── mappings.wasm └── sourcemap-register.js ├── package.json ├── src ├── index.ts ├── size.ts └── types.ts └── tsconfig.json /.eslintignore: -------------------------------------------------------------------------------- 1 | dist 2 | typings 3 | -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antfu/export-size-action/HEAD/.eslintrc -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antfu/export-size-action/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antfu/export-size-action/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antfu/export-size-action/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antfu/export-size-action/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antfu/export-size-action/HEAD/README.md -------------------------------------------------------------------------------- /action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antfu/export-size-action/HEAD/action.yml -------------------------------------------------------------------------------- /dist/fsevents.node: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antfu/export-size-action/HEAD/dist/fsevents.node -------------------------------------------------------------------------------- /dist/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antfu/export-size-action/HEAD/dist/index.js -------------------------------------------------------------------------------- /dist/index.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antfu/export-size-action/HEAD/dist/index.js.map -------------------------------------------------------------------------------- /dist/mappings.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antfu/export-size-action/HEAD/dist/mappings.wasm -------------------------------------------------------------------------------- /dist/sourcemap-register.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antfu/export-size-action/HEAD/dist/sourcemap-register.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antfu/export-size-action/HEAD/package.json -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antfu/export-size-action/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/size.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antfu/export-size-action/HEAD/src/size.ts -------------------------------------------------------------------------------- /src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antfu/export-size-action/HEAD/src/types.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antfu/export-size-action/HEAD/tsconfig.json --------------------------------------------------------------------------------