Я установил свой первый проект elm с parcel для автоматического перестроения и hmr, однако hmr не работает, когда я редактирую файлы .elm. Это работает, если я что-то изменить на стороне HTML или JS. Есть намеки?
Только что сделал
npm install -g parcel-bundler
parcel index.html
Следовал этому руководству - https://parceljs.org/elm.html
package.json
{
"devDependencies": {
"elm-hot": "^1.0.1",
"node-elm-compiler": "^5.0.3"
},
"dependencies": {}
}
index.html
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Photo Groove</title>
<link rel="stylesheet" href="http://elm-in-action.com/styles.css">
</head>
<body>
<div id="app"></div>
<script src="src/index.js"></script>
</body>
</html>
index.js
import { Elm } from './PhotoGroove.elm';
Elm.PhotoGroove.init({
node: document.getElementById('app')
});