Conversation
This line `"test": "echo \"Error: no test specified\" && exit 1"` had nested double quotes that caused an error.
|
|
This pull request is being automatically deployed with Vercel (learn more). 🔍 Inspect: https://vercel.com/pikapkg/snowpack/D59o1RRS45p97cRTtafUu2YGEny4 |
This line
"test": "echo \"Error: no test specified\" && exit 1"had nested double quotes that caused an error.
Changes
"test": "echo \"Error: no test specified\" && exit 1"had nested double quotes that caused an error.
I changed it to
"test": "echo 'Error: no test specified' && exit 1"Testing
I tested the corrected line in my own development environment.
Docs
This itself was a change to documentation.
Also, I realize this may not be the right place to mention it, but I would recommend removing the
+in this section as well since when you copy and paste the plus comes with it.