From 5d9590d30a51ba6ea08e6535848a8b42b46aaab1 Mon Sep 17 00:00:00 2001 From: Roelof Roos Date: Thu, 18 Oct 2018 19:06:56 +0200 Subject: [PATCH] Makefile fix --- gumbo-millennium/Makefile | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/gumbo-millennium/Makefile b/gumbo-millennium/Makefile index 8f58622..f183d05 100644 --- a/gumbo-millennium/Makefile +++ b/gumbo-millennium/Makefile @@ -1,19 +1,19 @@ .PHONY: plugin.zip install lint install: - composer install --no-progress --no-suggest -an - yarn install --frozen-lockfile + composer install --no-progress --no-suggest -an + yarn install --frozen-lockfile lint: - # Lint PHP code - vendor/bin/phpcs + # Lint PHP code + vendor/bin/phpcs - # Lint Sass files - find lib/sass -type f -name '*.scss' -print | xargs node_modules/.bin/stylelint + # Lint Sass files + find lib/sass -type f -name '*.scss' -print | xargs node_modules/.bin/stylelint - # Lint Javascript - find lib/ -type f -name '*.js' -print | xargs node_modules/.bin/eslint - find lib/ -type f -name '*.jsx' -print | xargs node_modules/.bin/eslint + # Lint Javascript + find lib/ -type f -name '*.js' -print | xargs node_modules/.bin/eslint + find lib/ -type f -name '*.jsx' -print | xargs node_modules/.bin/eslint plugin.zip: gumbo-millennium.zip cp gumbo-millennium.zip plugin.zip