24 lines
556 B
Bash
Executable File
24 lines
556 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# Define the project directory
|
|
PROJECT_DIR="myfiles"
|
|
|
|
|
|
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
|
|
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
|
|
fi
|
|
|
|
popd &> /dev/null |