@@ -46,7 +46,7 @@ Browse all examples at [demoscript.app/gallery](https://demoscript.app/gallery/)
4646### npm (recommended)
4747
4848``` bash
49- npm install -g demoscript- cli
49+ npm install -g @ demoscript/ cli
5050```
5151
5252Then run with:
@@ -58,7 +58,7 @@ demoscript serve ./my-demo
5858Or run directly with npx (no install required):
5959
6060``` bash
61- npx demoscript- cli serve ./my-demo
61+ npx @ demoscript/ cli serve ./my-demo
6262```
6363
6464### Linux Packages
@@ -800,7 +800,7 @@ See [ROADMAP.md](ROADMAP.md) for the full improvement guide including architectu
800800
801801```bash
802802# Clone repository
803- git clone https://github.com/your-org /demoscript
803+ git clone https://github.com/aximcode /demoscript
804804cd demoscript
805805
806806# Install dependencies
@@ -810,17 +810,30 @@ npm install
810810npm run dev
811811
812812# Build all packages
813- npm run build
813+ ./build.sh
814+
815+ # Build and install locally (to ~/.local/bin)
816+ ./build.sh --install
817+
818+ # Build and install globally (uses sudo if needed)
819+ ./build.sh --install -g
820+
821+ # Build and publish to npm
822+ ./build.sh --publish # patch version bump
823+ ./build.sh --publish minor # minor version bump
824+
825+ # Build and start dev server
826+ ./build.sh --serve
814827
815828# Run tests
816829cd packages/cli && npm test
817830cd packages/ui && npm test
818831
819832# Build RPM package (requires: dnf install rpm-build)
820- ./scripts/ build-packages .sh rpm
833+ ./build.sh -- rpm
821834
822835# Build DEB package (requires: apt install dpkg-dev debhelper)
823- ./scripts/ build-packages .sh deb
836+ ./build.sh -- deb
824837```
825838
826839See [ CONTRIBUTING.md] ( CONTRIBUTING.md ) for detailed development guidelines.
0 commit comments