gatsby-source-filesystem 4.11.0-next.1 → 4.11.0-next.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/README.md CHANGED
@@ -130,8 +130,6 @@ createFilePath({
130
130
 
131
131
  #### Example usage
132
132
 
133
- The following is taken from [Gatsby Tutorial, Part Seven](https://www.gatsbyjs.org/tutorial/part-7/) and is used to create URL slugs for markdown pages.
134
-
135
133
  ```javascript
136
134
  const { createFilePath } = require(`gatsby-source-filesystem`)
137
135
 
package/gatsby-node.js CHANGED
@@ -209,7 +209,7 @@ exports.sourceNodes = (api, pluginOptions) => {
209
209
  The path passed to gatsby-source-filesystem does not exist on your file system:
210
210
  ${pluginOptions.path}
211
211
  Please pick a path to an existing directory.
212
- See docs here - https://www.gatsbyjs.org/packages/gatsby-source-filesystem/
212
+ See docs here - https://www.gatsbyjs.com/plugins/gatsby-source-filesystem/
213
213
  `);
214
214
  } // Validate that the path is absolute.
215
215
  // Absolute paths are required to resolve images correctly.
package/index.d.ts CHANGED
@@ -1,19 +1,19 @@
1
1
  import { Node, Store, NodePluginArgs } from "gatsby"
2
2
 
3
3
  /**
4
- * @see https://www.gatsbyjs.org/packages/gatsby-source-filesystem/?=files#createfilepath
4
+ * @see https://www.gatsbyjs.com/plugins/gatsby-source-filesystem/?=files#createfilepath
5
5
  */
6
6
  export function createFilePath(args: CreateFilePathArgs): string
7
7
 
8
8
  /**
9
- * @see https://www.gatsbyjs.org/packages/gatsby-source-filesystem/?=files#createremotefilenode
9
+ * @see https://www.gatsbyjs.com/plugins/gatsby-source-filesystem/?=files#createremotefilenode
10
10
  */
11
11
  export function createRemoteFileNode(
12
12
  args: CreateRemoteFileNodeArgs
13
13
  ): Promise<FileSystemNode>
14
14
 
15
15
  /**
16
- * @see https://www.gatsbyjs.org/packages/gatsby-source-filesystem/?=files#createfilenodefrombuffer
16
+ * @see https://www.gatsbyjs.com/plugins/gatsby-source-filesystem/?=files#createfilenodefrombuffer
17
17
  */
18
18
  export function createFileNodeFromBuffer(
19
19
  args: CreateFileNodeFromBufferArgs
@@ -103,7 +103,7 @@ export interface FileSystemConfig {
103
103
  }
104
104
 
105
105
  /**
106
- * @see https://www.gatsbyjs.org/packages/gatsby-source-filesystem/?=filesy#options
106
+ * @see https://www.gatsbyjs.com/plugins/gatsby-source-filesystem/?=filesy#options
107
107
  */
108
108
  interface FileSystemOptions {
109
109
  name: 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.11.0-next.1",
4
+ "version": "4.11.0-next.2",
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": "2cfd7dc3db6e4a6325962160170edf8c51053217"
52
+ "gitHead": "a9fd6bef3b2b9150de31e1632bfd383ec331743a"
53
53
  }