Skip to content

[SITE] Move to using pipes for js and scss #15163

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 5 commits into
base: main
Choose a base branch
from
Open
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
35 changes: 0 additions & 35 deletions gulp/config.js

This file was deleted.

9 changes: 0 additions & 9 deletions gulp/tasks/dev/dev.js

This file was deleted.

24 changes: 0 additions & 24 deletions gulp/tasks/dev/javascript.js

This file was deleted.

11 changes: 0 additions & 11 deletions gulp/tasks/dev/sass.js

This file was deleted.

10 changes: 0 additions & 10 deletions gulp/tasks/html-min.js

This file was deleted.

4 changes: 0 additions & 4 deletions gulpfile.js

This file was deleted.

19 changes: 19 additions & 0 deletions makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
.PHONY: deps build server clean

# Copy dependencies from node_modules to assets
deps:
./utilities/build-scripts/copy-scss-deps.sh
./utilities/build-scripts/copy-js-deps.sh

# Build the site
build: deps
hugo

# Run the development server
server: deps
hugo server

# Clean up generated files
clean:
rm -rf public/
rm -rf resources/
Loading
Loading