xgem-cli 2.0.0-alpha

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.
@@ -0,0 +1,3 @@
1
+ #!/bin/bash
2
+ echo -e "\033[1;34mBuilding Node project...\033[0m"
3
+ npm run build
@@ -0,0 +1,3 @@
1
+ #!/bin/bash
2
+ echo -e "\033[1;33mNuking node_modules and resetting package locks...\033[0m"
3
+ rm -rf node_modules package-lock.json yarn.lock && npm install
@@ -0,0 +1,2 @@
1
+ #!/bin/bash
2
+ npm run start
@@ -0,0 +1,4 @@
1
+ #!/bin/bash
2
+ echo -e "\033[1;33mCleaning Python cache and rebuilding environment...\033[0m"
3
+ rm -rf __pycache__ .venv *.pyc
4
+ python3 -m venv .venv
@@ -0,0 +1,6 @@
1
+ #!/bin/bash
2
+ if [ -d ".venv" ]; then
3
+ source .venv/bin/activate && pip install -r requirements.txt
4
+ else
5
+ echo -e "\033[31mError: Virtual environment (.venv) not found.\033[0m"
6
+ fi
@@ -0,0 +1,2 @@
1
+ #!/bin/bash
2
+ cargo build --release
@@ -0,0 +1,2 @@
1
+ #!/bin/bash
2
+ cargo clean
@@ -0,0 +1,2 @@
1
+ #!/bin/bash
2
+ swift build -c release
@@ -0,0 +1,2 @@
1
+ #!/bin/bash
2
+ rm -rf .build && swift package clean
@@ -0,0 +1,2 @@
1
+ #!/bin/bash
2
+ npm run build
@@ -0,0 +1,2 @@
1
+ #!/bin/bash
2
+ npm run dev
@@ -0,0 +1,3 @@
1
+ #!/bin/bash
2
+ echo -e "\033[1;33mResetting __FRAMEWORK__ dependencies...\033[0m"
3
+ rm -rf node_modules package-lock.json yarn.lock && npm install