@abcnews/aunty 13.0.2 → 13.0.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@abcnews/aunty",
3
- "version": "13.0.2",
3
+ "version": "13.0.3",
4
4
  "description": "A toolkit for working with ABC News projects",
5
5
  "repository": "abcnews/aunty",
6
6
  "license": "MIT",
@@ -44,7 +44,7 @@
44
44
  "chalk": "^4.1.2",
45
45
  "cli-select": "^1.1.0",
46
46
  "copy-webpack-plugin": "^8.1.1",
47
- "css-loader": "^5.2.7",
47
+ "css-loader": "^6.7.1",
48
48
  "csv-loader": "^3.0.3",
49
49
  "deepmerge": "^4.0.0",
50
50
  "del": "^6.0.0",
@@ -191,8 +191,8 @@ function createWebpackConfig({ isModernJS } = {}) {
191
191
  exportLocalsConvention: 'camelCase',
192
192
  localIdentContext: __dirname,
193
193
  // ^^^ https://github.com/webpack-contrib/css-loader/issues/413#issuecomment-299578180
194
- localIdentName: `${isProd ? '' : '[folder]-[name]__[local]-'}[contenthash:base64:6]`,
195
- localIdentHashPrefix: `${pkg.name}@${pkg.version}`
194
+ localIdentHashSalt: `${pkg.name}@${pkg.version}`,
195
+ localIdentName: `${isProd ? '' : '[folder]-[name]__[local]--'}[hash:base64:6]`
196
196
  },
197
197
  sourceMap: !isProd
198
198
  }