Skip to content
This repository has been archived by the owner on Mar 23, 2021. It is now read-only.

Fix warning in build process #789

Merged
merged 1 commit into from Feb 26, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 2 additions & 2 deletions Makefile.toml
Expand Up @@ -112,7 +112,7 @@ args = ["fmt", "--", "--check"]
[tasks.js-format]
description = "Runs prettier to format JavaScript code."
workspace = false
install_script = ["[[ -f ./api_tests/node_modules/.bin/prettier ]] || (cd ./api_tests; yarn install;)"]
install_script = ["(cd ./api_tests; yarn install;)"]
script = [
'''
(cd api_tests; yarn run prettier --write '**/*.js')
Expand All @@ -122,7 +122,7 @@ script = [
[tasks.check-js-format]
description = "Runs prettier to check appropriate JavaScript code format."
workspace = false
install_script = ["[[ -f ./api_tests/node_modules/.bin/prettier ]] || (cd ./api_tests; yarn install;)"]
install_script = ["(cd ./api_tests; yarn install;)"]
script = [
'''
(cd api_tests; yarn run prettier --check '**/*.js')
Expand Down