gatsby-plugin-image 2.15.0 → 2.16.0-next.1

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.
Files changed (2) hide show
  1. package/CHANGELOG.md +7 -1
  2. package/package.json +6 -6
package/CHANGELOG.md CHANGED
@@ -3,13 +3,19 @@
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
- ## [2.15.0](https://github.com/gatsbyjs/gatsby/commits/HEAD/packages/gatsby-plugin-image) (2022-05-24)
6
+ ## [2.15.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-image@2.15.0/packages/gatsby-plugin-image) (2022-05-24)
7
7
 
8
8
  [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v4.15)
9
9
 
10
+ #### Bug Fixes
11
+
12
+ - Throw Typegen errors & add `IGatsbyImageData` to output [#35683](https://github.com/gatsbyjs/gatsby/issues/35683) ([e7fc88b](https://github.com/gatsbyjs/gatsby/commit/e7fc88b024c84a3e9f732deec7441621024e1f95))
13
+ - fix race condition fix [#35635](https://github.com/gatsbyjs/gatsby/issues/35635) ([12cb033](https://github.com/gatsbyjs/gatsby/commit/12cb033f7998427cfbabe8d833a7c2bd516f3b1f))
14
+
10
15
  #### Chores
11
16
 
12
17
  - don't use npm-run-all to build packages ([fb4de37](https://github.com/gatsbyjs/gatsby/commit/fb4de379e914892c8ce437d4613b60499cfeb897))
18
+ - workaround lerna + npm-run-all weirdness [#35595](https://github.com/gatsbyjs/gatsby/issues/35595) ([8cc0970](https://github.com/gatsbyjs/gatsby/commit/8cc09702f9a2767c51cf5267233108c07e4ac073))
13
19
 
14
20
  ### [2.14.1](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-image@2.14.1/packages/gatsby-plugin-image) (2022-05-12)
15
21
 
package/package.json CHANGED
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "name": "gatsby-plugin-image",
3
- "version": "2.15.0",
3
+ "version": "2.16.0-next.1",
4
4
  "scripts": {
5
- "build": "npm run clean && npm run build:gatsby-node && npm run build:gatsby-ssr && npm run build:server && npm run build:browser",
5
+ "build": "npm-run-all --npm-path npm -s clean -p build:*",
6
6
  "build:gatsby-node": "tsc --jsx react --downlevelIteration true --skipLibCheck true --esModuleInterop true --outDir dist/ src/gatsby-node.ts src/babel-plugin-parse-static-images.ts src/resolver-utils.ts src/types.d.ts -d --declarationDir dist/src",
7
7
  "build:gatsby-ssr": "microbundle -i src/gatsby-ssr.tsx -f cjs -o ./[name].js --no-pkg-main --jsx React.createElement --no-compress --external=common-tags,react --no-sourcemap",
8
8
  "build:server": "microbundle -f cjs,es --jsx React.createElement --define SERVER=true",
@@ -77,13 +77,13 @@
77
77
  "@babel/runtime": "^7.15.4",
78
78
  "@babel/traverse": "^7.15.4",
79
79
  "babel-jsx-utils": "^1.1.0",
80
- "babel-plugin-remove-graphql-queries": "^4.15.0",
80
+ "babel-plugin-remove-graphql-queries": "^4.16.0-next.0",
81
81
  "camelcase": "^5.3.1",
82
82
  "chokidar": "^3.5.2",
83
83
  "common-tags": "^1.8.2",
84
84
  "fs-extra": "^10.1.0",
85
- "gatsby-core-utils": "^3.15.0",
86
- "gatsby-plugin-utils": "^3.9.0",
85
+ "gatsby-core-utils": "^3.16.0-next.0",
86
+ "gatsby-plugin-utils": "^3.10.0-next.1",
87
87
  "objectFitPolyfill": "^2.3.5",
88
88
  "prop-types": "^15.8.1"
89
89
  },
@@ -94,5 +94,5 @@
94
94
  },
95
95
  "author": "Matt Kane <matt@gatsbyjs.com>",
96
96
  "license": "MIT",
97
- "gitHead": "56fb124980599a6af2f737240a9c5c763721ddee"
97
+ "gitHead": "1cebb717017de1fad88a5d66106d4c1dd7e546d6"
98
98
  }