mirror of
https://github.com/ivuorinen/everforest-resources.git
synced 2026-01-25 18:54:09 +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:
|
||||
@echo "🔬 Verifying installation in container..."
|
||||
ENGINE=docker ./verify/verify.sh
|
||||
ENGINE=docker ./verify.sh
|
||||
|
||||
# CI pipeline
|
||||
ci: lint generate validate test
|
||||
|
||||
@@ -11,7 +11,7 @@ Unofficial hub for Everforest color scheme resources. Generator-first approach f
|
||||
./install.sh cli
|
||||
|
||||
# Verify installation
|
||||
ENGINE=docker ./verify/verify.sh
|
||||
ENGINE=docker ./verify.sh
|
||||
|
||||
## Supported Tools
|
||||
|
||||
|
||||
@@ -41,7 +41,7 @@ After installation:
|
||||
|
||||
## Verification
|
||||
|
||||
ENGINE=docker ./verify/verify.sh
|
||||
ENGINE=docker ./verify.sh
|
||||
|
||||
Tests all configurations in a clean container environment.
|
||||
|
||||
|
||||
@@ -17,7 +17,7 @@ cp cli/alacritty/everforest-dark-medium.yml ~/.config/alacritty/themes/
|
||||
### Verify Installation
|
||||
```bash
|
||||
# Run verification script in container
|
||||
ENGINE=docker ./verify/verify.sh
|
||||
ENGINE=docker ./verify.sh
|
||||
```
|
||||
|
||||
## Platform-Specific Installation
|
||||
|
||||
@@ -18,6 +18,7 @@
|
||||
"demo:open": "npm run demo & sleep 2 && open http://localhost:3000/docs/examples/web-demo.html",
|
||||
"install:themes": "./install.sh",
|
||||
"install:dry": "./install.sh --dry-run",
|
||||
"verify": "./verify.sh",
|
||||
"build": "npm run generate && npm run validate",
|
||||
"dev": "npm run generate && npm run demo",
|
||||
"prepare": "husky install",
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
set -euo pipefail
|
||||
|
||||
SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
|
||||
PROJECT_ROOT="$(dirname "${SCRIPT_DIR}")"
|
||||
PROJECT_ROOT="${SCRIPT_DIR}"
|
||||
ENGINE="${ENGINE:-docker}"
|
||||
|
||||
echo "🔍 Verifying Everforest configurations with ${ENGINE}..."
|
||||
Reference in New Issue
Block a user