]> git.immae.eu Git - github/fretlink/purs-loader.git/blobdiff - README.md
Bumping version number to 0.6.0-beta.6
[github/fretlink/purs-loader.git] / README.md
index a459059db1f9bbcf41eec373bfbeea66a21859a2..df92e6940ab4971af798cbde078b84656c3fa113 100644 (file)
--- a/README.md
+++ b/README.md
@@ -12,44 +12,6 @@ This loader works in conjunction with the [PureScript webpack plugin](https://np
 npm install purs-loader --save-dev
 ```
 
-## Options
-
-###### `pscBundle` (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.
+Refer to the [purescript-webpack-example](https://github.com/ethul/purescript-webpack-example) for an example.