@slango.configs/scripts
Advanced tools
@@ -1,2 +0,2 @@ | ||
| #!/bin/bash | ||
| #!/usr/bin/env sh | ||
@@ -8,2 +8,4 @@ # This script removes all dist directories in the monorepo. | ||
| find . -name 'dist' -type d -prune -exec rm -rf '{}' + | ||
| # Find and remove all .next folders | ||
| find . -name '.next' -type d -prune -exec rm -rf '{}' + | ||
| # Find and remove all tsbuildinfo files | ||
@@ -10,0 +12,0 @@ find . -name '*.tsbuildinfo' -type f -prune -exec rm -rf '{}' + |
@@ -1,3 +0,4 @@ | ||
| #!/bin/bash | ||
| #!/usr/bin/env sh | ||
| # This script removes all cache artifacts in the monorepo. | ||
@@ -4,0 +5,0 @@ echo "Removing all cache artifacts..." |
@@ -1,2 +0,2 @@ | ||
| #!/bin/bash | ||
| #!/usr/bin/env sh | ||
@@ -3,0 +3,0 @@ # This script removes all node_modules directories in the monorepo. |
+6
-0
| # @slango.configs/scripts | ||
| ## 1.1.0 | ||
| ### Minor Changes | ||
| - fe4fee1: Support for .nextjs build artifacts | ||
| ## 1.0.0 | ||
@@ -4,0 +10,0 @@ |
+4
-2
| { | ||
| "name": "@slango.configs/scripts", | ||
| "version": "1.0.0", | ||
| "version": "1.1.0", | ||
| "private": false, | ||
@@ -12,4 +12,6 @@ "description": "Slango scripts", | ||
| }, | ||
| "devDependencies": {}, | ||
| "devDependencies": { | ||
| "@slango.configs/lint-staged": "1.1.2" | ||
| }, | ||
| "scripts": {} | ||
| } |
13680
1.74%1
Infinity%