Skip to content

Commit 07a3944

Browse files
chore(Tools): update maintenance tools (#5355)
* chore: remove wasm tools * chore: remove windows tools * chore: remove git tools * chore: update ba blazor service app desc * chore: add pack watch delete tools Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
1 parent a0fc459 commit 07a3944

File tree

12 files changed

+36
-134
lines changed

12 files changed

+36
-134
lines changed

scripts/git/run.cmd

Lines changed: 0 additions & 3 deletions
This file was deleted.

scripts/git/run.sh

Lines changed: 0 additions & 3 deletions
This file was deleted.

scripts/services/ba.blazor.service

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[Unit]
2-
Description=Bootstrap Admin Blazor Application
2+
Description=BootstrapBlazor Offical Web Application
33

44
[Service]
55
Type=simple

scripts/wasm/sync.cmd

Lines changed: 0 additions & 22 deletions
This file was deleted.

scripts/wasm/sync.sh

Lines changed: 0 additions & 24 deletions
This file was deleted.

scripts/windows/bundle.cmd

Lines changed: 0 additions & 1 deletion
This file was deleted.

scripts/windows/pack.cmd

Lines changed: 0 additions & 27 deletions
This file was deleted.

scripts/windows/push.cmd

Lines changed: 0 additions & 4 deletions
This file was deleted.

scripts/windows/push.ps1

Lines changed: 0 additions & 49 deletions
This file was deleted.

tools/delete-bin.cmd

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
@ECHO off
2+
cls
3+
cd ..
4+
5+
ECHO Deleting all BIN and OBJ folders...
6+
ECHO.
7+
8+
FOR /d /r . %%d in (bin,obj) DO (
9+
IF EXIST "%%d" (
10+
ECHO %%d | FIND /I "\node_modules\" > Nul && (
11+
ECHO.Skipping: %%d
12+
) || (
13+
ECHO.Deleting: %%d
14+
rd /s/q "%%d"
15+
)
16+
)
17+
)
18+
19+
ECHO.
20+
ECHO.BIN and OBJ folders have been successfully deleted. Press any key to exit.
21+
pause > nul

0 commit comments

Comments
 (0)