aboutsummaryrefslogtreecommitdiffhomepage
path: root/README.md
diff options
context:
space:
mode:
authorAlex Mingoia <talk@alexmingoia.com>2016-05-12 13:57:55 -0700
committerAlex Mingoia <talk@alexmingoia.com>2016-05-12 13:57:55 -0700
commit5163b5a276920e80e71051266696e0d8a3908037 (patch)
treece509f31d19b9e02320bda57b1b0e764026d54bc /README.md
parentf23665b22bf96eabdfbfc95f20348c9475e85ecd (diff)
downloadpurs-loader-5163b5a276920e80e71051266696e0d8a3908037.tar.gz
purs-loader-5163b5a276920e80e71051266696e0d8a3908037.tar.zst
purs-loader-5163b5a276920e80e71051266696e0d8a3908037.zip
Disable instant psc-ide rebuilds by default.
Using psc-ide-server is experimental and there may be bugs or edge-cases.
Diffstat (limited to 'README.md')
-rw-r--r--README.md8
1 files changed, 8 insertions, 0 deletions
diff --git a/README.md b/README.md
index ed25296..e7e0b45 100644
--- a/README.md
+++ b/README.md
@@ -37,6 +37,8 @@ const webpackConfig = {
37} 37}
38``` 38```
39 39
40### Options
41
40Default options: 42Default options:
41 43
42```javascript 44```javascript
@@ -45,6 +47,7 @@ Default options:
45 pscArgs: {}, 47 pscArgs: {},
46 pscBundle: 'psc-bundle', 48 pscBundle: 'psc-bundle',
47 pscBundleArgs: {}, 49 pscBundleArgs: {},
50 pscIde: false, // instant rebuilds using psc-ide-server (experimental)
48 pscIdeColors: false, // defaults to true if psc === 'psa' 51 pscIdeColors: false, // defaults to true if psc === 'psa'
49 bundleOutput: 'output/bundle.js', 52 bundleOutput: 'output/bundle.js',
50 bundleNamespace: 'PS', 53 bundleNamespace: 'PS',
@@ -61,3 +64,8 @@ Default options:
61 ], 64 ],
62} 65}
63``` 66```
67
68### Instant rebuilds (experimental)
69
70Experimental support for instant rebuilds using `psc-ide-server` can be enabled
71via the `pscIde: true` option.