devkill 0.12.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +21 -0
- package/README.es.md +253 -0
- package/README.id.md +238 -0
- package/README.md +377 -0
- package/README.pt.md +241 -0
- package/README.tr.md +242 -0
- package/lib/cli/cli.controller.d.ts +81 -0
- package/lib/cli/cli.controller.js +760 -0
- package/lib/cli/cli.controller.js.map +1 -0
- package/lib/cli/interfaces/cli-options.interface.d.ts +5 -0
- package/lib/cli/interfaces/cli-options.interface.js +2 -0
- package/lib/cli/interfaces/cli-options.interface.js.map +1 -0
- package/lib/cli/interfaces/command-keys.interface.d.ts +17 -0
- package/lib/cli/interfaces/command-keys.interface.js +2 -0
- package/lib/cli/interfaces/command-keys.interface.js.map +1 -0
- package/lib/cli/interfaces/config.interface.d.ts +17 -0
- package/lib/cli/interfaces/config.interface.js +2 -0
- package/lib/cli/interfaces/config.interface.js.map +1 -0
- package/lib/cli/interfaces/index.d.ts +11 -0
- package/lib/cli/interfaces/index.js +12 -0
- package/lib/cli/interfaces/index.js.map +1 -0
- package/lib/cli/interfaces/json-output.interface.d.ts +30 -0
- package/lib/cli/interfaces/json-output.interface.js +2 -0
- package/lib/cli/interfaces/json-output.interface.js.map +1 -0
- package/lib/cli/interfaces/key-press.interface.d.ts +7 -0
- package/lib/cli/interfaces/key-press.interface.js +2 -0
- package/lib/cli/interfaces/key-press.interface.js.map +1 -0
- package/lib/cli/interfaces/node-version.interface.d.ts +5 -0
- package/lib/cli/interfaces/node-version.interface.js +2 -0
- package/lib/cli/interfaces/node-version.interface.js.map +1 -0
- package/lib/cli/interfaces/stats.interface.d.ts +15 -0
- package/lib/cli/interfaces/stats.interface.js +2 -0
- package/lib/cli/interfaces/stats.interface.js.map +1 -0
- package/lib/cli/interfaces/ui-positions.interface.d.ts +5 -0
- package/lib/cli/interfaces/ui-positions.interface.js +2 -0
- package/lib/cli/interfaces/ui-positions.interface.js.map +1 -0
- package/lib/cli/interfaces/version.interface.d.ts +5 -0
- package/lib/cli/interfaces/version.interface.js +2 -0
- package/lib/cli/interfaces/version.interface.js.map +1 -0
- package/lib/cli/models/start-parameters.model.d.ts +7 -0
- package/lib/cli/models/start-parameters.model.js +25 -0
- package/lib/cli/models/start-parameters.model.js.map +1 -0
- package/lib/cli/services/console.service.d.ts +23 -0
- package/lib/cli/services/console.service.js +87 -0
- package/lib/cli/services/console.service.js.map +1 -0
- package/lib/cli/services/https.service.d.ts +4 -0
- package/lib/cli/services/https.service.js +32 -0
- package/lib/cli/services/https.service.js.map +1 -0
- package/lib/cli/services/index.d.ts +7 -0
- package/lib/cli/services/index.js +8 -0
- package/lib/cli/services/index.js.map +1 -0
- package/lib/cli/services/json-output.service.d.ts +20 -0
- package/lib/cli/services/json-output.service.js +101 -0
- package/lib/cli/services/json-output.service.js.map +1 -0
- package/lib/cli/services/results.service.d.ts +13 -0
- package/lib/cli/services/results.service.js +61 -0
- package/lib/cli/services/results.service.js.map +1 -0
- package/lib/cli/services/scan.service.d.ts +13 -0
- package/lib/cli/services/scan.service.js +79 -0
- package/lib/cli/services/scan.service.js.map +1 -0
- package/lib/cli/services/spinner.service.d.ts +9 -0
- package/lib/cli/services/spinner.service.js +27 -0
- package/lib/cli/services/spinner.service.js.map +1 -0
- package/lib/cli/services/ui.service.d.ts +17 -0
- package/lib/cli/services/ui.service.js +59 -0
- package/lib/cli/services/ui.service.js.map +1 -0
- package/lib/cli/services/update.service.d.ts +15 -0
- package/lib/cli/services/update.service.js +37 -0
- package/lib/cli/services/update.service.js.map +1 -0
- package/lib/cli/ui/base.ui.d.ts +28 -0
- package/lib/cli/ui/base.ui.js +49 -0
- package/lib/cli/ui/base.ui.js.map +1 -0
- package/lib/cli/ui/components/general.ui.d.ts +7 -0
- package/lib/cli/ui/components/general.ui.js +13 -0
- package/lib/cli/ui/components/general.ui.js.map +1 -0
- package/lib/cli/ui/components/header/header-ui.constants.d.ts +7 -0
- package/lib/cli/ui/components/header/header-ui.constants.js +7 -0
- package/lib/cli/ui/components/header/header-ui.constants.js.map +1 -0
- package/lib/cli/ui/components/header/header.ui.d.ts +18 -0
- package/lib/cli/ui/components/header/header.ui.js +96 -0
- package/lib/cli/ui/components/header/header.ui.js.map +1 -0
- package/lib/cli/ui/components/header/stats.ui.d.ts +25 -0
- package/lib/cli/ui/components/header/stats.ui.js +198 -0
- package/lib/cli/ui/components/header/stats.ui.js.map +1 -0
- package/lib/cli/ui/components/header/status.ui.d.ts +33 -0
- package/lib/cli/ui/components/header/status.ui.js +188 -0
- package/lib/cli/ui/components/header/status.ui.js.map +1 -0
- package/lib/cli/ui/components/help/help-command.ui.d.ts +9 -0
- package/lib/cli/ui/components/help/help-command.ui.js +61 -0
- package/lib/cli/ui/components/help/help-command.ui.js.map +1 -0
- package/lib/cli/ui/components/help/help.constants.d.ts +8 -0
- package/lib/cli/ui/components/help/help.constants.js +270 -0
- package/lib/cli/ui/components/help/help.constants.js.map +1 -0
- package/lib/cli/ui/components/help/help.ui.d.ts +30 -0
- package/lib/cli/ui/components/help/help.ui.js +176 -0
- package/lib/cli/ui/components/help/help.ui.js.map +1 -0
- package/lib/cli/ui/components/logs.ui.d.ts +24 -0
- package/lib/cli/ui/components/logs.ui.js +132 -0
- package/lib/cli/ui/components/logs.ui.js.map +1 -0
- package/lib/cli/ui/components/options.ui.d.ts +29 -0
- package/lib/cli/ui/components/options.ui.js +327 -0
- package/lib/cli/ui/components/options.ui.js.map +1 -0
- package/lib/cli/ui/components/profile-picker.ui.d.ts +25 -0
- package/lib/cli/ui/components/profile-picker.ui.js +117 -0
- package/lib/cli/ui/components/profile-picker.ui.js.map +1 -0
- package/lib/cli/ui/components/result-details.ui.d.ts +23 -0
- package/lib/cli/ui/components/result-details.ui.js +182 -0
- package/lib/cli/ui/components/result-details.ui.js.map +1 -0
- package/lib/cli/ui/components/results.ui.d.ts +86 -0
- package/lib/cli/ui/components/results.ui.js +620 -0
- package/lib/cli/ui/components/results.ui.js.map +1 -0
- package/lib/cli/ui/components/warning.ui.d.ts +12 -0
- package/lib/cli/ui/components/warning.ui.js +30 -0
- package/lib/cli/ui/components/warning.ui.js.map +1 -0
- package/lib/cli/ui/heavy.ui.d.ts +18 -0
- package/lib/cli/ui/heavy.ui.js +37 -0
- package/lib/cli/ui/heavy.ui.js.map +1 -0
- package/lib/cli/ui/index.d.ts +14 -0
- package/lib/cli/ui/index.js +15 -0
- package/lib/cli/ui/index.js.map +1 -0
- package/lib/constants/cli.constants.d.ts +14 -0
- package/lib/constants/cli.constants.js +138 -0
- package/lib/constants/cli.constants.js.map +1 -0
- package/lib/constants/index.d.ts +8 -0
- package/lib/constants/index.js +9 -0
- package/lib/constants/index.js.map +1 -0
- package/lib/constants/main.constants.d.ts +96 -0
- package/lib/constants/main.constants.js +79 -0
- package/lib/constants/main.constants.js.map +1 -0
- package/lib/constants/messages.constants.d.ts +31 -0
- package/lib/constants/messages.constants.js +37 -0
- package/lib/constants/messages.constants.js.map +1 -0
- package/lib/constants/options.constants.d.ts +6 -0
- package/lib/constants/options.constants.js +8 -0
- package/lib/constants/options.constants.js.map +1 -0
- package/lib/constants/os-service-map.constants.d.ts +10 -0
- package/lib/constants/os-service-map.constants.js +11 -0
- package/lib/constants/os-service-map.constants.js.map +1 -0
- package/lib/constants/result-descriptions.constants.d.ts +142 -0
- package/lib/constants/result-descriptions.constants.js +203 -0
- package/lib/constants/result-descriptions.constants.js.map +1 -0
- package/lib/constants/sort.result.d.ts +6 -0
- package/lib/constants/sort.result.js +22 -0
- package/lib/constants/sort.result.js.map +1 -0
- package/lib/constants/spinner.constants.d.ts +5 -0
- package/lib/constants/spinner.constants.js +88 -0
- package/lib/constants/spinner.constants.js.map +1 -0
- package/lib/constants/status.constants.d.ts +7 -0
- package/lib/constants/status.constants.js +9 -0
- package/lib/constants/status.constants.js.map +1 -0
- package/lib/constants/update.constants.d.ts +2 -0
- package/lib/constants/update.constants.js +3 -0
- package/lib/constants/update.constants.js.map +1 -0
- package/lib/constants/workers.constants.d.ts +14 -0
- package/lib/constants/workers.constants.js +16 -0
- package/lib/constants/workers.constants.js.map +1 -0
- package/lib/core/constants/global-ignored.constants.d.ts +1 -0
- package/lib/core/constants/global-ignored.constants.js +44 -0
- package/lib/core/constants/global-ignored.constants.js.map +1 -0
- package/lib/core/constants/index.d.ts +1 -0
- package/lib/core/constants/index.js +2 -0
- package/lib/core/constants/index.js.map +1 -0
- package/lib/core/constants/profiles.constants.d.ts +8 -0
- package/lib/core/constants/profiles.constants.js +138 -0
- package/lib/core/constants/profiles.constants.js.map +1 -0
- package/lib/core/devkill.d.ts +25 -0
- package/lib/core/devkill.js +129 -0
- package/lib/core/devkill.js.map +1 -0
- package/lib/core/index.d.ts +4 -0
- package/lib/core/index.js +5 -0
- package/lib/core/index.js.map +1 -0
- package/lib/core/interfaces/devkill.interface.d.ts +78 -0
- package/lib/core/interfaces/devkill.interface.js +2 -0
- package/lib/core/interfaces/devkill.interface.js.map +1 -0
- package/lib/core/interfaces/devkillrc-config.interface.d.ts +87 -0
- package/lib/core/interfaces/devkillrc-config.interface.js +12 -0
- package/lib/core/interfaces/devkillrc-config.interface.js.map +1 -0
- package/lib/core/interfaces/file-service.interface.d.ts +76 -0
- package/lib/core/interfaces/file-service.interface.js +2 -0
- package/lib/core/interfaces/file-service.interface.js.map +1 -0
- package/lib/core/interfaces/folder.interface.d.ts +89 -0
- package/lib/core/interfaces/folder.interface.js +2 -0
- package/lib/core/interfaces/folder.interface.js.map +1 -0
- package/lib/core/interfaces/index.d.ts +6 -0
- package/lib/core/interfaces/index.js +7 -0
- package/lib/core/interfaces/index.js.map +1 -0
- package/lib/core/interfaces/logger-service.interface.d.ts +59 -0
- package/lib/core/interfaces/logger-service.interface.js +2 -0
- package/lib/core/interfaces/logger-service.interface.js.map +1 -0
- package/lib/core/interfaces/npkill.interface.d.ts +78 -0
- package/lib/core/interfaces/npkill.interface.js +2 -0
- package/lib/core/interfaces/npkill.interface.js.map +1 -0
- package/lib/core/interfaces/npkillrc-config.interface.d.ts +87 -0
- package/lib/core/interfaces/npkillrc-config.interface.js +12 -0
- package/lib/core/interfaces/npkillrc-config.interface.js.map +1 -0
- package/lib/core/interfaces/profile.interface.d.ts +9 -0
- package/lib/core/interfaces/profile.interface.js +2 -0
- package/lib/core/interfaces/profile.interface.js.map +1 -0
- package/lib/core/interfaces/search-status.model.d.ts +35 -0
- package/lib/core/interfaces/search-status.model.js +48 -0
- package/lib/core/interfaces/search-status.model.js.map +1 -0
- package/lib/core/interfaces/services.interface.d.ts +26 -0
- package/lib/core/interfaces/services.interface.js +2 -0
- package/lib/core/interfaces/services.interface.js.map +1 -0
- package/lib/core/npkill.d.ts +25 -0
- package/lib/core/npkill.js +129 -0
- package/lib/core/npkill.js.map +1 -0
- package/lib/core/services/config/config-merger.d.ts +17 -0
- package/lib/core/services/config/config-merger.js +57 -0
- package/lib/core/services/config/config-merger.js.map +1 -0
- package/lib/core/services/config/config-validator.d.ts +3 -0
- package/lib/core/services/config/config-validator.js +43 -0
- package/lib/core/services/config/config-validator.js.map +1 -0
- package/lib/core/services/config/index.d.ts +4 -0
- package/lib/core/services/config/index.js +5 -0
- package/lib/core/services/config/index.js.map +1 -0
- package/lib/core/services/config/profile-validator.d.ts +6 -0
- package/lib/core/services/config/profile-validator.js +68 -0
- package/lib/core/services/config/profile-validator.js.map +1 -0
- package/lib/core/services/config/property-validators.d.ts +33 -0
- package/lib/core/services/config/property-validators.js +125 -0
- package/lib/core/services/config/property-validators.js.map +1 -0
- package/lib/core/services/config.service.d.ts +37 -0
- package/lib/core/services/config.service.js +100 -0
- package/lib/core/services/config.service.js.map +1 -0
- package/lib/core/services/files/files.service.d.ts +28 -0
- package/lib/core/services/files/files.service.js +207 -0
- package/lib/core/services/files/files.service.js.map +1 -0
- package/lib/core/services/files/files.worker.d.ts +1 -0
- package/lib/core/services/files/files.worker.js +286 -0
- package/lib/core/services/files/files.worker.js.map +1 -0
- package/lib/core/services/files/files.worker.service.d.ts +90 -0
- package/lib/core/services/files/files.worker.service.js +216 -0
- package/lib/core/services/files/files.worker.service.js.map +1 -0
- package/lib/core/services/files/index.d.ts +4 -0
- package/lib/core/services/files/index.js +5 -0
- package/lib/core/services/files/index.js.map +1 -0
- package/lib/core/services/files/unix-files.service.d.ts +9 -0
- package/lib/core/services/files/unix-files.service.js +28 -0
- package/lib/core/services/files/unix-files.service.js.map +1 -0
- package/lib/core/services/files/windows-files.service.d.ts +9 -0
- package/lib/core/services/files/windows-files.service.js +16 -0
- package/lib/core/services/files/windows-files.service.js.map +1 -0
- package/lib/core/services/index.d.ts +5 -0
- package/lib/core/services/index.js +6 -0
- package/lib/core/services/index.js.map +1 -0
- package/lib/core/services/logger.service.d.ts +22 -0
- package/lib/core/services/logger.service.js +84 -0
- package/lib/core/services/logger.service.js.map +1 -0
- package/lib/core/services/profiles.service.d.ts +54 -0
- package/lib/core/services/profiles.service.js +86 -0
- package/lib/core/services/profiles.service.js.map +1 -0
- package/lib/core/services/stream.service.d.ts +12 -0
- package/lib/core/services/stream.service.js +39 -0
- package/lib/core/services/stream.service.js.map +1 -0
- package/lib/dirname.d.ts +2 -0
- package/lib/dirname.js +6 -0
- package/lib/dirname.js.map +1 -0
- package/lib/index.d.ts +2 -0
- package/lib/index.js +11 -0
- package/lib/index.js.map +1 -0
- package/lib/main.d.ts +2 -0
- package/lib/main.js +19 -0
- package/lib/main.js.map +1 -0
- package/lib/utils/get-file-content.d.ts +1 -0
- package/lib/utils/get-file-content.js +6 -0
- package/lib/utils/get-file-content.js.map +1 -0
- package/lib/utils/is-safe-to-delete.d.ts +1 -0
- package/lib/utils/is-safe-to-delete.js +9 -0
- package/lib/utils/is-safe-to-delete.js.map +1 -0
- package/lib/utils/unit-conversions.d.ts +11 -0
- package/lib/utils/unit-conversions.js +54 -0
- package/lib/utils/unit-conversions.js.map +1 -0
- package/package.json +96 -0
|
@@ -0,0 +1,142 @@
|
|
|
1
|
+
export declare const RESULT_TYPE_INFO: {
|
|
2
|
+
node_modules: string;
|
|
3
|
+
dist: string;
|
|
4
|
+
build: string;
|
|
5
|
+
bower_components: string;
|
|
6
|
+
jspm_packages: string;
|
|
7
|
+
'.npm': string;
|
|
8
|
+
'.pnpm-store': string;
|
|
9
|
+
'.yarn': string;
|
|
10
|
+
'.cache': string;
|
|
11
|
+
'.parcel-cache': string;
|
|
12
|
+
'.rpt2_cache': string;
|
|
13
|
+
'.vite': string;
|
|
14
|
+
'.next': string;
|
|
15
|
+
'.nuxt': string;
|
|
16
|
+
'.svelte-kit': string;
|
|
17
|
+
'.astro': string;
|
|
18
|
+
'.angular': string;
|
|
19
|
+
out: string;
|
|
20
|
+
'.expo': string;
|
|
21
|
+
'.expo-shared': string;
|
|
22
|
+
'.nx': string;
|
|
23
|
+
'.turbo': string;
|
|
24
|
+
'storybook-static': string;
|
|
25
|
+
gatsby_cache: string;
|
|
26
|
+
public: string;
|
|
27
|
+
_site: string;
|
|
28
|
+
'.vercel': string;
|
|
29
|
+
'.now': string;
|
|
30
|
+
'.netlify': string;
|
|
31
|
+
'.cache-loader': string;
|
|
32
|
+
'.swc': string;
|
|
33
|
+
'.esbuild': string;
|
|
34
|
+
'.rollup.cache': string;
|
|
35
|
+
'.toiletd': string;
|
|
36
|
+
coverage: string;
|
|
37
|
+
'.nyc_output': string;
|
|
38
|
+
'.jest': string;
|
|
39
|
+
'.tap-snapshots': string;
|
|
40
|
+
'playwright-report': string;
|
|
41
|
+
'test-results': string;
|
|
42
|
+
cypress: string;
|
|
43
|
+
'.eslintcache': string;
|
|
44
|
+
'.prettiercache': string;
|
|
45
|
+
'.stylelintcache': string;
|
|
46
|
+
'.idea': string;
|
|
47
|
+
'.vscode': string;
|
|
48
|
+
'.history': string;
|
|
49
|
+
'.sublime-workspace': string;
|
|
50
|
+
'.bloop': string;
|
|
51
|
+
'.metals': string;
|
|
52
|
+
'.gradle': string;
|
|
53
|
+
'.ds_store': string;
|
|
54
|
+
'thumbs.db': string;
|
|
55
|
+
'.vagrant': string;
|
|
56
|
+
'.terraform': string;
|
|
57
|
+
vendor: string;
|
|
58
|
+
'.composer': string;
|
|
59
|
+
'.m2': string;
|
|
60
|
+
'.bundle': string;
|
|
61
|
+
packages: string;
|
|
62
|
+
target: string;
|
|
63
|
+
out_java: string;
|
|
64
|
+
build_classes: string;
|
|
65
|
+
'.settings': string;
|
|
66
|
+
'.classpath': string;
|
|
67
|
+
'.project': string;
|
|
68
|
+
bin: string;
|
|
69
|
+
obj: string;
|
|
70
|
+
'.vs': string;
|
|
71
|
+
TestResults: string;
|
|
72
|
+
artifacts: string;
|
|
73
|
+
venv: string;
|
|
74
|
+
env: string;
|
|
75
|
+
__pycache__: string;
|
|
76
|
+
'.pytest_cache': string;
|
|
77
|
+
pipenv: string;
|
|
78
|
+
'.venv': string;
|
|
79
|
+
'.ipynb_checkpoints': string;
|
|
80
|
+
'.mypy_cache': string;
|
|
81
|
+
'.ruff_cache': string;
|
|
82
|
+
'.tox': string;
|
|
83
|
+
'.nox': string;
|
|
84
|
+
'.pytype': string;
|
|
85
|
+
'.pyre': string;
|
|
86
|
+
htmlcov: string;
|
|
87
|
+
pkg: string;
|
|
88
|
+
bin_go: string;
|
|
89
|
+
target_rust: string;
|
|
90
|
+
cmake_build: string;
|
|
91
|
+
'cmake-build-debug': string;
|
|
92
|
+
'cmake-build-release': string;
|
|
93
|
+
CMakeFiles: string;
|
|
94
|
+
Debug: string;
|
|
95
|
+
Release: string;
|
|
96
|
+
x64: string;
|
|
97
|
+
x86: string;
|
|
98
|
+
'.cxx': string;
|
|
99
|
+
externalNativeBuild: string;
|
|
100
|
+
library: string;
|
|
101
|
+
Library: string;
|
|
102
|
+
Temp: string;
|
|
103
|
+
Obj: string;
|
|
104
|
+
intermediate: string;
|
|
105
|
+
Intermediate: string;
|
|
106
|
+
DerivedDataCache: string;
|
|
107
|
+
Saved: string;
|
|
108
|
+
Binaries: string;
|
|
109
|
+
'.import': string;
|
|
110
|
+
'.godot': string;
|
|
111
|
+
docker: string;
|
|
112
|
+
'.serverless': string;
|
|
113
|
+
'.firebase': string;
|
|
114
|
+
'.docusaurus': string;
|
|
115
|
+
tmp: string;
|
|
116
|
+
temp: string;
|
|
117
|
+
logs: string;
|
|
118
|
+
coverage_reports: string;
|
|
119
|
+
'.cache-ci': string;
|
|
120
|
+
out_static: string;
|
|
121
|
+
'.sass-cache': string;
|
|
122
|
+
'.cpcache': string;
|
|
123
|
+
'dist-newstyle': string;
|
|
124
|
+
'.stack-work': string;
|
|
125
|
+
_build: string;
|
|
126
|
+
deps: string;
|
|
127
|
+
cover: string;
|
|
128
|
+
nimcache: string;
|
|
129
|
+
elm_stuff: string;
|
|
130
|
+
'.pants.d': string;
|
|
131
|
+
'buck-out': string;
|
|
132
|
+
'bazel-bin': string;
|
|
133
|
+
'bazel-out': string;
|
|
134
|
+
'bazel-testlogs': string;
|
|
135
|
+
deno_dir: string;
|
|
136
|
+
deno_cache: string;
|
|
137
|
+
lightning_logs: string;
|
|
138
|
+
wandb: string;
|
|
139
|
+
mlruns: string;
|
|
140
|
+
runs: string;
|
|
141
|
+
devkill: string;
|
|
142
|
+
};
|
|
@@ -0,0 +1,203 @@
|
|
|
1
|
+
/* eslint-disable quotes */
|
|
2
|
+
///////////
|
|
3
|
+
// IMPORTANT: Keys must be lowercase to match lookup logic
|
|
4
|
+
///////////
|
|
5
|
+
export const RESULT_TYPE_INFO = {
|
|
6
|
+
// =====================
|
|
7
|
+
// Node.js / JavaScript
|
|
8
|
+
// =====================
|
|
9
|
+
node_modules: "Holds all the Node packages your project depends on. Can get huge. Deleting it won't hurt. Just run `npm install` to restore it.",
|
|
10
|
+
dist: 'Distribution/build output: compiled, minified, and ready to ship. Delete and rebuild when needed. Commonly used by Node.js, Python, and many other build tools.',
|
|
11
|
+
build: 'Generic build output. Like a photocopy of your source: disposable and regenerable. WARNING: Generic name; verify contents before deleting.',
|
|
12
|
+
bower_components: 'Old-school Bower package folder. If you still have this, congrats on archaeological findings.',
|
|
13
|
+
jspm_packages: 'JSPM packages cache. Safe to delete. Reinstall will fix it.',
|
|
14
|
+
'.npm': "npm's local cache folder. Free up space if you don't mind re-downloading packages.",
|
|
15
|
+
'.pnpm-store': "pnpm's global store. Deleting it frees space but pnpm will re-populate it on next install.",
|
|
16
|
+
'.yarn': "Yarn v2+ folder (cache, plugins, etc.). Not strictly 'junk' but can be regenerated.",
|
|
17
|
+
'.cache': 'Generic cache folder used by many tools (babel, webpack, rollup, etc.). Delete to force fresh work.',
|
|
18
|
+
// '.cache/webpack':
|
|
19
|
+
// "Webpack's cache area. Deleting it will make the next build slower but deterministic.",
|
|
20
|
+
// '.cache/babel-loader':
|
|
21
|
+
// 'Babel/Webpack loader cache. Safe to remove transforms will re-run.',
|
|
22
|
+
'.parcel-cache': "Parcel's cache. Big and regenerable: delete it and Parcel will rebuild from scratch.",
|
|
23
|
+
'.rpt2_cache': 'Rollup/TypeScript cache (sometimes created by rollup-plugin-typescript2). Safe to delete.',
|
|
24
|
+
'.vite': "Vite's prebundle cache (often node_modules/.vite). Delete to force fresh dependency prebundling.",
|
|
25
|
+
// =====================
|
|
26
|
+
// Frontend Frameworks
|
|
27
|
+
// =====================
|
|
28
|
+
'.next': 'Next.js build/cache folder. Contains server bundles, static files, and caches. Delete to rebuild: Next will regenerate.',
|
|
29
|
+
'.nuxt': 'Nuxt build folder (compiled server + client pieces). Safe to delete; run your build step to recreate.',
|
|
30
|
+
'.svelte-kit': 'SvelteKit build artifacts and caches. Delete to force a fresh build.',
|
|
31
|
+
'.astro': "Astro's build/cache directory. Safe to remove; Astro will recompile.",
|
|
32
|
+
'.angular': 'Angular CLI cache and build metadata. Can grow large: delete to force a full rebuild (`ng build` will recreate it).',
|
|
33
|
+
out: "Next.js/Static export output (often named `out`). Safe to delete: it's generated by `next export` or similar. WARNING: Generic name; some IDEs also use `out` for build output.",
|
|
34
|
+
'.expo': 'Expo project cache and metadata. Safe to trash; `expo start` will rebuild.',
|
|
35
|
+
'.expo-shared': 'Expo shared assets metadata. Deletable: Expo will recreate it.',
|
|
36
|
+
'.nx': 'Nx workspace cache. Blow it away to force cold builds.',
|
|
37
|
+
'.turbo': 'Turborepo incremental cache. Nuke to re-run everything from scratch.',
|
|
38
|
+
'storybook-static': 'Storybook static build output. Delete and rebuild when needed.',
|
|
39
|
+
gatsby_cache: 'Gatsby build cache (.cache folder) and public output. `.cache` (internal build cache) and `public` (static output). `public` is safe to delete; `.cache` will be rebuilt. WARNING: This description refers to the cache specifically, not the public folder.',
|
|
40
|
+
public: 'Generic static site output (Hugo, Gatsby, others). Toss it: your build will regenerate. WARNING: Some projects use `public` for source assets, not build output. Verify before deleting!',
|
|
41
|
+
_site: 'Eleventy/Hugo/Jekyll static output (`_site` for Jekyll/Eleventy). Safe to clear and rebuild.',
|
|
42
|
+
'.vercel': 'Vercel project/deploy metadata. Usually safe to delete locally but may contain deploy hints.',
|
|
43
|
+
'.now': 'Legacy Zeit/Now deploy data. Safe to remove.',
|
|
44
|
+
'.netlify': "Netlify config/cache data. Safe to remove locally if you don't need historical deploy data.",
|
|
45
|
+
// =====================
|
|
46
|
+
// Web bundlers / tool caches
|
|
47
|
+
// =====================
|
|
48
|
+
'.cache-loader': 'Loader cache used by some bundlers to speed builds. Delete to force cold builds.',
|
|
49
|
+
'.swc': 'SWC cache (if present). Regenerable by your build tools.',
|
|
50
|
+
'.esbuild': 'esbuild cache area. Safe to delete: esbuild will re-run transforms.',
|
|
51
|
+
'.rollup.cache': 'Rollup cache dir (if configured). Zap it to rebuild bundles.',
|
|
52
|
+
'.toiletd': "Okay this one is a joke: you won't see it. But seriously, caches are safe to delete.",
|
|
53
|
+
// =====================
|
|
54
|
+
// Test / Coverage / CI
|
|
55
|
+
// =====================
|
|
56
|
+
coverage: 'Test coverage reports (nyc/istanbul). Useful for CI, but fully regenerable.',
|
|
57
|
+
'.nyc_output': "nyc's raw coverage output. Safe to delete: coverage will be recomputed.",
|
|
58
|
+
'.jest': 'Possible Jest cache or artifacts. Deleting may slow the next test run.',
|
|
59
|
+
// '.cache/jest':
|
|
60
|
+
// 'Jest cache area. Safe to remove if you want tests to start fresh.',
|
|
61
|
+
'.tap-snapshots': 'Snapshot/test cache. Deleting removes recorded snapshots: be cautious if you rely on them.',
|
|
62
|
+
'playwright-report': 'Playwright HTML report output. Delete after peeking at the pretty charts.',
|
|
63
|
+
'test-results': 'Generic test results folder (often Playwright). Disposable.',
|
|
64
|
+
cypress: 'Cypress artifacts (screenshots/videos/logs). Delete if you don’t need recordings from past runs.',
|
|
65
|
+
// =====================
|
|
66
|
+
// Lint / Formatter caches
|
|
67
|
+
// =====================
|
|
68
|
+
'.eslintcache': "ESLint cache file. Deleting will make linting slower the first run but won't break anything.",
|
|
69
|
+
'.prettiercache': 'Prettier cache (rare). Safe to remove.',
|
|
70
|
+
'.stylelintcache': 'Stylelint cache. Safe to nuke; it will be recreated.',
|
|
71
|
+
// =====================
|
|
72
|
+
// Editors / IDEs / Local configs
|
|
73
|
+
// =====================
|
|
74
|
+
'.idea': 'JetBrains IDE project files (workspace settings, caches, etc.). Not build artifacts but can be large: treat with care. WARNING: Contains run configurations, code style settings, and custom tool windows. Usually committed to Git in team projects.',
|
|
75
|
+
'.vscode': "VS Code workspace settings and local state. Contains editor preferences, debug configs, etc. Generally safe to remove if you don't share workspace settings. WARNING: Deleting removes custom debug configurations and tasks.",
|
|
76
|
+
'.history': 'Local editor history (varies by plugin). Can be deleted to shrink repo clones.',
|
|
77
|
+
'.sublime-workspace': "Sublime Text workspace state. Safe to remove if you don't need session restore.",
|
|
78
|
+
'.bloop': 'Scala build server metadata. Deleting will make the next import slower.',
|
|
79
|
+
'.metals': 'Scala Metals IDE cache. Safe to delete; Metals will re-index.',
|
|
80
|
+
'.gradle': "Gradle's cache and wrapper downloads. Deleting forces Gradle to re-download dependencies: slows builds but ok.",
|
|
81
|
+
// =====================
|
|
82
|
+
// OS / miscellaneous files (often found in repos)
|
|
83
|
+
// =====================
|
|
84
|
+
'.ds_store': 'macOS Finder metadata file. This is a file, not folder. Safe to delete.',
|
|
85
|
+
'thumbs.db': 'Windows image thumbnail cache. This is a file, not folder. Safe to delete.',
|
|
86
|
+
'.vagrant': "Vagrant VM state: deleting frees space but you'll lose VM state; recreate with `vagrant up`.",
|
|
87
|
+
'.terraform': 'Terraform working dir (providers/modules cache). Safe to delete; `terraform init` will re-download.',
|
|
88
|
+
// =====================
|
|
89
|
+
// Package managers / lockstores
|
|
90
|
+
// =====================
|
|
91
|
+
vendor: "Composer's PHP dependency folder (or Go vendor folder). Delete and run `composer install` (PHP) or rebuild (Go) to restore. WARNING: Different meaning in PHP vs Go contexts.",
|
|
92
|
+
'.composer': 'Composer global cache/dir. Regenerable by Composer.',
|
|
93
|
+
'.m2': 'Maven local repository (usually in user home ~/.m2/repository). Contains all downloaded Maven dependencies. Huge sometimes: can be cleaned but re-downloading takes time.',
|
|
94
|
+
'.bundle': 'Ruby Bundler settings/cache. Safe to remove; `bundle install` will recreate bits.',
|
|
95
|
+
packages: 'Old .NET/NuGet packages folder (pre-PackageReference style). You can restore with your package manager. WARNING: Verify this is build output, not a source directory containing actual project packages.',
|
|
96
|
+
// =====================
|
|
97
|
+
// Java / JVM
|
|
98
|
+
// =====================
|
|
99
|
+
target: 'Maven `target` folder (Java) or Cargo `target` folder (Rust). Contains compiled classes and packaged artifacts. Safe to delete and rebuild. WARNING: Generic name used by multiple build systems.',
|
|
100
|
+
out_java: 'IDE/build `out` folder containing compiled classes. Rebuildable.',
|
|
101
|
+
build_classes: 'Generated class files. Safe to delete.',
|
|
102
|
+
'.settings': 'Eclipse project settings. Not build output, but safe to regenerate.',
|
|
103
|
+
'.classpath': 'Eclipse metadata. File/dir you can regenerate by re-importing the project.',
|
|
104
|
+
'.project': 'Eclipse project definition. Can be re-created by the IDE.',
|
|
105
|
+
// =====================
|
|
106
|
+
// .NET / C#
|
|
107
|
+
// =====================
|
|
108
|
+
bin: "Compiled binaries folder (used by many ecosystems: .NET, Go, etc.). Delete to rebuild cleanly. WARNING: Very generic name; verify it's build output, not source binaries.",
|
|
109
|
+
obj: 'Intermediate object files (.NET, C++, Unity). Deleting forces a full recompile next time. Safe to delete.',
|
|
110
|
+
'.vs': 'Visual Studio local workspace data. Safe to delete; VS will rehydrate it.',
|
|
111
|
+
TestResults: 'Visual Studio/.NET test result output. Toss it after runs.',
|
|
112
|
+
artifacts: 'Generic build artifacts folder used by many .NET repos. Generated: safe to purge and rebuild.',
|
|
113
|
+
// =====================
|
|
114
|
+
// Python
|
|
115
|
+
// =====================
|
|
116
|
+
venv: 'A self-contained Python environment with its own packages. Delete to start fresh, then recreate with `python -m venv venv`.',
|
|
117
|
+
env: 'Another virtual environment name. Same deal as `venv`.',
|
|
118
|
+
__pycache__: 'Python bytecode caches (.pyc). Safe to delete: Python will recreate them.',
|
|
119
|
+
'.pytest_cache': 'Pytest cache. Delete to forget previous runs; tests will run fresh.',
|
|
120
|
+
pipenv: "Pipenv's virtualenv location (usually in user home directory, not project). Regenerable by Pipenv. WARNING: Typically stored globally, not in project directory.",
|
|
121
|
+
'.venv': 'Virtual environment, but dot-prefixed. Remove and recreate if you need a clean slate.',
|
|
122
|
+
'.ipynb_checkpoints': 'Jupyter notebook autosaves. Safe to nuke; notebooks stay.',
|
|
123
|
+
'.mypy_cache': 'mypy type-checker cache. Delete to force a full re-check.',
|
|
124
|
+
'.ruff_cache': 'Ruff linter cache. Safe to delete; Ruff will refill it.',
|
|
125
|
+
'.tox': 'tox environments. Delete and tox will recreate them on next run.',
|
|
126
|
+
'.nox': 'nox virtualenvs. Safe to remove; tasks will recreate.',
|
|
127
|
+
'.pytype': 'pytype analysis cache. Disposable.',
|
|
128
|
+
'.pyre': 'Pyre type checker cache. Disposable.',
|
|
129
|
+
htmlcov: 'HTML coverage output (pytest-cov). Just reports: delete anytime.',
|
|
130
|
+
// =====================
|
|
131
|
+
// Go / Rust / C / C++
|
|
132
|
+
// =====================
|
|
133
|
+
pkg: 'Go compiled package cache (or generic `pkg` dir). Safe to delete: `go build` will restore it.',
|
|
134
|
+
bin_go: 'Compiled Go binaries folder. Deletable and rebuildable.',
|
|
135
|
+
target_rust: "Cargo's `target` folder with compiled Rust artifacts. Large but regenerable with `cargo build`.",
|
|
136
|
+
cmake_build: 'CMake output directory. Delete and re-run CMake to rebuild.',
|
|
137
|
+
'cmake-build-debug': 'CLion/CMake debug build output. Delete and reconfigure builds.',
|
|
138
|
+
'cmake-build-release': 'CLion/CMake release build output. Disposable.',
|
|
139
|
+
CMakeFiles: 'CMake intermediate files. You can remove them safely.',
|
|
140
|
+
Debug: 'Generic debug build folder (C/C++, Visual Studio). Contains debug binaries. Safe to remove and rebuild.',
|
|
141
|
+
Release: 'Generic release build folder (C/C++, Visual Studio). Contains optimized binaries. Safe to remove and rebuild.',
|
|
142
|
+
x64: 'Architecture-specific build output. Generated: delete and rebuild.',
|
|
143
|
+
x86: 'Architecture-specific build output. Generated: delete and rebuild.',
|
|
144
|
+
'.cxx': 'Android NDK build cache. Safe to delete; Gradle will regenerate.',
|
|
145
|
+
externalNativeBuild: 'Android external NDK build output. Disposable.',
|
|
146
|
+
// =====================
|
|
147
|
+
// Game engines (from previous list, kept for completeness)
|
|
148
|
+
// =====================
|
|
149
|
+
library: "Unity's internal imported-asset cache. Huge but re-creatable: Unity will reimport everything.",
|
|
150
|
+
Library: "Unity's actual 'Library' folder (case-sensitive systems). Same deal: giant cache: safe to delete. WARNING: On macOS, DO NOT delete ~/Library (user's system Library). Only delete if it's in a Unity project!",
|
|
151
|
+
Temp: "Unity temp build files. Close the Unity editor first, then delete. WARNING: Generic name; ensure it's in a Unity project context.",
|
|
152
|
+
Obj: "Unity intermediate object cache. Disposable. WARNING: Generic name; verify it's in a Unity project before deleting.",
|
|
153
|
+
intermediate: "Unreal temp build files. Safe to delete but expect long rebuilds. WARNING: Generic name; verify it's in an Unreal project.",
|
|
154
|
+
Intermediate: "Unreal intermediate files (proper case). Delete to force a clean rebuild. WARNING: Generic name; verify it's in an Unreal project.",
|
|
155
|
+
DerivedDataCache: 'Unreal Engine derived data cache. Stores cooked/processed assets to speed up builds. Deleting forces re-cooking of assets. WARNING: Can be many GB. Safe to delete but rebuild will be slow.',
|
|
156
|
+
Saved: 'Unreal Engine saved files (logs, autosaves, cooked content, screenshots). Safe to delete but you may lose local editor settings, autosaves, and cooked assets. WARNING: May contain unsaved work!',
|
|
157
|
+
Binaries: 'Unreal Engine compiled binaries. Contains game/editor executables and DLLs. Regenerated by the build system. Safe to delete but requires full recompilation.',
|
|
158
|
+
'.import': 'Godot imported assets cache. Re-imports on next run.',
|
|
159
|
+
'.godot': 'Godot 4 project cache and metadata. Safe to delete; Godot will rebuild it.',
|
|
160
|
+
// =====================
|
|
161
|
+
// Docker / Containers / Cloud
|
|
162
|
+
// =====================
|
|
163
|
+
docker: 'Local Docker build artifacts (if present in project). WARNING: This is unusual; Docker data is typically in system directories. Verify before deleting as it may contain important container volumes or configs.',
|
|
164
|
+
'.serverless': 'Serverless Framework output (deploy packages, cloud artifacts). Rebuildable, but check before deleting.',
|
|
165
|
+
'.firebase': 'Firebase local state/cache. Contains local emulator data and deployment cache. Safe locally but contains deploy helpers. WARNING: May contain local emulator data.',
|
|
166
|
+
'.docusaurus': 'Docusaurus build cache (v2). You can wipe it; `npm run build` restores output.',
|
|
167
|
+
// =====================
|
|
168
|
+
// Misc / catch-all
|
|
169
|
+
// =====================
|
|
170
|
+
tmp: "Generic temporary files. Safe to clear if the program isn't running. WARNING: Very generic name; ensure programs using it are closed.",
|
|
171
|
+
temp: 'Same as tmp. Temporary files directory. Cleans up disk but might slow first run after deletion. WARNING: Ensure no programs are actively using it.',
|
|
172
|
+
logs: "Log files directory. Useful for debugging, but safe to archive or delete when old. WARNING: Verify logs aren't critical for auditing/compliance before deleting.",
|
|
173
|
+
coverage_reports: 'Saved coverage outputs: can grow. Delete if you can regenerate.',
|
|
174
|
+
'.cache-ci': 'Generic CI cache folder. Deleting will make CI re-download dependencies next run.',
|
|
175
|
+
out_static: 'Generic static export output: disposable and rebuildable.',
|
|
176
|
+
'.sass-cache': 'Legacy Sass cache. Totally safe to delete.',
|
|
177
|
+
'.cpcache': 'Clojure CLI compilation cache. Delete to recompile on next run.',
|
|
178
|
+
'dist-newstyle': 'Haskell Cabal build output. Delete and rebuild.',
|
|
179
|
+
'.stack-work': 'Haskell Stack build cache. Disposable; `stack build` will recreate.',
|
|
180
|
+
_build: 'Generic build output for many tools (Sphinx, Dune, Elixir Mix, etc.). Safe to delete and rebuild. Commonly used by Elixir, Erlang, OCaml, and Python documentation tools.',
|
|
181
|
+
deps: "Elixir/Erlang dependencies (or generic deps folder). Delete and `mix deps.get` to restore. WARNING: Generic name; verify it's an Elixir/Erlang project.",
|
|
182
|
+
cover: 'Elixir test coverage output. Disposable coverage reports and data.',
|
|
183
|
+
nimcache: 'Nim compiler cache. Safe to nuke; it will recompile.',
|
|
184
|
+
elm_stuff: 'Elm dependency cache. Delete and `elm make` will restore.',
|
|
185
|
+
'.pants.d': 'Pants build system cache. Remove to force clean builds.',
|
|
186
|
+
'buck-out': 'Buck build output. Delete to rebuild.',
|
|
187
|
+
'bazel-bin': 'Bazel binary outputs. Regenerated by Bazel.',
|
|
188
|
+
'bazel-out': 'Bazel build outputs. Disposable.',
|
|
189
|
+
'bazel-testlogs': 'Bazel test logs. Delete freely.',
|
|
190
|
+
deno_dir: 'Deno cache dir (if set locally). Safe to clear: Deno will fetch again.',
|
|
191
|
+
deno_cache: 'Another name for a local Deno cache dir. Disposable.',
|
|
192
|
+
lightning_logs: "PyTorch Lightning logs and checkpoints. Contains training metrics and model checkpoints. WARNING: Delete only if you don't need experiment history or saved model weights!",
|
|
193
|
+
wandb: "Weights & Biases run logs. Contains experiment tracking data and artifacts. Big sometimes: delete if you're done with the experiments. WARNING: May contain model checkpoints and metrics!",
|
|
194
|
+
mlruns: 'MLflow tracking data. Contains experiment runs, parameters, and artifacts. WARNING: Remove only if you accept losing past runs and model artifacts!',
|
|
195
|
+
runs: "TensorBoard logs (often named runs/). Purely for visualization: safe to prune. WARNING: Generic name; verify it's actually TensorBoard logs before deleting.",
|
|
196
|
+
devkill: `You’re aiming at *me*!
|
|
197
|
+
I clean junk... I *am* not junk!
|
|
198
|
+
/(ಥ﹏ಥ)\\`,
|
|
199
|
+
// npkill: `Ah, recursion.
|
|
200
|
+
// A beautiful concept... until it deletes itself.
|
|
201
|
+
// `,
|
|
202
|
+
};
|
|
203
|
+
//# sourceMappingURL=result-descriptions.constants.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"result-descriptions.constants.js","sourceRoot":"","sources":["../../src/constants/result-descriptions.constants.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import type { CliScanFoundFolder } from '../cli/interfaces/index.js';
|
|
2
|
+
export declare const FOLDER_SORT: {
|
|
3
|
+
path: (a: CliScanFoundFolder, b: CliScanFoundFolder) => 1 | -1;
|
|
4
|
+
size: (a: CliScanFoundFolder, b: CliScanFoundFolder) => 1 | -1;
|
|
5
|
+
age: (a: CliScanFoundFolder, b: CliScanFoundFolder) => number;
|
|
6
|
+
};
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
export const FOLDER_SORT = {
|
|
2
|
+
path: (a, b) => a.path > b.path ? 1 : -1,
|
|
3
|
+
size: (a, b) => {
|
|
4
|
+
if (a.size !== b.size) {
|
|
5
|
+
return a.size < b.size ? 1 : -1;
|
|
6
|
+
}
|
|
7
|
+
return FOLDER_SORT.path(a, b);
|
|
8
|
+
},
|
|
9
|
+
age: (a, b) => {
|
|
10
|
+
if (a.modificationTime === b.modificationTime) {
|
|
11
|
+
return FOLDER_SORT.path(a, b);
|
|
12
|
+
}
|
|
13
|
+
if (a.modificationTime === null && b.modificationTime !== null) {
|
|
14
|
+
return 1;
|
|
15
|
+
}
|
|
16
|
+
if (b.modificationTime === null && a.modificationTime !== null) {
|
|
17
|
+
return -1;
|
|
18
|
+
}
|
|
19
|
+
return a.modificationTime - b.modificationTime;
|
|
20
|
+
},
|
|
21
|
+
};
|
|
22
|
+
//# sourceMappingURL=sort.result.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"sort.result.js","sourceRoot":"","sources":["../../src/constants/sort.result.ts"],"names":[],"mappings":"AAEA,MAAM,CAAC,MAAM,WAAW,GAAG;IACzB,IAAI,EAAE,CAAC,CAAqB,EAAE,CAAqB,EAAE,EAAE,CACrD,CAAC,CAAC,IAAI,GAAG,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;IAC1B,IAAI,EAAE,CAAC,CAAqB,EAAE,CAAqB,EAAE,EAAE;QACrD,IAAI,CAAC,CAAC,IAAI,KAAK,CAAC,CAAC,IAAI,EAAE,CAAC;YACtB,OAAO,CAAC,CAAC,IAAI,GAAG,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;QAClC,CAAC;QACD,OAAO,WAAW,CAAC,IAAI,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC;IAChC,CAAC;IACD,GAAG,EAAE,CAAC,CAAqB,EAAE,CAAqB,EAAE,EAAE;QACpD,IAAI,CAAC,CAAC,gBAAgB,KAAK,CAAC,CAAC,gBAAgB,EAAE,CAAC;YAC9C,OAAO,WAAW,CAAC,IAAI,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC;QAChC,CAAC;QAED,IAAI,CAAC,CAAC,gBAAgB,KAAK,IAAI,IAAI,CAAC,CAAC,gBAAgB,KAAK,IAAI,EAAE,CAAC;YAC/D,OAAO,CAAC,CAAC;QACX,CAAC;QAED,IAAI,CAAC,CAAC,gBAAgB,KAAK,IAAI,IAAI,CAAC,CAAC,gBAAgB,KAAK,IAAI,EAAE,CAAC;YAC/D,OAAO,CAAC,CAAC,CAAC;QACZ,CAAC;QAED,OAAO,CAAC,CAAC,gBAAgB,GAAG,CAAC,CAAC,gBAAgB,CAAC;IACjD,CAAC;CACF,CAAC"}
|
|
@@ -0,0 +1,88 @@
|
|
|
1
|
+
export const SPINNER_INTERVAL = 70;
|
|
2
|
+
export const SPINNERS = {
|
|
3
|
+
SPRING: [
|
|
4
|
+
'⠈',
|
|
5
|
+
'⠉',
|
|
6
|
+
'⠋',
|
|
7
|
+
'⠓',
|
|
8
|
+
'⠒',
|
|
9
|
+
'⠐',
|
|
10
|
+
'⠐',
|
|
11
|
+
'⠒',
|
|
12
|
+
'⠖',
|
|
13
|
+
'⠦',
|
|
14
|
+
'⠤',
|
|
15
|
+
'⠠',
|
|
16
|
+
'⠠',
|
|
17
|
+
'⠤',
|
|
18
|
+
'⠦',
|
|
19
|
+
'⠖',
|
|
20
|
+
'⠒',
|
|
21
|
+
'⠐',
|
|
22
|
+
'⠐',
|
|
23
|
+
'⠒',
|
|
24
|
+
'⠓',
|
|
25
|
+
'⠋',
|
|
26
|
+
'⠉',
|
|
27
|
+
'⠈',
|
|
28
|
+
],
|
|
29
|
+
W10: [
|
|
30
|
+
'⢀⠀',
|
|
31
|
+
'⡀⠀',
|
|
32
|
+
'⠄⠀',
|
|
33
|
+
'⢂⠀',
|
|
34
|
+
'⡂⠀',
|
|
35
|
+
'⠅⠀',
|
|
36
|
+
'⢃⠀',
|
|
37
|
+
'⡃⠀',
|
|
38
|
+
'⠍⠀',
|
|
39
|
+
'⢋⠀',
|
|
40
|
+
'⡋⠀',
|
|
41
|
+
'⠍⠁',
|
|
42
|
+
'⢋⠁',
|
|
43
|
+
'⡋⠁',
|
|
44
|
+
'⠍⠉',
|
|
45
|
+
'⠋⠉',
|
|
46
|
+
'⠋⠉',
|
|
47
|
+
'⠉⠙',
|
|
48
|
+
'⠉⠙',
|
|
49
|
+
'⠉⠩',
|
|
50
|
+
'⠈⢙',
|
|
51
|
+
'⠈⡙',
|
|
52
|
+
'⢈⠩',
|
|
53
|
+
'⡀⢙',
|
|
54
|
+
'⠄⡙',
|
|
55
|
+
'⢂⠩',
|
|
56
|
+
'⡂⢘',
|
|
57
|
+
'⠅⡘',
|
|
58
|
+
'⢃⠨',
|
|
59
|
+
'⡃⢐',
|
|
60
|
+
'⠍⡐',
|
|
61
|
+
'⢋⠠',
|
|
62
|
+
'⡋⢀',
|
|
63
|
+
'⠍⡁',
|
|
64
|
+
'⢋⠁',
|
|
65
|
+
'⡋⠁',
|
|
66
|
+
'⠍⠉',
|
|
67
|
+
'⠋⠉',
|
|
68
|
+
'⠋⠉',
|
|
69
|
+
'⠉⠙',
|
|
70
|
+
'⠉⠙',
|
|
71
|
+
'⠉⠩',
|
|
72
|
+
'⠈⢙',
|
|
73
|
+
'⠈⡙',
|
|
74
|
+
'⠈⠩',
|
|
75
|
+
'⠀⢙',
|
|
76
|
+
'⠀⡙',
|
|
77
|
+
'⠀⠩',
|
|
78
|
+
'⠀⢘',
|
|
79
|
+
'⠀⡘',
|
|
80
|
+
'⠀⠨',
|
|
81
|
+
'⠀⢐',
|
|
82
|
+
'⠀⡐',
|
|
83
|
+
'⠀⠠',
|
|
84
|
+
'⠀⢀',
|
|
85
|
+
'⠀⡀',
|
|
86
|
+
],
|
|
87
|
+
};
|
|
88
|
+
//# sourceMappingURL=spinner.constants.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"spinner.constants.js","sourceRoot":"","sources":["../../src/constants/spinner.constants.ts"],"names":[],"mappings":"AAAA,MAAM,CAAC,MAAM,gBAAgB,GAAG,EAAE,CAAC;AACnC,MAAM,CAAC,MAAM,QAAQ,GAAG;IACtB,MAAM,EAAE;QACN,GAAG;QACH,GAAG;QACH,GAAG;QACH,GAAG;QACH,GAAG;QACH,GAAG;QACH,GAAG;QACH,GAAG;QACH,GAAG;QACH,GAAG;QACH,GAAG;QACH,GAAG;QACH,GAAG;QACH,GAAG;QACH,GAAG;QACH,GAAG;QACH,GAAG;QACH,GAAG;QACH,GAAG;QACH,GAAG;QACH,GAAG;QACH,GAAG;QACH,GAAG;QACH,GAAG;KACJ;IACD,GAAG,EAAE;QACH,IAAI;QACJ,IAAI;QACJ,IAAI;QACJ,IAAI;QACJ,IAAI;QACJ,IAAI;QACJ,IAAI;QACJ,IAAI;QACJ,IAAI;QACJ,IAAI;QACJ,IAAI;QACJ,IAAI;QACJ,IAAI;QACJ,IAAI;QACJ,IAAI;QACJ,IAAI;QACJ,IAAI;QACJ,IAAI;QACJ,IAAI;QACJ,IAAI;QACJ,IAAI;QACJ,IAAI;QACJ,IAAI;QACJ,IAAI;QACJ,IAAI;QACJ,IAAI;QACJ,IAAI;QACJ,IAAI;QACJ,IAAI;QACJ,IAAI;QACJ,IAAI;QACJ,IAAI;QACJ,IAAI;QACJ,IAAI;QACJ,IAAI;QACJ,IAAI;QACJ,IAAI;QACJ,IAAI;QACJ,IAAI;QACJ,IAAI;QACJ,IAAI;QACJ,IAAI;QACJ,IAAI;QACJ,IAAI;QACJ,IAAI;QACJ,IAAI;QACJ,IAAI;QACJ,IAAI;QACJ,IAAI;QACJ,IAAI;QACJ,IAAI;QACJ,IAAI;QACJ,IAAI;QACJ,IAAI;QACJ,IAAI;QACJ,IAAI;KACL;CACF,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"status.constants.js","sourceRoot":"","sources":["../../src/constants/status.constants.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,MAAM,YAAY,CAAC;AAE5B,MAAM,CAAC,MAAM,SAAS,GAAG;IACvB,EAAE,EAAE,EAAE,CAAC,IAAI,CAAC,GAAG,CAAC;IAChB,UAAU,EAAE,EAAE,CAAC,KAAK,CAAC,GAAG,CAAC;IACzB,eAAe,EAAE,EAAE,CAAC,IAAI,CAAC,GAAG,CAAC;IAC7B,SAAS,EAAE,EAAE,CAAC,KAAK,CAAC,GAAG,CAAC;CACzB,CAAC;AAEF,MAAM,CAAC,MAAM,SAAS,GAAG,EAAE,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"update.constants.js","sourceRoot":"","sources":["../../src/constants/update.constants.ts"],"names":[],"mappings":"AAAA,MAAM,CAAC,MAAM,uBAAuB,GAAG,oCAAoC,CAAC;AAC5E,MAAM,CAAC,MAAM,WAAW,GAAG,yBAAyB,CAAC"}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
export declare const MAX_WORKERS = 16;
|
|
2
|
+
export declare const MAX_PROCS = 100;
|
|
3
|
+
export declare const EVENTS: {
|
|
4
|
+
readonly startup: "startup";
|
|
5
|
+
readonly alive: "alive";
|
|
6
|
+
readonly exploreConfig: "exploreConfig";
|
|
7
|
+
readonly explore: "explore";
|
|
8
|
+
readonly scanResult: "scanResult";
|
|
9
|
+
readonly getFolderSize: "getFolderSize";
|
|
10
|
+
readonly GetSizeResult: "GetSizeResult";
|
|
11
|
+
readonly stop: "stop";
|
|
12
|
+
readonly error: "error";
|
|
13
|
+
};
|
|
14
|
+
export type EVENTS = (typeof EVENTS)[keyof typeof EVENTS];
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
export const MAX_WORKERS = 16;
|
|
2
|
+
// More PROCS improve the speed of the search in the worker,
|
|
3
|
+
// but it will greatly increase the maximum ram usage.
|
|
4
|
+
export const MAX_PROCS = 100;
|
|
5
|
+
export const EVENTS = {
|
|
6
|
+
startup: 'startup',
|
|
7
|
+
alive: 'alive',
|
|
8
|
+
exploreConfig: 'exploreConfig',
|
|
9
|
+
explore: 'explore',
|
|
10
|
+
scanResult: 'scanResult',
|
|
11
|
+
getFolderSize: 'getFolderSize',
|
|
12
|
+
GetSizeResult: 'GetSizeResult',
|
|
13
|
+
stop: 'stop',
|
|
14
|
+
error: 'error',
|
|
15
|
+
};
|
|
16
|
+
//# sourceMappingURL=workers.constants.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"workers.constants.js","sourceRoot":"","sources":["../../src/constants/workers.constants.ts"],"names":[],"mappings":"AAAA,MAAM,CAAC,MAAM,WAAW,GAAG,EAAE,CAAC;AAC9B,4DAA4D;AAC5D,sDAAsD;AACtD,MAAM,CAAC,MAAM,SAAS,GAAG,GAAG,CAAC;AAC7B,MAAM,CAAC,MAAM,MAAM,GAAG;IACpB,OAAO,EAAE,SAAS;IAClB,KAAK,EAAE,OAAO;IACd,aAAa,EAAE,eAAe;IAC9B,OAAO,EAAE,SAAS;IAClB,UAAU,EAAE,YAAY;IACxB,aAAa,EAAE,eAAe;IAC9B,aAAa,EAAE,eAAe;IAC9B,IAAI,EAAE,MAAM;IACZ,KAAK,EAAE,OAAO;CACN,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const GLOBAL_IGNORE: Set<string>;
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
/*
|
|
2
|
+
These directories will always be excluded during the search.
|
|
3
|
+
However, if the name matches a target, it will be displayed as a result.
|
|
4
|
+
This way, we avoid entering directories where we know we won't find what we need.
|
|
5
|
+
*/
|
|
6
|
+
export const GLOBAL_IGNORE = new Set([
|
|
7
|
+
// Version controls
|
|
8
|
+
'.git',
|
|
9
|
+
'.svn',
|
|
10
|
+
'.hg',
|
|
11
|
+
'.fossil',
|
|
12
|
+
// System folders
|
|
13
|
+
'.Trash',
|
|
14
|
+
'.Trashes',
|
|
15
|
+
'System Volume Information',
|
|
16
|
+
'.Spotlight-V100',
|
|
17
|
+
'.fseventsd',
|
|
18
|
+
// Tools and environment
|
|
19
|
+
'.nvm',
|
|
20
|
+
'.rvm',
|
|
21
|
+
'.rustup',
|
|
22
|
+
'.pyenv',
|
|
23
|
+
'.rbenv',
|
|
24
|
+
'.asdf',
|
|
25
|
+
'.deno',
|
|
26
|
+
// IDEs
|
|
27
|
+
'.vscode',
|
|
28
|
+
'.idea',
|
|
29
|
+
'.vs',
|
|
30
|
+
'.settings',
|
|
31
|
+
// Other
|
|
32
|
+
'snap',
|
|
33
|
+
'.flatpak-info',
|
|
34
|
+
//Heavy
|
|
35
|
+
'node_modules',
|
|
36
|
+
'__pycache__',
|
|
37
|
+
'target',
|
|
38
|
+
'build',
|
|
39
|
+
'dist',
|
|
40
|
+
'.cache',
|
|
41
|
+
'.venv',
|
|
42
|
+
'venv',
|
|
43
|
+
]);
|
|
44
|
+
//# sourceMappingURL=global-ignored.constants.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"global-ignored.constants.js","sourceRoot":"","sources":["../../../src/core/constants/global-ignored.constants.ts"],"names":[],"mappings":"AAAA;;;;EAIE;AAEF,MAAM,CAAC,MAAM,aAAa,GAAG,IAAI,GAAG,CAAC;IACnC,mBAAmB;IACnB,MAAM;IACN,MAAM;IACN,KAAK;IACL,SAAS;IAET,iBAAiB;IACjB,QAAQ;IACR,UAAU;IACV,2BAA2B;IAC3B,iBAAiB;IACjB,YAAY;IAEZ,wBAAwB;IACxB,MAAM;IACN,MAAM;IACN,SAAS;IACT,QAAQ;IACR,QAAQ;IACR,OAAO;IACP,OAAO;IAEP,OAAO;IACP,SAAS;IACT,OAAO;IACP,KAAK;IACL,WAAW;IAEX,QAAQ;IACR,MAAM;IACN,eAAe;IAEf,OAAO;IACP,cAAc;IACd,aAAa;IACb,QAAQ;IACR,OAAO;IACP,MAAM;IACN,QAAQ;IACR,OAAO;IACP,MAAM;CACP,CAAC,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './profiles.constants.js';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/core/constants/index.ts"],"names":[],"mappings":"AAAA,cAAc,yBAAyB,CAAC"}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import type { PROFILE } from '../interfaces/profile.interface.js';
|
|
2
|
+
export declare const DEFAULT_PROFILE = "node";
|
|
3
|
+
export declare const BASE_PROFILES: {
|
|
4
|
+
[profileName: string]: PROFILE;
|
|
5
|
+
};
|
|
6
|
+
export declare const DEFAULT_PROFILES: {
|
|
7
|
+
[profileName: string]: PROFILE;
|
|
8
|
+
};
|