Skip to content

Commit

Permalink
Some tweaks to the default Taskfile
Browse files Browse the repository at this point in the history
  • Loading branch information
justafish committed Aug 15, 2023
1 parent 789a8f8 commit a4f25b1
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion scaffold/Taskfile.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,17 +34,27 @@ tasks:
deps: [drupal:composer:production]
cmds:
- echo "Nothing to do"
#- task: assets

build:dev:
desc: "Builds the project for development"
deps: [drupal:composer]
cmds:
- echo "Nothing to do"
# - ./vendor/bin/drush pm:enable stage_file_proxy views_ui field_ui -y

update:
desc: "Runs the Drupal update process"
cmds:
- task: drupal:update

# assets:
# desc: "Builds assets such as CSS & JS"
# cmds:
# - if [ -f "yarn.lock" ]; then yarn; else npm install; fi
# - yarn install
# - task: javascript:compile
# - task: sass:compile
#
# assets:watch:
# desc: "Builds assets such as CSS & JS, and watches them for changes"
# deps: [sass:watch, javascript:watch]
Expand Down

0 comments on commit a4f25b1

Please sign in to comment.