Skip to content

Commit

Permalink
Remove just groups
Browse files Browse the repository at this point in the history
  • Loading branch information
tomodwyer authored and evansd committed Aug 22, 2024
1 parent be52284 commit 8267ba6
Showing 1 changed file with 0 additions and 6 deletions.
6 changes: 0 additions & 6 deletions justfile
Original file line number Diff line number Diff line change
Expand Up @@ -228,14 +228,12 @@ docs-build *ARGS: devenv


# Remove built assets and node_modules
[group('assets')]
assets-clean:
rm -rf assets/dist/out
rm -rf node_modules


# Install the Node.js dependencies
[group('assets')]
assets-install *args="":
#!/usr/bin/env bash
set -euo pipefail
Expand All @@ -250,7 +248,6 @@ assets-install *args="":


# Build the Node.js assets
[group('assets')]
assets-build:
#!/usr/bin/env bash
set -euo pipefail
Expand All @@ -269,15 +266,12 @@ assets-build:


# Install npm toolchain, build and collect assets
[group('assets')]
assets: assets-install assets-build

# Rebuild all npm/static assets
[group('assets')]
assets-rebuild: assets-clean assets

# Run the npm development server and watch for changes
[group('assets')]
assets-run: assets-install
#!/usr/bin/env bash
set -euo pipefail
Expand Down

0 comments on commit 8267ba6

Please sign in to comment.