@graphcommerce/next-config 3.1.1 → 3.1.4

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
@@ -1,5 +1,27 @@
1
1
  # Change Log
2
2
 
3
+ ## 3.1.4
4
+
5
+ ### Patch Changes
6
+
7
+ - [#1426](https://github.com/graphcommerce-org/graphcommerce/pull/1426) [`100f4c38c`](https://github.com/graphcommerce-org/graphcommerce/commit/100f4c38c8fcda4bc6e0425e38028b550b60adc2) Thanks [@paales](https://github.com/paales)! - Upgrade packages
8
+
9
+ ## 3.1.3
10
+
11
+ ### Patch Changes
12
+
13
+ - [#1399](https://github.com/graphcommerce-org/graphcommerce/pull/1399) [`fb277d8e1`](https://github.com/graphcommerce-org/graphcommerce/commit/fb277d8e1e3612c5e9cf890a30d19cfd1ff70542) Thanks [@paales](https://github.com/paales)! - Now using [@graphql-yoga](https://github.com/dotansimha/graphql-yoga) for GraphQL which has full support for [envelop](https://www.envelop.dev/) plugins.
14
+
15
+ * [#1399](https://github.com/graphcommerce-org/graphcommerce/pull/1399) [`fb277d8e1`](https://github.com/graphcommerce-org/graphcommerce/commit/fb277d8e1e3612c5e9cf890a30d19cfd1ff70542) Thanks [@paales](https://github.com/paales)! - Added a new @graphcommerce/cli package to generate the mesh so it can be generated _inside_ the @graphcommerce/graphql-mesh package to allow for better future extensibility.
16
+
17
+ - [#1399](https://github.com/graphcommerce-org/graphcommerce/pull/1399) [`da0ae7d02`](https://github.com/graphcommerce-org/graphcommerce/commit/da0ae7d0236e4908ba0bf0fa16656be516e841d4) Thanks [@paales](https://github.com/paales)! - Updated dependencies
18
+
19
+ ## 3.1.2
20
+
21
+ ### Patch Changes
22
+
23
+ - [#1378](https://github.com/graphcommerce-org/graphcommerce/pull/1378) [`b610a6e40`](https://github.com/graphcommerce-org/graphcommerce/commit/b610a6e4049e8c9e8b5d2aeff31b8e1bfc24abe5) Thanks [@paales](https://github.com/paales)! - Pin all versions internally so we can’t end up in an unfixable state for the user
24
+
3
25
  ## 3.1.1
4
26
 
5
27
  ### Patch Changes
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "@graphcommerce/next-config",
3
3
  "homepage": "https://www.graphcommerce.org/",
4
4
  "repository": "github:graphcommerce-org/graphcommerce",
5
- "version": "3.1.1",
5
+ "version": "3.1.4",
6
6
  "type": "commonjs",
7
7
  "main": "dist/index.js",
8
8
  "typings": "dist/index.d.ts",
@@ -13,17 +13,17 @@
13
13
  "prepack": "yarn build"
14
14
  },
15
15
  "dependencies": {
16
- "@lingui/loader": "^3.13.2",
16
+ "@lingui/loader": "^3.13.3",
17
17
  "js-yaml-loader": "^1.2.2",
18
18
  "next-transpile-modules": "^9.0.0",
19
- "webpack": "^5.70.0"
19
+ "webpack": "^5.72.0"
20
20
  },
21
21
  "devDependencies": {
22
- "typescript": "4.6.3",
23
- "type-fest": "2.12.1"
22
+ "type-fest": "^2.12.2",
23
+ "typescript": "4.6.3"
24
24
  },
25
25
  "peerDependencies": {
26
- "next": "^12.0.10",
26
+ "next": "12.1.2",
27
27
  "webpack": "^5.70.0"
28
28
  },
29
29
  "files": [
package/src/index.ts CHANGED
@@ -3,7 +3,7 @@ import { createHash } from 'crypto'
3
3
  import { readFileSync, writeFileSync, mkdirSync } from 'fs'
4
4
  import withTranspileModules from 'next-transpile-modules'
5
5
  import { NextConfig } from 'next/dist/server/config-shared'
6
- import { PackageJson } from 'type-fest'
6
+ import type { PackageJson } from 'type-fest'
7
7
  import { DefinePlugin, Configuration } from 'webpack'
8
8
 
9
9
  export type WorkspaceInfo = {