aboutsummaryrefslogtreecommitdiffhomepage
Commit message (Collapse)AuthorAgeFilesLines
* Tag errors with a specific constructor to simplify their detectionCyril Sobierajewicz2018-12-032-1/+12
|
* Allow previous loaders to further describe errorsCyril Sobierajewicz2018-12-031-2/+4
|
* Annotate errors to prevent redundant parsing by other loadersCyril Sobierajewicz2018-12-031-1/+10
|
* Allow previous loaders to extract dependencies to watch from errorsCyril Sobierajewicz2018-12-031-0/+8
|
* Watch failed modules and their dependencies on compilation errorCyril Sobierajewicz2018-12-032-3/+57
|
* Immediately reject modules if the compilation already failedCyril Sobierajewicz2018-12-031-4/+12
|
* Version 3.2.03.2.0eric thul2018-06-141-1/+1
|
* Update regex for 0.12.0 (#112)Michael Trotter2018-06-141-2/+2
|
* Version 3.1.43.1.4eric thul2018-03-171-1/+1
|
* 3.1.33.1.3eric thul2018-03-171-1/+1
|
* Fix for webpack4eric thul2018-03-171-58/+58
| | | | Resolves #103 and provides an alternative to #108
* 3.1.23.1.2eric thul2017-10-031-1/+1
|
* Rebuild module map for new fileseric thul2017-10-031-16/+21
| | | | Resolves #100
* 3.1.13.1.1eric thul2017-08-241-1/+1
|
* Generate module map once (#105)eric2017-08-242-24/+13
| | | Resolves #97
* 3.1.03.1.0eric thul2017-08-121-2/+2
|
* Adding source map support (#102)eric2017-08-122-1/+77
| | | | | | | | * Adding source map support Resolves #101 * Remove unused fs
* Version 3.0.03.0.0eric thul2017-04-251-1/+1
|
* Version 3.0.0-beta.23.0.0-beta.2eric thul2017-04-241-1/+1
|
* Add options for ide commandseric thul2017-04-243-6/+11
|
* Version 3.0.0-beta.13.0.0-beta.1eric thul2017-04-231-1/+1
|
* Fix requires and psc-package cachingeric thul2017-04-233-4/+7
|
* Version 3.0.0-beta.03.0.0-beta.0eric thul2017-04-231-1/+1
|
* Update yarn.lockeric thul2017-04-231-5/+4
|
* Handle multiple forced compiles on rebuilderic thul2017-04-234-20/+42
| | | | Resolves #90
* Caching the result of psc-packageeric thul2017-04-231-22/+58
| | | | Resolves #83
* Update READMEeric thul2017-04-231-2/+2
|
* Refactoring cache usageeric thul2017-04-236-247/+357
|
* Support for PureScript 0.11eric thul2017-04-237-159/+187
| | | | Resolves #89
* Version 2.4.22.4.2eric thul2017-04-151-1/+1
|
* Merge branch 'ryani33-fix-deprecated-warning'eric thul2017-04-152-2/+2
|\
| * Merge branch 'fix-deprecated-warning' of ↵eric thul2017-04-152-2/+2
|/| | | | | | | https://github.com/ryani33/purs-loader into ryani33-fix-deprecated-warning
| * fix deprecated warningryani332017-02-252-2/+2
| |
* | Version 2.4.12.4.1eric thul2017-03-181-1/+1
| |
* | Fix rebuild for ModuleNotFounderic thul2017-03-181-1/+3
| | | | | | | | Resolves #88
* | Merge pull request #87 from cyrbon/mastereric2017-02-251-0/+17
|\ \ | | | | | | Add troubleshooting "Error spawn ENOENT"
| * | Rephrase troubleshoting "Error `spawn ENOENT`"cyrbon2017-02-251-7/+7
| | |
| * | Add troubleshooting "Error spawn ENOENT"cyrbon2017-02-251-0/+17
|/ /
* | Version 2.4.02.4.0eric thul2017-02-251-1/+1
| |
* | Merge pull request #84 from ethul/topic/error-handlingeric2017-02-258-76/+1871
|\ \ | |/ |/| Topic/error handling
| * Version 2.4.0-beta.22.4.0-beta.2eric thul2017-02-251-1/+1
| |
| * Adding an additional module checkeric thul2017-02-251-3/+12
| |
| * Handle missing module and adding debuggingeric thul2017-02-253-13/+35
| |
| * Update README for error reportingeric thul2017-02-201-4/+27
| |
| * Version 2.4.0-beta.12.4.0-beta.1eric thul2017-02-201-1/+1
| |
| * Fix typo in makeBundleJSeric thul2017-02-201-1/+1
| |
| * Version 2.4.0-beta.02.4.0-beta.0eric thul2017-02-191-1/+1
| |
| * Fix typo in READMEeric thul2017-02-191-1/+1
| |
| * Add a watch optioneric thul2017-02-193-1/+8
| | | | | | | | | | | | | | | | | | | | | | | | | | Similar to the way psc-ide support works, the purs-loader now tolerates compiler errors when the `watch` option is true. When webpack is being run in watch mode the user can set `watch` to true in order to avoid failing the webpack bundle creation when the PureScript compiler fails. Resolves issue #66 Resolves issue #73 Resolves issue #74
| * Ensure that all imported files are watchederic thul2017-02-195-65/+1799
|/ | | | | | | | | In order to handle the case where a new PureScript file is imported, but fails to compile, the purs-loader now tracks imports for each PureScript file in order to append any additional imports to the resulting JS. This ensures that webpack will watch the new file even before it successfully compiles.