Skip to content
Merged
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
Install php deps on dev setup
Currently the dev setup in readme does not mention that a
`composer install` is required but it is. The effect is that,
the plugin can't be activated on the admin figures this out and
makes the install.

Signed-off-by: fenn-cs <[email protected]>
  • Loading branch information
nfebe committed May 9, 2023
commit 7703c9b0ca6e9b4a714a30ecd86897826fc132cc
5 changes: 4 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
all: dev-setup lint build-js-production test

# Dev env management
dev-setup: clean clean-dev npm-init
dev-setup: clean clean-dev npm-init composer-install

npm-init:
npm ci
Expand Down Expand Up @@ -50,3 +50,6 @@ clean:
clean-dev:
rm -rf node_modules

# Install php deps
composer-install:
composer install