diff options
author | Alex Mingoia <talk@alexmingoia.com> | 2016-05-12 13:57:55 -0700 |
---|---|---|
committer | Alex Mingoia <talk@alexmingoia.com> | 2016-05-12 13:57:55 -0700 |
commit | 5163b5a276920e80e71051266696e0d8a3908037 (patch) | |
tree | ce509f31d19b9e02320bda57b1b0e764026d54bc /README.md | |
parent | f23665b22bf96eabdfbfc95f20348c9475e85ecd (diff) | |
download | purs-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.md | 8 |
1 files changed, 8 insertions, 0 deletions
@@ -37,6 +37,8 @@ const webpackConfig = { | |||
37 | } | 37 | } |
38 | ``` | 38 | ``` |
39 | 39 | ||
40 | ### Options | ||
41 | |||
40 | Default options: | 42 | Default 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 | |||
70 | Experimental support for instant rebuilds using `psc-ide-server` can be enabled | ||
71 | via the `pscIde: true` option. | ||