Hi! I've set up an example project with pulp init with purs version 13 and pulp version 13.0.0 to try to get purs-loader to work. It compiles with no errors but the bundled code does not execute anything. These are my devDependecies in package.json:
{
...
"devdependencies": {
"psa": "^1.0.0",
"purescript": "^0.13.2",
"purs-loader": "^3.6.0",
"webpack": "^4.39.1",
"webpack-cli": "^3.3.6",
"webpack-dev-server": "^3.7.2"
}
...
}
I'm using the webpack.config.js from the purescript-webpack-example repository.
The project contains just a simple hello world log statement, but if you want to take a look I created this repository.
Hi! I've set up an example project with
pulp initwith purs version 13 and pulp version 13.0.0 to try to get purs-loader to work. It compiles with no errors but the bundled code does not execute anything. These are mydevDependeciesinpackage.json:{ ... "devdependencies": { "psa": "^1.0.0", "purescript": "^0.13.2", "purs-loader": "^3.6.0", "webpack": "^4.39.1", "webpack-cli": "^3.3.6", "webpack-dev-server": "^3.7.2" } ... }I'm using the
webpack.config.jsfrom thepurescript-webpack-examplerepository.The project contains just a simple hello world log statement, but if you want to take a look I created this repository.