@anansi/webpack-config 12.0.3 → 13.0.2

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/CHANGELOG.md CHANGED
@@ -3,6 +3,34 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ ### [13.0.2](https://github.com/ntucker/anansi/compare/@anansi/webpack-config@13.0.1...@anansi/webpack-config@13.0.2) (2022-08-01)
7
+
8
+ ### 📦 Package
9
+
10
+ * Update babel packages to v7.18.10 ([#1603](https://github.com/ntucker/anansi/issues/1603)) ([bbaa15c](https://github.com/ntucker/anansi/commit/bbaa15c9e9c1e07479568acfb8e91a6ec4692833))
11
+ * Update webpack packages ([#1601](https://github.com/ntucker/anansi/issues/1601)) ([1f909e2](https://github.com/ntucker/anansi/commit/1f909e28641906e3712616a7fa17aed00280ff84))
12
+
13
+ ### [13.0.1](https://github.com/ntucker/anansi/compare/@anansi/webpack-config@13.0.0...@anansi/webpack-config@13.0.1) (2022-07-30)
14
+
15
+ ### 📦 Package
16
+
17
+ * autoprefixer, yeoman-environment, yeoman-generator ([#1596](https://github.com/ntucker/anansi/issues/1596)) ([79dbc39](https://github.com/ntucker/anansi/commit/79dbc39d66394cf01e7bb8ed656b4a0a5adac2aa))
18
+ * Update `style-loader` to v3 ([#1598](https://github.com/ntucker/anansi/issues/1598)) ([c0b2d0d](https://github.com/ntucker/anansi/commit/c0b2d0d3dc421c8109123159d064cf6e5e5b6ec0))
19
+ * Update `tsconfig-paths-webpack-plugin` to v4 ([#1595](https://github.com/ntucker/anansi/issues/1595)) ([0f4a50e](https://github.com/ntucker/anansi/commit/0f4a50e96dc98dcbbcd9d23a3969c5749451ab7f))
20
+
21
+ ## [13.0.0](https://github.com/ntucker/anansi/compare/@anansi/webpack-config@12.0.3...@anansi/webpack-config@13.0.0) (2022-07-28)
22
+
23
+ ### ⚠ 💥 BREAKING CHANGES
24
+
25
+ * Require Linaria 4
26
+
27
+ Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
28
+ Co-authored-by: Nathaniel Tucker <me@ntucker.me>
29
+
30
+ ### 📦 Package
31
+
32
+ * Update linaria to v4 (major) ([#1591](https://github.com/ntucker/anansi/issues/1591)) ([1aab741](https://github.com/ntucker/anansi/commit/1aab74172d68728db5aa443edc7cdad074cbbf9c))
33
+
6
34
  ### [12.0.3](https://github.com/ntucker/anansi/compare/@anansi/webpack-config@12.0.2...@anansi/webpack-config@12.0.3) (2022-07-26)
7
35
 
8
36
  **Note:** Version bump only for package @anansi/webpack-config
package/README.md CHANGED
@@ -152,7 +152,7 @@ only work with npm v7 and above, or yarn.
152
152
  "css-loader": "^5.0.0",
153
153
  "dotenv-webpack": "^6.0.0",
154
154
  "html-webpack-plugin": "^5.0.0",
155
- "style-loader": "^2.0.0",
155
+ "style-loader": "^3.0.0",
156
156
  "terser-webpack-plugin": "^5.0.0",
157
157
  "webpack-virtual-modules": "^0.4.2"
158
158
  }
package/index.d.ts CHANGED
@@ -5,7 +5,7 @@ import type {
5
5
  } from 'webpack';
6
6
  import HtmlWebpackPlugin from 'html-webpack-plugin';
7
7
  import type { OptimizeOptions } from 'svgo';
8
- import { StrictOptions } from '@linaria/babel-preset';
8
+ import { PluginOptions } from '@linaria/babel-preset';
9
9
  import type { Options as TsconfigPathsOptions } from 'tsconfig-paths-webpack-plugin/lib/options';
10
10
  import type { BundleAnalyzerPlugin } from 'webpack-bundle-analyzer';
11
11
  import type { TransformOptions } from '@babel/core';
@@ -27,7 +27,7 @@ export interface Options {
27
27
  htmlOptions?: HtmlWebpackPlugin.Options | false;
28
28
  svgoOptions?: OptimizeOptions | false;
29
29
  svgrOptions?: any | false;
30
- linariaOptions?: StrictOptions | false;
30
+ linariaOptions?: PluginOptions | false;
31
31
  tsconfigPathsOptions?: TsconfigPathsOptions | false;
32
32
  globalStyleDir?: string | false;
33
33
  sassOptions?: SassOptions | false;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@anansi/webpack-config",
3
- "version": "12.0.3",
3
+ "version": "13.0.2",
4
4
  "description": "Production ready webpack for React",
5
5
  "main": "lib/index.js",
6
6
  "types": "./index.d.ts",
@@ -52,22 +52,22 @@
52
52
  "node": ">=14.15.0"
53
53
  },
54
54
  "devDependencies": {
55
- "@anansi/babel-preset": "3.2.12",
56
- "@babel/cli": "7.18.9",
57
- "@babel/core": "7.18.9",
55
+ "@anansi/babel-preset": "3.2.14",
56
+ "@babel/cli": "7.18.10",
57
+ "@babel/core": "7.18.10",
58
58
  "debug": "4.3.4",
59
59
  "prettier-eslint-cli": "6.0.1",
60
60
  "rimraf": "^3.0.2"
61
61
  },
62
62
  "dependencies": {
63
63
  "@babel/runtime": "^7.17.2",
64
- "@linaria/webpack5-loader": "3.0.0-beta.22",
64
+ "@linaria/webpack5-loader": "4.1.2",
65
65
  "@pmmmwh/react-refresh-webpack-plugin": "^0.5.7",
66
66
  "@svgr/webpack": "^6.3.1",
67
67
  "@types/webpack-bundle-analyzer": "^4.4.1",
68
68
  "@vue/preload-webpack-plugin": "^2.0.0",
69
69
  "assert": "^2.0.0",
70
- "autoprefixer": "^10.4.7",
70
+ "autoprefixer": "^10.4.8",
71
71
  "babel-loader": "^8.2.5",
72
72
  "browserify-zlib": "^0.2.0",
73
73
  "buffer": "^6.0.3",
@@ -117,7 +117,7 @@
117
117
  "svgo-loader": "^3.0.1",
118
118
  "terser-webpack-plugin": "^5.3.3",
119
119
  "timers-browserify": "^2.0.12",
120
- "tsconfig-paths-webpack-plugin": "^3.5.2",
120
+ "tsconfig-paths-webpack-plugin": "^4.0.0",
121
121
  "tty-browserify": "^0.0.1",
122
122
  "url": "^0.11.0",
123
123
  "url-loader": "^4.1.1",
@@ -132,7 +132,7 @@
132
132
  "peerDependencies": {
133
133
  "@babel/core": "^6 || ^7 || ^8",
134
134
  "@hot-loader/react-dom": "^16.0.0 || ^17.0.0",
135
- "@linaria/babel-preset": "^3.0.0-beta.3 || ^3.0",
135
+ "@linaria/babel-preset": "^4.0.0",
136
136
  "@storybook/react": "^6.2.0",
137
137
  "node-sass": "^7.0.1",
138
138
  "react": "*",