mirror of
https://github.com/ivuorinen/everforest-resources.git
synced 2026-01-26 03:04:02 +00:00
feat: move verify script to project root
- relocate verify/verify.sh to ./verify.sh for easier access - update all documentation and build script references - add npm run verify script for consistency - simplify verification command execution
This commit is contained in:
2
Makefile
2
Makefile
@@ -57,7 +57,7 @@ snapshots:
|
|||||||
|
|
||||||
verify:
|
verify:
|
||||||
@echo "🔬 Verifying installation in container..."
|
@echo "🔬 Verifying installation in container..."
|
||||||
ENGINE=docker ./verify/verify.sh
|
ENGINE=docker ./verify.sh
|
||||||
|
|
||||||
# CI pipeline
|
# CI pipeline
|
||||||
ci: lint generate validate test
|
ci: lint generate validate test
|
||||||
|
|||||||
@@ -11,7 +11,7 @@ Unofficial hub for Everforest color scheme resources. Generator-first approach f
|
|||||||
./install.sh cli
|
./install.sh cli
|
||||||
|
|
||||||
# Verify installation
|
# Verify installation
|
||||||
ENGINE=docker ./verify/verify.sh
|
ENGINE=docker ./verify.sh
|
||||||
|
|
||||||
## Supported Tools
|
## Supported Tools
|
||||||
|
|
||||||
|
|||||||
@@ -41,7 +41,7 @@ After installation:
|
|||||||
|
|
||||||
## Verification
|
## Verification
|
||||||
|
|
||||||
ENGINE=docker ./verify/verify.sh
|
ENGINE=docker ./verify.sh
|
||||||
|
|
||||||
Tests all configurations in a clean container environment.
|
Tests all configurations in a clean container environment.
|
||||||
|
|
||||||
|
|||||||
@@ -17,7 +17,7 @@ cp cli/alacritty/everforest-dark-medium.yml ~/.config/alacritty/themes/
|
|||||||
### Verify Installation
|
### Verify Installation
|
||||||
```bash
|
```bash
|
||||||
# Run verification script in container
|
# Run verification script in container
|
||||||
ENGINE=docker ./verify/verify.sh
|
ENGINE=docker ./verify.sh
|
||||||
```
|
```
|
||||||
|
|
||||||
## Platform-Specific Installation
|
## Platform-Specific Installation
|
||||||
|
|||||||
@@ -18,6 +18,7 @@
|
|||||||
"demo:open": "npm run demo & sleep 2 && open http://localhost:3000/docs/examples/web-demo.html",
|
"demo:open": "npm run demo & sleep 2 && open http://localhost:3000/docs/examples/web-demo.html",
|
||||||
"install:themes": "./install.sh",
|
"install:themes": "./install.sh",
|
||||||
"install:dry": "./install.sh --dry-run",
|
"install:dry": "./install.sh --dry-run",
|
||||||
|
"verify": "./verify.sh",
|
||||||
"build": "npm run generate && npm run validate",
|
"build": "npm run generate && npm run validate",
|
||||||
"dev": "npm run generate && npm run demo",
|
"dev": "npm run generate && npm run demo",
|
||||||
"prepare": "husky install",
|
"prepare": "husky install",
|
||||||
|
|||||||
@@ -6,7 +6,7 @@
|
|||||||
set -euo pipefail
|
set -euo pipefail
|
||||||
|
|
||||||
SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
|
SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
|
||||||
PROJECT_ROOT="$(dirname "${SCRIPT_DIR}")"
|
PROJECT_ROOT="${SCRIPT_DIR}"
|
||||||
ENGINE="${ENGINE:-docker}"
|
ENGINE="${ENGINE:-docker}"
|
||||||
|
|
||||||
echo "🔍 Verifying Everforest configurations with ${ENGINE}..."
|
echo "🔍 Verifying Everforest configurations with ${ENGINE}..."
|
||||||
Reference in New Issue
Block a user