├── .all-contributorsrc ├── .github └── workflows │ ├── nodejs.yml │ └── npm-publish.yml ├── .gitignore ├── .npmignore ├── LICENSE ├── README.md ├── analyze ├── index.ts ├── schema.d.ts └── schema.json ├── collection.json ├── index.ts ├── ng-add ├── index.ts ├── schema.json ├── schema.ts └── workspace.ts ├── package.json ├── renovate.json └── tsconfig.json /.all-contributorsrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngx-builders/source-map-analyzer/HEAD/.all-contributorsrc -------------------------------------------------------------------------------- /.github/workflows/nodejs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngx-builders/source-map-analyzer/HEAD/.github/workflows/nodejs.yml -------------------------------------------------------------------------------- /.github/workflows/npm-publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngx-builders/source-map-analyzer/HEAD/.github/workflows/npm-publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *.js 2 | *.map 3 | node_modules 4 | package-lock.json 5 | dist -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngx-builders/source-map-analyzer/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngx-builders/source-map-analyzer/HEAD/README.md -------------------------------------------------------------------------------- /analyze/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngx-builders/source-map-analyzer/HEAD/analyze/index.ts -------------------------------------------------------------------------------- /analyze/schema.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngx-builders/source-map-analyzer/HEAD/analyze/schema.d.ts -------------------------------------------------------------------------------- /analyze/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngx-builders/source-map-analyzer/HEAD/analyze/schema.json -------------------------------------------------------------------------------- /collection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngx-builders/source-map-analyzer/HEAD/collection.json -------------------------------------------------------------------------------- /index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngx-builders/source-map-analyzer/HEAD/index.ts -------------------------------------------------------------------------------- /ng-add/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngx-builders/source-map-analyzer/HEAD/ng-add/index.ts -------------------------------------------------------------------------------- /ng-add/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngx-builders/source-map-analyzer/HEAD/ng-add/schema.json -------------------------------------------------------------------------------- /ng-add/schema.ts: -------------------------------------------------------------------------------- 1 | export interface NgAddOptions { 2 | project: string | undefined; 3 | } 4 | -------------------------------------------------------------------------------- /ng-add/workspace.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngx-builders/source-map-analyzer/HEAD/ng-add/workspace.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngx-builders/source-map-analyzer/HEAD/package.json -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngx-builders/source-map-analyzer/HEAD/renovate.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngx-builders/source-map-analyzer/HEAD/tsconfig.json --------------------------------------------------------------------------------