├── .DS_Store ├── .fatherrc.ts ├── .gitignore ├── .vscode └── launch.json ├── README.ZH.md ├── README.md ├── dist └── esm │ ├── index.d.ts │ └── index.js ├── package.json ├── pnpm-lock.yaml ├── pnpm-workspace.yaml ├── src └── index.ts └── tsconfig.json /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdctjj/rollup-plugin-remove-others-console/HEAD/.DS_Store -------------------------------------------------------------------------------- /.fatherrc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdctjj/rollup-plugin-remove-others-console/HEAD/.fatherrc.ts -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /node_modules -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdctjj/rollup-plugin-remove-others-console/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /README.ZH.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdctjj/rollup-plugin-remove-others-console/HEAD/README.ZH.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdctjj/rollup-plugin-remove-others-console/HEAD/README.md -------------------------------------------------------------------------------- /dist/esm/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdctjj/rollup-plugin-remove-others-console/HEAD/dist/esm/index.d.ts -------------------------------------------------------------------------------- /dist/esm/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdctjj/rollup-plugin-remove-others-console/HEAD/dist/esm/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdctjj/rollup-plugin-remove-others-console/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdctjj/rollup-plugin-remove-others-console/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /pnpm-workspace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdctjj/rollup-plugin-remove-others-console/HEAD/pnpm-workspace.yaml -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdctjj/rollup-plugin-remove-others-console/HEAD/src/index.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdctjj/rollup-plugin-remove-others-console/HEAD/tsconfig.json --------------------------------------------------------------------------------