Remove "--" arg for forwarding options. (#41617)

This resolves a warning:

    warning From Yarn 1.0 onwards, scripts don't require "--" for options to
    be forwarded. In a future version, any explicit "--" will be forwarded
    as-is to the scripts.
This commit is contained in:
Zac Bergquist 2024-05-17 09:18:47 -06:00 committed by GitHub
parent a1c2a1e2e5
commit 6d6551e5ae
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -15,7 +15,7 @@
"storybook-smoke-test": "yarn storybook --ci --smoke-test",
"test": "jest",
"test-coverage": "jest --coverage && web/scripts/print-coverage-link.sh",
"test-update-snapshot": "yarn test -- --updateSnapshot",
"test-update-snapshot": "yarn test --updateSnapshot",
"tdd": "jest --watch",
"lint": "yarn prettier-check && yarn eslint",
"eslint": "eslint --quiet '+(e|web)/**/*.{ts,tsx,js,jsx,mts}'",