We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
ran into an issue while trying to run pnpm dev
pnpm dev
Unknown Syntax Error: Extraneous positional argument ("dev'"). $ tinacms dev [--experimentalData] [--isomorphicGitBridge] [-p,--port #0] [--datalayer-port #0] [-c,--command #0] [--rootPath #0] [-v,--verbose] [--noSDK] [--noTelemetry] [-w,--watchFolders #0] [--noWatch] [--outputSearchIndexPath #0]
The text was updated successfully, but these errors were encountered:
This has been fixed already but for anyone still having the issue Change the dev script in your package.json
"dev": "tinacms dev -c 'astro dev'",
to:
"dev": "tinacms dev -c \"astro dev\"",
Escaping the double quotes with \"
\"
Sorry, something went wrong.
No branches or pull requests
ran into an issue while trying to run
pnpm dev
The text was updated successfully, but these errors were encountered: