Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in
Toggle navigation
H
hermes-node-chrome
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
lisa
hermes-node-chrome
Commits
f5495cd8
Commit
f5495cd8
authored
Apr 30, 2026
by
Lisa (AI Assistant)
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
feat: add build.sh script to generate distribution packages
parent
a6565526
Pipeline
#313
canceled with stages
Changes
1
Pipelines
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
27 additions
and
0 deletions
+27
-0
build.sh
build.sh
+27
-0
No files found.
build.sh
0 → 100755
View file @
f5495cd8
#!/bin/bash
set
-e
echo
"=== Building Hermes Node Chrome Extension ==="
# Create dist directory
mkdir
-p
dist
# Package extension as zip
cd
hermes_browser_extension
zip
-r
../dist/hermes-node-chrome.zip
.
-x
"*.git*"
-x
"*__pycache__*"
-x
"*.pyc"
cd
..
echo
""
echo
"✅ Build complete!"
echo
""
echo
"Output:"
echo
" dist/hermes-node-chrome.zip"
echo
""
echo
"To install:"
echo
" 1. Open Chrome/Edge"
echo
" 2. Go to chrome://extensions/"
echo
" 3. Enable Developer mode"
echo
" 4. Click 'Load unpacked'"
echo
" 5. Select hermes_browser_extension/ directory"
echo
""
echo
"Or upload dist/hermes-node-chrome.zip to Chrome Web Store"
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment