make-webpack-config

![Build status](https://github.com/faergeek/make-webpack-config/actions/workflows/checks.yml/badge.svg)

MIT License

Downloads
1.3K
Stars
1
Committers
5

Bot releases are visible (Hide)

make-webpack-config - v21.1.5

Published by github-actions[bot] almost 2 years ago

21.1.5 (2022-11-30)

Bug Fixes

  • deps: update dependency mini-css-extract-plugin to v2.7.1 (33620b2)
make-webpack-config - v21.1.4

Published by github-actions[bot] almost 2 years ago

21.1.4 (2022-11-29)

Bug Fixes

  • deps: update dependency lightningcss to v1.17.0 (f73d204)
make-webpack-config - v21.1.3

Published by github-actions[bot] almost 2 years ago

21.1.3 (2022-11-24)

Bug Fixes

  • deps: update dependency @pmmmwh/react-refresh-webpack-plugin to v0.5.10 (b35f3c2)
make-webpack-config - v21.1.2

Published by github-actions[bot] almost 2 years ago

21.1.2 (2022-11-22)

Bug Fixes

  • revert relative urls in js (1d11b9f)
make-webpack-config - v21.1.1

Published by github-actions[bot] almost 2 years ago

21.1.1 (2022-11-20)

Bug Fixes

  • bring back hashes to css in dev, so HMR works (9bb38d7)
make-webpack-config - v21.1.0

Published by github-actions[bot] almost 2 years ago

21.1.0 (2022-11-20)

Features

  • expose assets.json alias to simplify typing (fe62d76)
make-webpack-config - v21.0.1

Published by github-actions[bot] almost 2 years ago

21.0.1 (2022-11-20)

Bug Fixes

  • always add hashes to filenames (841608e)
make-webpack-config - v21.0.0

Published by github-actions[bot] almost 2 years ago

21.0.0 (2022-11-20)

Bug Fixes

  • don't use mini-css-extract-plugin for sw (f8b8d7f)
  • move assets.json back out of public folder (1ee96ae)

Features

  • make node and sw configs depend on browser (50cfd31)

BREAKING CHANGES

  • you need to update path from which you read/import
    assets.json
make-webpack-config - v20.2.0

Published by github-actions[bot] almost 2 years ago

20.2.0 (2022-11-20)

Features

  • add support for service worker entry (3951b40)

Performance Improvements

  • disable iife for node and webworker targets (2af1da8)
make-webpack-config - v20.1.0

Published by github-actions[bot] almost 2 years ago

20.1.0 (2022-11-20)

Bug Fixes

  • disable css cache group (61d0367)

Features

  • output relative urls in js (f4ec614)
make-webpack-config - v20.0.0

Published by github-actions[bot] almost 2 years ago

20.0.0 (2022-11-19)

Features

  • accept full cache config as an option (a1d89eb)
  • rename assets json and make it public (7be790c)

BREAKING CHANGES

  • now you have to specify full cache configuration as a
    cache option, instead of just boolean.

https://webpack.js.org/configuration/cache/

To migrate, set cache option to this object instead of true:

cache: {
  type: 'filesystem',
  buildDependencies: {
    config: [new URL(import.meta.url).pathname],
  },
}
  • webpack-assets.json is moved to public folder and renamed to assets.json
make-webpack-config - v19.1.0

Published by github-actions[bot] almost 2 years ago

19.1.0 (2022-11-19)

Features

  • add auxiliary assets to webpack-assets.json (e96dd2d)
make-webpack-config - v19.0.6

Published by github-actions[bot] almost 2 years ago

19.0.6 (2022-11-19)

Performance Improvements

  • revert using esbuild to minify js (f5dd010)
make-webpack-config - v19.0.5

Published by github-actions[bot] almost 2 years ago

19.0.5 (2022-11-19)

Bug Fixes

  • deps: move lightningcss to dependencies (86c20a3)
make-webpack-config - v19.0.4

Published by github-actions[bot] almost 2 years ago

19.0.4 (2022-11-19)

Performance Improvements

  • use esbuild to minify js (a693083)
make-webpack-config - v19.0.3

Published by github-actions[bot] almost 2 years ago

19.0.3 (2022-11-19)

Performance Improvements

  • css: use lightningcss for css minification (41ba4e2)
make-webpack-config - v19.0.2

Published by github-actions[bot] almost 2 years ago

19.0.2 (2022-11-16)

Bug Fixes

  • deps: update dependency mini-css-extract-plugin to v2.7.0 (cc1dc6e)
make-webpack-config - v19.0.1

Published by github-actions[bot] almost 2 years ago

19.0.1 (2022-11-15)

Bug Fixes

  • require explicit ?inline to inline assets (cf9d604)
make-webpack-config - v19.0.0

Published by github-actions[bot] almost 2 years ago

19.0.0 (2022-11-15)

Features

  • better handle assets for node target (cabc88b)

BREAKING CHANGES

  • if you want to use absolute path in node, you need to
    add ?absolute query to import or new URL(...).
make-webpack-config - v18.1.1

Published by github-actions[bot] almost 2 years ago

18.1.1 (2022-11-13)

Bug Fixes

  • use .cjs ext for node hot update chunks (0148871)