Fix bin/publish: copy docs.dist from project root

Fix bin/publish: use correct .env path for rspade_system
Fix bin/publish script: prevent grep exit code 1 from terminating script

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
root
2025-10-21 02:08:33 +00:00
commit f6fac6c4bc
79758 changed files with 10547827 additions and 0 deletions

3
app/RSpade/resource/bin/Parsers/.gitignore vendored Executable file
View File

@@ -0,0 +1,3 @@
node_modules/
*.log
.DS_Store

1438
app/RSpade/resource/bin/Parsers/package-lock.json generated Executable file

File diff suppressed because it is too large Load Diff

View File

@@ -0,0 +1,15 @@
{
"name": "rsx-js-parser",
"version": "1.0.0",
"description": "JavaScript parser for RSX manifest system",
"private": true,
"dependencies": {
"@babel/parser": "^7.22.0",
"@babel/traverse": "^7.22.0",
"@babel/types": "^7.22.0"
},
"devDependencies": {
"eslint": "^8.40.0",
"prettier": "^2.8.0"
}
}

View File

@@ -0,0 +1,25 @@
#!/bin/bash
# Setup script for RSX JavaScript parser
echo "Setting up JavaScript parser dependencies..."
# Check if node is installed
if ! command -v node &> /dev/null; then
echo "Node.js is not installed. Please install Node.js first."
exit 1
fi
# Check if npm is installed
if ! command -v npm &> /dev/null; then
echo "npm is not installed. Please install npm first."
exit 1
fi
# Navigate to parser directory
cd "$(dirname "$0")"
# Install dependencies
echo "Installing Babel parser dependencies..."
npm install
echo "JavaScript parser setup complete!"