You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
As I look readme file I see
cd ./dev/
rush build # Will build all the required packages.
rush rebuild # could be used to omit build cache.
rush bundle # Will prepare bundles.
rush package # Will build all webpack packages.
rush validate # Will validate all sources with typescript and generate d.ts files required for ts-node execution.
rush svelte-check # Optional. svelte files validation using svelte-check.
rush docker:build # Will build Docker containers for all applications in the local Docker environment.
rush docker:up # Will set up all the containers
I would expect one command ./dev/rush_buld.sh
Your environment
Version of Huly - Latest
Browser (and version) - N/A
Your operating system (and version) - N/A
Steps to reproduce
See readme.md
Expected behaviour
Tell us what should happen.
Actual behaviour
Tell us what happens instead (include screenshots or logs).
./dev/rush_buld.sh
Possible solutions
./dev/rush_buld.sh
#/bin/bash
cd ./dev/
rush build # Will build all the required packages.
rush rebuild # could be used to omit build cache.
rush bundle # Will prepare bundles.
rush package # Will build all webpack packages.
rush validate # Will validate all sources with typescript and generate d.ts files required for ts-node execution.
rush svelte-check # Optional. svelte files validation using svelte-check.
rush docker:build # Will build Docker containers for all applications in the local Docker environment.
rush docker:up # Will set up all the containers
cd ..
If you know how to fix the bug, please describe your solution here.
The text was updated successfully, but these errors were encountered:
We are expecting a single command (./dev/rush_buld.sh) that wraps all the individual Rush commands described in the README. Here's a possible solution: creating a bash script rush_build.sh that will execute all of these commands in sequence.
Create the rush_build.sh file:
Navigate to the ./dev/ directory.
Create a new shell script file called rush_build.sh with the following command:
touch rush_build.sh
Edit the rush_build.sh file:
Open the file in a text editor and add the necessary commands to execute each Rush step in the desired order. Here’s an example of what your rush_build.sh script might look like:
#!/bin/bash# This script will run the rush build processcd ./dev/
# Build all the required packages
rush build
# Rebuild to omit cache (optional, uncomment if needed)# rush rebuild# Prepare bundles
rush bundle
# Build webpack packages
rush package
# Validate TypeScript and generate .d.ts files
rush validate
# Optional: validate svelte files using svelte-check
rush svelte-check
# Build Docker containers for all applications
rush docker:build
# Set up all containers
rush docker:up
# Navigate back to the original directorycd ..
Make the script executable:
Run the following command to give the script execution permissions:
chmod +x rush_build.sh
Run the script:
Now you can run this script with the command:
./dev/rush_build.sh
Notes:
The script will execute the sequence of commands as specified in the README, allowing you to run everything with a single command.
You can customize the script by commenting out any commands that aren't needed (e.g., the rush rebuild step, depending on whether you want to omit the build cache).
Description of the issue
As I look readme file I see
cd ./dev/
rush build # Will build all the required packages.
rush rebuild # could be used to omit build cache.
rush bundle # Will prepare bundles.
rush package # Will build all webpack packages.
rush validate # Will validate all sources with typescript and generate d.ts files required for ts-node execution.
rush svelte-check # Optional. svelte files validation using svelte-check.
rush docker:build # Will build Docker containers for all applications in the local Docker environment.
rush docker:up # Will set up all the containers
I would expect one command ./dev/rush_buld.sh
Your environment
Steps to reproduce
See readme.md
Expected behaviour
Tell us what should happen.
Actual behaviour
Tell us what happens instead (include screenshots or logs).
./dev/rush_buld.sh
Possible solutions
./dev/rush_buld.sh
#/bin/bash
cd ./dev/
rush build # Will build all the required packages.
rush rebuild # could be used to omit build cache.
rush bundle # Will prepare bundles.
rush package # Will build all webpack packages.
rush validate # Will validate all sources with typescript and generate d.ts files required for ts-node execution.
rush svelte-check # Optional. svelte files validation using svelte-check.
rush docker:build # Will build Docker containers for all applications in the local Docker environment.
rush docker:up # Will set up all the containers
cd ..
If you know how to fix the bug, please describe your solution here.
The text was updated successfully, but these errors were encountered: