heroweb/svelte/install.sh

24 lines
556 B
Bash
Raw Normal View History

2024-09-02 08:00:49 +00:00
#!/bin/bash
# Define the project directory
PROJECT_DIR="myfiles"
2024-09-02 12:50:47 +00:00
pushd ${BASE_DIR}/${PROJECT_DIR}
#if dir doesn't exit yet
#npm create vite@latest $PROJECT_DIR -- --template svelte --yes
# Check if node_modules exists, if not, install the package
if [ ! -d "node_modules" ]; then
npm config set @wx:registry https://npm.svar.dev
2024-09-02 08:00:49 +00:00
npm install
npm config set @wx:registry https://npm.svar.dev
npm install @wx/trial-svelte-filemanager
npm install @wx/trial-svelte-gantt
npm install @wx/trial-svelte-grid
2024-09-02 12:50:47 +00:00
fi
popd &> /dev/null