File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed
Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 6464 - run : ./vendor/bin/phpstan analyse
6565 - run : ./vendor/bin/phpunit --coverage-clover coverage-clover.xml
6666 - run : yarn lint
67- - run : ./node_modules/.bin/prettier --check .
67+ - run : ./node_modules/.bin/prettier --experimental-cli -- check .
6868 - run : ./node_modules/.bin/ng test --progress false --watch=false --browsers ChromeHeadlessCustom
6969
7070 - name : Upload code coverage
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ files=$(git diff --cached --name-only --diff-filter=ACMR | grep -E '\.(js|json|h
66if [ " $files " != " " ]; then
77
88 # Run prettier before commit
9- echo " $files " | xargs ./node_modules/.bin/prettier --write
9+ echo " $files " | xargs ./node_modules/.bin/prettier --experimental-cli -- write
1010 if [ $? -ne 0 ]; then
1111 pass=false
1212 fi
Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ const config: CodegenConfig = {
1919 } ,
2020 } ,
2121 hooks : {
22- afterAllFileWrite : [ "prettier --ignore-path '' --write" ] ,
22+ afterAllFileWrite : [ "prettier --experimental-cli -- ignore-path '' --write" ] ,
2323 } ,
2424 config : {
2525 // immutableTypes:true, // TODO enable this when we have time
You canβt perform that action at this time.
0 commit comments