Skip to content

Releases: joeldenning/systemjs-webpack-interop

v2.1.1

20 May 15:32
Compare
Choose a tag to compare

Fixes

  • Fix IE11 support (#8 #9)

v2.1.0

21 Apr 19:11
Compare
Choose a tag to compare

Features

  • New auto-public-path feature allows for more convenient setting of public path, by using __system_context__. This feature only works in webpack@>=5.0.0-beta.15. Full documentation
// in your webpack entry file, add this to the top of your file
import 'systemjs-webpack-interop/auto-public-path'

v1.2.0

21 Apr 19:12
Compare
Choose a tag to compare

This publish was in error. To fix the error, I published 1.2.1 which is the same thing as the older 1.1.2 that was working.

Do not use this version. Use 1.2.1 instead

v2.0.0

16 Mar 22:44
Compare
Choose a tag to compare

Breaking changes

  • The way to import the library changed. The public path helpers are now the main file in the package.json. (b7b59e7)
// Works in both systemjs-webpack-interop@1 and 2
import { setPublicPath } from 'systemjs-webpack-interop';

// New way of importing - works in v2
import { setPublicPath } from 'systemjs-webpack-interop/public-path';
const { checkWebpackConfig, modifyWebpackConfig } = require('systemjs-webpack-interop/webpack-config');

// No longer works with v2
import { setPublicPath } from 'systemjs-webpack-interop/src/systemjs-webpack-interop';
const { checkWebpackConfig, modifyWebpackConfig } = require('systemjs-webpack-interop');

Maintenance

  • Merging automated security fixes (#3, #6)
  • Update license to 2020 (Still is MIT) - 223356e
  • Adding bugs and homepage to package json - 223356e

v1.1.2

18 Nov 18:49
Compare
Choose a tag to compare

Fixes

  • Made IE11 compatible (#2)

v1.1.1

07 Nov 19:12
Compare
Choose a tag to compare

Fixes

  • Fixed typescript definitions (#1 via @Seishi)

v1.1.0

12 Sep 08:43
Compare
Choose a tag to compare

Features

v1.0.0

11 Sep 22:00
Compare
Choose a tag to compare

Initial implementation

See readme for usage instructions