package.json
{
"name": "parcel-app",
"version": "0.0.1",
"scripts": {
"start": "parcel serve index.html --port 3000"
},
"devDependencies": {
"parcel-bundler": "1.9.4",
"//": "If you update Parcel, it stops working"
},
"engines": {
"node": "8.x"
}
}
Parcel works.
Parcel doesn't work from version 1.9.5. If you try to change something it doesn't update.
Video: https://www.useloom.com/share/bb04124d10bf47b3a7c0c977b416546a
Parcel 1.9.4 on Glitch: https://glitch.com/edit/#!/parcel1-9-4
Parcel 1.9.7 on Glitch: https://glitch.com/edit/#!/parcel1-9-7
| Software | Version(s) |
| ---------------- | ---------- |
| Parcel | 1.9.7 |
| Node | 8.12.0 |
| Operating System | Glitch |
The issue persists in Parcel 1.10.1
Not sure how to debug this, might be an issue with glitch
Sent with GitHawk
It's working for me:
{
"scripts": {
"start": "parcel src/index.html --port $PORT"
},
"dependencies": {
"parcel-bundler": "^1.10.3"
}
}
This issue has been automatically marked as stale because it has not had recent activity. It will be closed in 14 days if no further activity occurs.
Most helpful comment
It's working for me: