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
In chapter8 and chapter 10, follow 2 changes are needed to run parcel src/index --open
package.json "main":"" will cause an error. To start parcel, it need to be:
"main": "output/Main/index.js"
for src/index.html, this line need to be updated. "type='module'" is required.
<script type="module" src="./index.js"></script>
The text was updated successfully, but these errors were encountered:
Adds path to main. Refs purescript-contrib#391.
eff768b
Adds type "module". Refs purescript-contrib#391.
3c34882
Fixes parcel package.json, index.html error in ch8 (#404)
aa09e37
* Adds path to main. Refs #391. * Adds type "module". Refs #391.
Successfully merging a pull request may close this issue.
In chapter8 and chapter 10, follow 2 changes are needed to run parcel src/index --open
package.json "main":"" will cause an error. To start parcel, it need to be:
"main": "output/Main/index.js"
for src/index.html, this line need to be updated. "type='module'" is required.
<script type="module" src="./index.js"></script>
The text was updated successfully, but these errors were encountered: