]> git.immae.eu Git - github/fretlink/purs-loader.git/blob - README.md
Handle optional bundling by the compiler
[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 ## Install
6
7 Install with [npm](https://npmjs.org/package/purs-loader).
8
9 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.
10
11 ```
12 npm install purs-loader --save-dev
13 ```
14
15 ## Example
16
17 ```js
18 // webpack.config.js
19 'use strict';
20
21 var PurescriptWebpackPlugin = require('purescript-webpack-plugin');
22
23 var src = ['bower_components/purescript-*/src/**/*.purs', 'src/**/*.purs'];
24
25 var ffi = ['bower_components/purescript-*/src/**/*.js', 'src/**/*FFI.js'];
26
27 var modulesDirectories = [
28 'node_modules',
29 'bower_components'
30 ];
31
32 var config
33 = { entry: './src/entry'
34 , output: { path: __dirname
35 , pathinfo: true
36 , filename: 'bundle.js'
37 }
38 , module: { loaders: [ { test: /\.purs$/
39 , loader: 'purs-loader'
40 } ] }
41 , resolve: { modulesDirectories: modulesDirectories }
42 , plugins: [ new PurescriptWebpackPlugin({src: src, ffi: ffi}) ]
43 }
44 ;
45
46 module.exports = config;
47 ```
48
49 See the [example](https://github.com/ethul/purs-loader/tree/master/example) directory for a complete example.