forked from scssphp/scssphp
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathMakefile
More file actions
32 lines (22 loc) · 789 Bytes
/
Copy pathMakefile
File metadata and controls
32 lines (22 loc) · 789 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
test: vendor
vendor/bin/phpunit --colors tests
sass-spec: vendor
TEST_SASS_SPEC=1 vendor/bin/phpunit --colors tests 2>&1 | tee /tmp/sass-spec.log | tail -2
rebuild-sass-spec: vendor
BUILD=1 vendor/bin/phpunit tests/SassSpecTest.php
rebuild-outputs: vendor
BUILD=1 vendor/bin/phpunit tests/InputTest.php
standard: vendor
vendor/bin/phpcs -s --extensions=php bin src tests
fix-cs: vendor
vendor/bin/phpcbf -s --extensions=php bin src tests
vendor: composer.json
composer update
touch $@
phpstan: vendor
vendor/bin/phpstan analyse
phpstan-verbose: vendor
vendor/bin/phpstan analyse -v
phpstan-baseline: vendor
vendor/bin/phpstan analyse --generate-baseline
.PHONY: test sass-spec rebuild-sass-spec rebuild-outputs standard fix-cs phpstan phpstan-verbose phpstan-baseline