]> git.immae.eu Git - github/fretlink/purs-loader.git/blame - README.md
Merge pull request #4 from cyrilfretlink/4.2.0
[github/fretlink/purs-loader.git] / README.md
CommitLineData
a42f24b8 1# purs-loader
2
08b34471 3> [PureScript](http://www.purescript.org) loader for [webpack](http://webpack.github.io)
a42f24b8 4
7de41f10
AM
5- Supports hot-reloading and rebuilding of single source files
6- Dead code elimination using the `bundle` option
7- Colorized build output using `purescript-psa` and the `psc: "psa"` option
8
a42f24b8 9## Install
10
63d6a244 11Install with [npm](https://npmjs.org/package/purs-loader).
12
a42f24b8 13```
8578f8a5 14npm install --save-dev fretlink/purs-loader#latest
a42f24b8 15```
16
a42f24b8 17## Example
18
7de41f10
AM
19```javascript
20const webpackConfig = {
21 // ...
22 loaders: [
23 // ...
24 {
25 test: /\.purs$/,
26 loader: 'purs-loader',
27 exclude: /node_modules/,
28 query: {
29 psc: 'psa',
2b2207bd 30 src: ['bower_components/purescript-*/src/**/*.purs', 'src/**/*.purs']
7de41f10
AM
31 }
32 }
33 // ...
34 ]
35 // ...
36}
37```
38
44eb153b 39Refer to the [purescript-webpack-example](https://github.com/ethul/purescript-webpack-example) for a more detailed example.
40
5163b5a2
AM
41### Options
42
7de41f10
AM
43Default options:
44
45```javascript
86e2b3d4 46const loaderConfig = {
f5643707 47 psc: null, // purs compile
7de41f10 48 pscArgs: {},
f5643707 49 pscBundle: null, // purs bundle
7de41f10 50 pscBundleArgs: {},
5163b5a2 51 pscIde: false, // instant rebuilds using psc-ide-server (experimental)
71a96808 52 pscIdeClient: null, // purs ide client
53 pscIdeClientArgs: {}, // for example, to use different port {port: 4088}
54 pscIdeServer: null, // purs ide server
6ab1eca0 55 pscIdeServerArgs: {}, // for example, to change the port { port: 4088 }
7de41f10 56 pscIdeColors: false, // defaults to true if psc === 'psa'
86e2b3d4 57 pscPackage: false,
7de41f10
AM
58 bundleOutput: 'output/bundle.js',
59 bundleNamespace: 'PS',
60 bundle: false,
61 warnings: true,
cbb75795 62 watch: false, // indicates if webpack is in watch mode
7de41f10
AM
63 output: 'output',
64 src: [
65 path.join('src', '**', '*.purs'),
86e2b3d4 66 // if pscPackage = false
7de41f10 67 path.join('bower_components', 'purescript-*', 'src', '**', '*.purs')
495b765e 68 // if pscPackage = true
69 // source paths reported by `psc-package sources`
2b2207bd 70 ]
7de41f10
AM
71}
72```
5163b5a2 73
495b765e 74### `psc-ide` support (experimental)
5163b5a2
AM
75
76Experimental support for instant rebuilds using `psc-ide-server` can be enabled
77via the `pscIde: true` option.
4343e0eb
MK
78You can use an already running `psc-ide-server` instance by specifying the port in `pscIdeArgs`,
79if there is no server running this loader will start one for you.
80
03f52cb3 81### `psc-package` support (experimental)
82
83Set `pscPackage` query parameter to `true` to enable `psc-package` support. The `psc-package`-supplied source paths
84will be appended to `src` parameter.
85
86### Troubleshooting
4343e0eb 87
03f52cb3 88#### Slower webpack startup after enabling psc-ide support?
4343e0eb
MK
89
90By default, the psc-ide-server will be passed the globs from query.src, this is
91helpful for other tools using psc-ide-server (for example IDE plugins), however
92it might result in a slower initial webpack startup time (rebuilds are not
93affected). To override the default behaviour, add:
94`pscIdeServerArgs: { "_": ['your/*globs/here'] }` to the loader config
95
03f52cb3 96#### Errors not being displayed in watch mode?
4343e0eb 97
03f52cb3 98When the `watch` option is set to `true`, psc errors are appended to
99webpack's compilation instance errors array and not passed back as an
100error to the loader's callback. This may result in the error not being
101reported by webpack. To display errors, the following plugin may be added
102to the webpack config.
103
104```javascript
105const webpackConfig = {
106 // ...
107 plugins: [
108 function(){
109 this.plugin('done', function(stats){
110 process.stderr.write(stats.toString('errors-only'));
111 });
112 }
113 ]
114 // ...
115}
116```
ab944285 117
118#### Error `spawn ENOENT`
119
120This is caused when the loader tries to spawn a binary that does not exists
121(`file or directory not found`). If you call webpack like `webpack` or
be05a055 122`webpack --watch`, then ensure that all required binaries that the
ab944285 123loader depends on are available in your `$PATH`.
124
be05a055 125If you run webpack through an npm script (e.g., npm run or npm start) on NixOS,
126then it will first attempt to find binaries in `node_packages/.bin`.
127If you have the compiler installed through `npm` and it finds it there, this will
128cause `ENOENT`on Nix, because [the binary needs to be patched first, but npm will
129install the binary that is linked with /lib64/ld-linux-x86-64.so.2 - a file that
130will not exist at that path in NixOS](https://github.com/ethul/purescript-webpack-example/issues/5#issuecomment-282492131).
ab944285 131The solution is to simply use the compiler from `haskellPackages.purescript` and
132make sure that it's available in `$PATH`. For more information about how to make
133it work on Nix, see [Purescript Webpack Example](https://github.com/ethul/purescript-webpack-example#using-globally-installed-binaries)