]> git.immae.eu Git - github/fretlink/purs-loader.git/blob - README.md
Update README for PureScript 0.10
[github/fretlink/purs-loader.git] / README.md
1 # purs-loader
2
3 > [PureScript](http://www.purescript.org) loader for [webpack](http://webpack.github.io)
4
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
9 ## Install
10
11 Install with [npm](https://npmjs.org/package/purs-loader).
12
13 ```
14 npm install purs-loader --save-dev
15
16 npm install purs-loader@next --save-dev
17
18 npm install purs-loader@purescript-0.8 --save-dev
19
20 npm install purs-loader@purescript-0.9 --save-dev
21
22 npm install purs-loader@purescript-0.10 --save-dev
23 ```
24
25 ## Example
26
27 ```javascript
28 const webpackConfig = {
29 // ...
30 loaders: [
31 // ...
32 {
33 test: /\.purs$/,
34 loader: 'purs-loader',
35 exclude: /node_modules/,
36 query: {
37 psc: 'psa',
38 src: ['bower_components/purescript-*/src/**/*.purs', 'src/**/*.purs']
39 }
40 }
41 // ...
42 ]
43 // ...
44 }
45 ```
46
47 Refer to the [purescript-webpack-example](https://github.com/ethul/purescript-webpack-example) for a more detailed example.
48
49 ### Options
50
51 Default options:
52
53 ```javascript
54 {
55 psc: 'psc',
56 pscArgs: {},
57 pscBundle: 'psc-bundle',
58 pscBundleArgs: {},
59 pscIde: false, // instant rebuilds using psc-ide-server (experimental)
60 pscIdeColors: false, // defaults to true if psc === 'psa'
61 bundleOutput: 'output/bundle.js',
62 bundleNamespace: 'PS',
63 bundle: false,
64 warnings: true,
65 output: 'output',
66 src: [
67 path.join('src', '**', '*.purs'),
68 path.join('bower_components', 'purescript-*', 'src', '**', '*.purs')
69 ]
70 }
71 ```
72
73 ### Instant rebuilds (experimental)
74
75 Experimental support for instant rebuilds using `psc-ide-server` can be enabled
76 via the `pscIde: true` option.