Skip to content
This repository has been archived by the owner on Dec 3, 2018. It is now read-only.

Releases: rrdelaney/bs-loader

bsb-js-1.1.7

14 Aug 19:23
09f9015
Compare
Choose a tag to compare

[email protected]

15 Jun 21:37
7d97fd0
Compare
Choose a tag to compare

[email protected]

[email protected]

15 Jun 03:21
01f69e9
Compare
Choose a tag to compare

[email protected]

15 Jun 02:37
Compare
Choose a tag to compare

v2.0.4

10 May 04:16
0414cdc
Compare
Choose a tag to compare

[email protected]

  • Fix Jest integration
  • New test for Jest integration

[email protected]

  • compileFileSync now takes the same params as compileFile

v2.0.3

03 May 05:29
Compare
Choose a tag to compare

[email protected]

  • Better automatic detection of in-source builds

[email protected]

  • package-specs can now be either BsPackageSpec or BsPackageSpec[]

v2.0.0

10 Nov 05:18
Compare
Choose a tag to compare

[email protected]

This release marks a pretty big change for bs-loader 😄 There shouldn't be any breaking changes, but we've taken the core out of bs-loader and split it up into a few packages like read-bsconfig and bsb-js, both of which can already be seen in use in projects like rollup-plugin-bucklescript. There will be more about this in the coming weeks, so stay tuned!

This release marks the start of maintenance mode for bs-loader. There will be no future feature development on bs-loader itself, however it's subpackages and projects to replace it like reason-webpack-plugin will continue to be developed and maintained. In the future there may be breaking changes in bs-loader as we remove features like Jest processing.

Instead of bs-loader, consider using bsb' new in-source builds in conjunction with .bs.js extensions:

{
  "package-specs": {
    "module": "commonjs",
    "in-source": true
  },
  "suffix": ".bs.js",
}

This way, you can require BuckleScript js output from the js side with require('./foo.bs').

Changes

  • Adding support for the suffix bsconfig option (#36 @arnarthor)
  • fix aliasing when running inside jest (#38 @pigoz)

v1.8.2

17 Oct 04:16
Compare
Choose a tag to compare

Changes

v1.8.1

01 Oct 19:15
Compare
Choose a tag to compare

Changes

  • Fix a bug where files were being resolved before bsb was done running (#31 @tcoopman)

v1.8.0

25 Sep 02:31
Compare
Choose a tag to compare

Changes

  • Colors from bsb output are now forwarded to webpack (#29 @baransu)
  • Most settings are automatically inferred from bsconfig.json (#27 @arnarthor)