You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Dec 11, 2018. It is now read-only.
it will fail silently. It looks like everything will have installed fine but that's not the case. That's because the project name is used in the package.json's name field which doesn't allow spaces, so npm refuses to install any dependencies.
The name is also used in other places where spaces (and other characters) are not valid.
Proposed solution
Use the passed name only as the <title> in the index.html in the HTML template. For all other cases, use the current directory name.
If
exerslide initis run asit will fail silently. It looks like everything will have installed fine but that's not the case. That's because the project name is used in the
package.json'snamefield which doesn't allow spaces, so npm refuses to install any dependencies.The name is also used in other places where spaces (and other characters) are not valid.
Proposed solution
Use the passed name only as the
<title>in theindex.htmlin the HTML template. For all other cases, use the current directory name.