gatsby-source-filesystem 4.11.0-next.2 → 4.11.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.
package/CHANGELOG.md CHANGED
@@ -3,6 +3,10 @@
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
+ ### [4.10.1](https://github.com/gatsbyjs/gatsby/commits/gatsby-source-filesystem@4.10.1/packages/gatsby-source-filesystem) (2022-03-23)
7
+
8
+ **Note:** Version bump only for package gatsby-source-filesystem
9
+
6
10
  ## [4.10.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-source-filesystem@4.10.0/packages/gatsby-source-filesystem) (2022-03-16)
7
11
 
8
12
  [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v4.10)
@@ -153,7 +153,7 @@ module.exports = function createRemoteFileNode({
153
153
  }
154
154
 
155
155
  if (!url || isWebUri(url) === undefined) {
156
- return Promise.reject(new Error(`url passed to createRemoteFileNode is either missing or not a proper web uri: ${url}`));
156
+ throw new Error(`url passed to createRemoteFileNode is either missing or not a proper web uri: ${url}`);
157
157
  }
158
158
 
159
159
  const fileDownloadPromise = processRemoteNode({
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "gatsby-source-filesystem",
3
3
  "description": "Gatsby source plugin for building websites from local data. Markdown, JSON, images, YAML, CSV, and dozens of other data types supported.",
4
- "version": "4.11.0-next.2",
4
+ "version": "4.11.1",
5
5
  "author": "Kyle Mathews <mathews.kyle@gmail.com>",
6
6
  "bugs": {
7
7
  "url": "https://github.com/gatsbyjs/gatsby/issues"
@@ -11,7 +11,7 @@
11
11
  "chokidar": "^3.5.2",
12
12
  "file-type": "^16.5.3",
13
13
  "fs-extra": "^10.0.0",
14
- "gatsby-core-utils": "^3.11.0-next.1",
14
+ "gatsby-core-utils": "^3.11.1",
15
15
  "got": "^9.6.0",
16
16
  "md5-file": "^5.0.0",
17
17
  "mime": "^2.5.2",
@@ -23,7 +23,7 @@
23
23
  "devDependencies": {
24
24
  "@babel/cli": "^7.15.4",
25
25
  "@babel/core": "^7.15.5",
26
- "babel-preset-gatsby-package": "^2.11.0-next.0",
26
+ "babel-preset-gatsby-package": "^2.11.0",
27
27
  "cross-env": "^7.0.3"
28
28
  },
29
29
  "homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-source-filesystem#readme",
@@ -49,5 +49,5 @@
49
49
  "engines": {
50
50
  "node": ">=14.15.0"
51
51
  },
52
- "gitHead": "a9fd6bef3b2b9150de31e1632bfd383ec331743a"
52
+ "gitHead": "ad8c330df7b452b2e515b20d0d11dcb1385b9f6b"
53
53
  }