Releases: joeldenning/systemjs-webpack-interop
Releases · joeldenning/systemjs-webpack-interop
v2.1.1
v2.1.0
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
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
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
v1.1.2
v1.1.1
v1.1.0
v1.0.0
Initial implementation
See readme for usage instructions