├── .github ├── CODEOWNERS ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── FUNDING.yml ├── ISSUE_TEMPLATE.md ├── ISSUE_TEMPLATE │ ├── 1-bug-report.md │ ├── 2-failing-test.md │ ├── 3-docs-bug.md │ ├── 4-feature-request.md │ ├── 5-enhancement-request.md │ ├── 6-security-report.md │ ├── 7-question-support.md │ └── config.yml ├── SECURITY.md ├── SUPPORT.md ├── config.yml ├── issue_label_bot.yaml ├── pull_request_template.md ├── settings.yml └── workflows │ └── codeql-analysis.yml ├── .gitignore ├── .vscode ├── extensions.json ├── launch.json ├── settings.json └── tasks.json ├── .vscodeignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── Screenshots ├── Preserve.gif ├── Preview.gif ├── Preview2ndcommand.gif ├── README.md ├── RightClick.png ├── RightClickMenu.gif ├── SelectedText.gif ├── command.png ├── compress.gif ├── icon.png └── output.png ├── bin └── coreUpdater.sh ├── package.json ├── src ├── README.md ├── controller │ ├── README.md │ ├── checkLanguage.ts │ ├── getConfiguration.ts │ ├── getNewFilePath.ts │ ├── showMessage.ts │ └── writeMinifiedCode.ts ├── main.ts └── test │ ├── runTest.ts │ └── suite │ ├── extension.test.ts │ └── index.ts ├── tsconfig.json ├── tslint.json └── webpack.config.js /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Josee9988/MinifyAll/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Josee9988/MinifyAll/HEAD/.github/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Josee9988/MinifyAll/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Josee9988/MinifyAll/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Josee9988/MinifyAll/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/1-bug-report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Josee9988/MinifyAll/HEAD/.github/ISSUE_TEMPLATE/1-bug-report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/2-failing-test.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Josee9988/MinifyAll/HEAD/.github/ISSUE_TEMPLATE/2-failing-test.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/3-docs-bug.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Josee9988/MinifyAll/HEAD/.github/ISSUE_TEMPLATE/3-docs-bug.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/4-feature-request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Josee9988/MinifyAll/HEAD/.github/ISSUE_TEMPLATE/4-feature-request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/5-enhancement-request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Josee9988/MinifyAll/HEAD/.github/ISSUE_TEMPLATE/5-enhancement-request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/6-security-report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Josee9988/MinifyAll/HEAD/.github/ISSUE_TEMPLATE/6-security-report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/7-question-support.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Josee9988/MinifyAll/HEAD/.github/ISSUE_TEMPLATE/7-question-support.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Josee9988/MinifyAll/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Josee9988/MinifyAll/HEAD/.github/SECURITY.md -------------------------------------------------------------------------------- /.github/SUPPORT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Josee9988/MinifyAll/HEAD/.github/SUPPORT.md -------------------------------------------------------------------------------- /.github/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Josee9988/MinifyAll/HEAD/.github/config.yml -------------------------------------------------------------------------------- /.github/issue_label_bot.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Josee9988/MinifyAll/HEAD/.github/issue_label_bot.yaml -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Josee9988/MinifyAll/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/settings.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Josee9988/MinifyAll/HEAD/.github/settings.yml -------------------------------------------------------------------------------- /.github/workflows/codeql-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Josee9988/MinifyAll/HEAD/.github/workflows/codeql-analysis.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Josee9988/MinifyAll/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Josee9988/MinifyAll/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Josee9988/MinifyAll/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Josee9988/MinifyAll/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Josee9988/MinifyAll/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /.vscodeignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Josee9988/MinifyAll/HEAD/.vscodeignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Josee9988/MinifyAll/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Josee9988/MinifyAll/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Josee9988/MinifyAll/HEAD/README.md -------------------------------------------------------------------------------- /Screenshots/Preserve.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Josee9988/MinifyAll/HEAD/Screenshots/Preserve.gif -------------------------------------------------------------------------------- /Screenshots/Preview.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Josee9988/MinifyAll/HEAD/Screenshots/Preview.gif -------------------------------------------------------------------------------- /Screenshots/Preview2ndcommand.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Josee9988/MinifyAll/HEAD/Screenshots/Preview2ndcommand.gif -------------------------------------------------------------------------------- /Screenshots/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Josee9988/MinifyAll/HEAD/Screenshots/README.md -------------------------------------------------------------------------------- /Screenshots/RightClick.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Josee9988/MinifyAll/HEAD/Screenshots/RightClick.png -------------------------------------------------------------------------------- /Screenshots/RightClickMenu.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Josee9988/MinifyAll/HEAD/Screenshots/RightClickMenu.gif -------------------------------------------------------------------------------- /Screenshots/SelectedText.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Josee9988/MinifyAll/HEAD/Screenshots/SelectedText.gif -------------------------------------------------------------------------------- /Screenshots/command.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Josee9988/MinifyAll/HEAD/Screenshots/command.png -------------------------------------------------------------------------------- /Screenshots/compress.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Josee9988/MinifyAll/HEAD/Screenshots/compress.gif -------------------------------------------------------------------------------- /Screenshots/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Josee9988/MinifyAll/HEAD/Screenshots/icon.png -------------------------------------------------------------------------------- /Screenshots/output.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Josee9988/MinifyAll/HEAD/Screenshots/output.png -------------------------------------------------------------------------------- /bin/coreUpdater.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Josee9988/MinifyAll/HEAD/bin/coreUpdater.sh -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Josee9988/MinifyAll/HEAD/package.json -------------------------------------------------------------------------------- /src/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Josee9988/MinifyAll/HEAD/src/README.md -------------------------------------------------------------------------------- /src/controller/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Josee9988/MinifyAll/HEAD/src/controller/README.md -------------------------------------------------------------------------------- /src/controller/checkLanguage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Josee9988/MinifyAll/HEAD/src/controller/checkLanguage.ts -------------------------------------------------------------------------------- /src/controller/getConfiguration.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Josee9988/MinifyAll/HEAD/src/controller/getConfiguration.ts -------------------------------------------------------------------------------- /src/controller/getNewFilePath.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Josee9988/MinifyAll/HEAD/src/controller/getNewFilePath.ts -------------------------------------------------------------------------------- /src/controller/showMessage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Josee9988/MinifyAll/HEAD/src/controller/showMessage.ts -------------------------------------------------------------------------------- /src/controller/writeMinifiedCode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Josee9988/MinifyAll/HEAD/src/controller/writeMinifiedCode.ts -------------------------------------------------------------------------------- /src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Josee9988/MinifyAll/HEAD/src/main.ts -------------------------------------------------------------------------------- /src/test/runTest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Josee9988/MinifyAll/HEAD/src/test/runTest.ts -------------------------------------------------------------------------------- /src/test/suite/extension.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Josee9988/MinifyAll/HEAD/src/test/suite/extension.test.ts -------------------------------------------------------------------------------- /src/test/suite/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Josee9988/MinifyAll/HEAD/src/test/suite/index.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Josee9988/MinifyAll/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Josee9988/MinifyAll/HEAD/tslint.json -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Josee9988/MinifyAll/HEAD/webpack.config.js --------------------------------------------------------------------------------