Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ updates:
labels:
- "Dependencies"

- package-ecosystem: "npm"
- package-ecosystem: "npm"
directory: "/examples/kendo-react-e-commerce-astro-app"
schedule:
interval: "daily"
Expand Down
7 changes: 6 additions & 1 deletion live/bin/build-gh-pages
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,12 @@ do
rm -rf build
npm run build
mkdir -p ../../live/build/${PROJECT}
mv -v build/* ../../live/build/${PROJECT}

if [ "$PROJECT" = "kendo-react-e-commerce-astro-app" ]; then
mv -v dist/* "../../live/build/${PROJECT}"
else
mv -v build/* "../../live/build/${PROJECT}"
fi

popd > /dev/null
done
Expand Down
Loading