blob: 0e1ce2fc1b1b5529409ca588a80d73b9da890cc8 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
|
# purs-loader
> [PureScript](http://www.purescript.org) loader for [webpack](http://webpack.github.io)
## Install
Install with [npm](https://npmjs.org/package/purs-loader).
This loader works in conjunction with the [PureScript webpack plugin](https://npmjs.org/package/purescript-webpack-plugin). Ensure the plugin is installed and configured accordingly.
```
npm install purs-loader --save-dev
```
## Options
###### `bundleOutput` (String)
Relative path to the bundled JavaScript file generated by the `PurescriptWebpackPlugin`. The default value is `output/bundle.js`.
## Example
```js
// webpack.config.js
'use strict';
var PurescriptWebpackPlugin = require('purescript-webpack-plugin');
var src = ['bower_components/purescript-*/src/**/*.purs', 'src/**/*.purs'];
var ffi = ['bower_components/purescript-*/src/**/*.js', 'src/**/*FFI.js'];
var modulesDirectories = [
'node_modules',
'bower_components'
];
var config
= { entry: './src/entry'
, output: { path: __dirname
, pathinfo: true
, filename: 'bundle.js'
}
, module: { loaders: [ { test: /\.purs$/
, loader: 'purs-loader'
} ] }
, resolve: { modulesDirectories: modulesDirectories }
, plugins: [ new PurescriptWebpackPlugin({src: src, ffi: ffi}) ]
}
;
module.exports = config;
```
See the [example](https://github.com/ethul/purs-loader/tree/master/example) directory for a complete example.
|