gatsby-source-filesystem 4.16.0-next.0 → 4.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.
package/CHANGELOG.md CHANGED
@@ -3,6 +3,12 @@
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.15.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-source-filesystem@4.15.0/packages/gatsby-source-filesystem) (2022-05-24)
7
+
8
+ [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v4.15)
9
+
10
+ **Note:** Version bump only for package gatsby-source-filesystem
11
+
6
12
  ## [4.14.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-source-filesystem@4.14.0/packages/gatsby-source-filesystem) (2022-05-10)
7
13
 
8
14
  [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v4.14)
@@ -20,11 +20,6 @@ const {
20
20
  * @see gatsby/packages/gatsby/utils/cache.js
21
21
  */
22
22
 
23
- /**
24
- * @typedef {Reporter}
25
- * @see gatsby/packages/gatsby-cli/lib/reporter.js
26
- */
27
-
28
23
  /**
29
24
  * @typedef {Auth}
30
25
  * @type {Object}
@@ -42,7 +37,6 @@ const {
42
37
  * @param {Function} options.createNode
43
38
  * @param {Function} options.getCache
44
39
  * @param {Auth} [options.auth]
45
- * @param {Reporter} [options.reporter]
46
40
  */
47
41
 
48
42
  /******************
package/index.d.ts CHANGED
@@ -1,4 +1,4 @@
1
- import { Node, Store, NodePluginArgs } from "gatsby"
1
+ import { Node, GatsbyCache } from "gatsby"
2
2
 
3
3
  /**
4
4
  * @see https://www.gatsbyjs.com/plugins/gatsby-source-filesystem/?=files#createfilepath
@@ -28,9 +28,8 @@ export interface CreateFilePathArgs {
28
28
 
29
29
  export interface CreateRemoteFileNodeArgs {
30
30
  url: string
31
- store: Store
32
- // TODO: use GatsbyCache type (requires gatsby@2.22.13)
33
- cache: NodePluginArgs["cache"]
31
+ cache?: GatsbyCache
32
+ getCache?: Function
34
33
  createNode: Function
35
34
  createNodeId: Function
36
35
  parentNodeId?: string
@@ -41,14 +40,12 @@ export interface CreateRemoteFileNodeArgs {
41
40
  httpHeaders?: object
42
41
  ext?: string
43
42
  name?: string
44
- reporter: object
45
43
  }
46
44
 
47
45
  export interface CreateFileNodeFromBufferArgs {
48
46
  buffer: Buffer
49
- store: Store
50
- // TODO: use GatsbyCache type (requires gatsby@2.22.13)
51
- cache: NodePluginArgs["cache"]
47
+ cache?: GatsbyCache
48
+ getCache?: Function
52
49
  createNode: Function
53
50
  createNodeId: Function
54
51
  parentNodeId?: string
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.16.0-next.0",
4
+ "version": "4.16.0-next.1",
5
5
  "author": "Kyle Mathews <mathews.kyle@gmail.com>",
6
6
  "bugs": {
7
7
  "url": "https://github.com/gatsbyjs/gatsby/issues"
@@ -49,5 +49,5 @@
49
49
  "engines": {
50
50
  "node": ">=14.15.0"
51
51
  },
52
- "gitHead": "81b82c8c408afaf763e326e3c68134b6fe174516"
52
+ "gitHead": "ba182c6367c636d58b2180dd024526708e5a5fe8"
53
53
  }