├── .editorconfig ├── .gitignore ├── .husky └── pre-commit ├── .npmignore ├── .yarnrc.yml ├── LICENSE ├── README.md ├── eslint.config.mjs ├── package.json ├── src ├── cjs.ts └── gulpTerser.ts ├── test ├── gulpfile.mjs ├── index.test.mjs └── src │ └── index.js └── tsconfig.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duan602728596/gulp-terser/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duan602728596/gulp-terser/HEAD/.gitignore -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duan602728596/gulp-terser/HEAD/.husky/pre-commit -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duan602728596/gulp-terser/HEAD/.npmignore -------------------------------------------------------------------------------- /.yarnrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duan602728596/gulp-terser/HEAD/.yarnrc.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duan602728596/gulp-terser/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duan602728596/gulp-terser/HEAD/README.md -------------------------------------------------------------------------------- /eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duan602728596/gulp-terser/HEAD/eslint.config.mjs -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duan602728596/gulp-terser/HEAD/package.json -------------------------------------------------------------------------------- /src/cjs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duan602728596/gulp-terser/HEAD/src/cjs.ts -------------------------------------------------------------------------------- /src/gulpTerser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duan602728596/gulp-terser/HEAD/src/gulpTerser.ts -------------------------------------------------------------------------------- /test/gulpfile.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duan602728596/gulp-terser/HEAD/test/gulpfile.mjs -------------------------------------------------------------------------------- /test/index.test.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duan602728596/gulp-terser/HEAD/test/index.test.mjs -------------------------------------------------------------------------------- /test/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duan602728596/gulp-terser/HEAD/test/src/index.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duan602728596/gulp-terser/HEAD/tsconfig.json --------------------------------------------------------------------------------