X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=README.md;h=6886f0f8552fa23746a821dcd35ca8fe7c8b7fb1;hb=13b1433b0b7ebf86b9fb9905bbccad44cb3db726;hp=e93e96987d0a6334ac83c388168003ca28455647;hpb=cb2f4c886fd1057fbf0511b46cab3489123ced23;p=github%2Ffretlink%2Fpurs-loader.git diff --git a/README.md b/README.md index e93e969..6886f0f 100644 --- a/README.md +++ b/README.md @@ -2,48 +2,77 @@ > [PureScript](http://www.purescript.org) loader for [webpack](http://webpack.github.io) +- Supports hot-reloading and rebuilding of single source files +- Dead code elimination using the `bundle` option +- Colorized build output using `purescript-psa` and the `psc: "psa"` option + ## 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 -``` -## Example - -```js -// webpack.config.js -'use strict'; +npm install purs-loader@next --save-dev -var PurescriptWebpackPlugin = require('purescript-webpack-plugin'); +npm install purs-loader@purescript-0.8 --save-dev -var src = ['bower_components/purescript-*/src/**/*.purs', 'src/**/*.purs']; +npm install purs-loader@purescript-0.9 --save-dev -var ffi = ['bower_components/purescript-*/src/**/*.js', 'src/**/*FFI.js']; +npm install purs-loader@purescript-0.10 --save-dev +``` -var modulesDirectories = [ - 'node_modules', - 'bower_components' -]; +## Example -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}) ] +```javascript +const webpackConfig = { + // ... + loaders: [ + // ... + { + test: /\.purs$/, + loader: 'purs-loader', + exclude: /node_modules/, + query: { + psc: 'psa', + src: ['bower_components/purescript-*/src/**/*.purs', 'src/**/*.purs'] + } } - ; + // ... + ] + // ... +} +``` + +Refer to the [purescript-webpack-example](https://github.com/ethul/purescript-webpack-example) for a more detailed example. -module.exports = config; +### Options + +Default options: + +```javascript +{ + psc: 'psc', + pscArgs: {}, + pscBundle: 'psc-bundle', + pscBundleArgs: {}, + pscIde: false, // instant rebuilds using psc-ide-server (experimental) + pscIdeArgs: {}, // for example, to use different psc-ide-server port: {port: 4088} + pscIdeColors: false, // defaults to true if psc === 'psa' + bundleOutput: 'output/bundle.js', + bundleNamespace: 'PS', + bundle: false, + warnings: true, + output: 'output', + src: [ + path.join('src', '**', '*.purs'), + path.join('bower_components', 'purescript-*', 'src', '**', '*.purs') + ] +} ``` -See the [example](https://github.com/ethul/purs-loader/tree/master/example) directory for a complete example. +### Instant rebuilds (experimental) + +Experimental support for instant rebuilds using `psc-ide-server` can be enabled +via the `pscIde: true` option. +You can use an already running `psc-ide-server` instance by specifying the port in `pscIdeArgs`.