Last active
January 17, 2023 17:31
-
-
Save TylerSustare/9d0bf8ac4dfef8c9f74dce7da9386ab4 to your computer and use it in GitHub Desktop.
Revisions
-
TylerSustare renamed this gist
Jan 17, 2023 . 1 changed file with 0 additions and 0 deletions.There are no files selected for viewing
File renamed without changes. -
TylerSustare revised this gist
Jan 17, 2023 . 3 changed files with 6 additions and 4 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,5 @@ #!/usr/bin/ruby require 'fileutils' FileUtils.rm_r Dir.glob './**/node_modules' FileUtils.rm_r Dir.glob './**/dist' This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,4 +0,0 @@ This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,3 +1,4 @@ #!/bin/bash find . -name node_modules -type d -print0 | xargs -0 rm -r --; find . -name dist -type d -print0 | xargs -0 rm -r -- -
TylerSustare revised this gist
Dec 23, 2022 . 1 changed file with 3 additions and 0 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,3 @@ #!/bin/bash find . -name dist -type d -print0 | xargs -0 rm -r -- -
TylerSustare created this gist
Dec 23, 2022 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,4 @@ #!/usr/bin/ruby require 'fileutils' FileUtils.rm_r Dir.glob './packages/**/dist'