Big News: Socket raises $60M Series C at a $1B valuation to secure software supply chains for AI-driven development.Announcement
Sign In

@slango.configs/scripts

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@slango.configs/scripts - npm Package Compare versions

Comparing version
1.0.0
to
1.1.0
+3
-1
bin/clean-build-artifacts.sh

@@ -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.

# @slango.configs/scripts
## 1.1.0
### Minor Changes
- fe4fee1: Support for .nextjs build artifacts
## 1.0.0

@@ -4,0 +10,0 @@

{
"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": {}
}