gatsby-source-filesystem 2.7.0-next.1 → 2.8.0

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,22 @@
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.8.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-source-filesystem@2.8.0-next.0...gatsby-source-filesystem@2.8.0) (2020-12-15)
7
+
8
+ **Note:** Version bump only for package gatsby-source-filesystem
9
+
10
+ # [2.8.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-source-filesystem@2.7.0-next.2...gatsby-source-filesystem@2.8.0-next.0) (2020-11-26)
11
+
12
+ ### Bug Fixes
13
+
14
+ - **gatsby-source-filesystem:** Improve the description ([#28252](https://github.com/gatsbyjs/gatsby/issues/28252)) ([597d1dd](https://github.com/gatsbyjs/gatsby/commit/597d1dd00e14311f333884186256134a444dede0))
15
+
16
+ # [2.7.0-next.2](https://github.com/gatsbyjs/gatsby/compare/gatsby-source-filesystem@2.7.0-next.1...gatsby-source-filesystem@2.7.0-next.2) (2020-11-22)
17
+
18
+ ### Bug Fixes
19
+
20
+ - **gatsby-source-filesystem:** fix race condition when using `publicURL` field ([#28176](https://github.com/gatsbyjs/gatsby/issues/28176)) ([1abf65c](https://github.com/gatsbyjs/gatsby/commit/1abf65c335f397e9f891d25c4113ceee0e3fc138))
21
+
6
22
  # [2.7.0-next.1](https://github.com/gatsbyjs/gatsby/compare/gatsby-source-filesystem@2.7.0-next.0...gatsby-source-filesystem@2.7.0-next.1) (2020-11-18)
7
23
 
8
24
  ### Bug Fixes
@@ -34,7 +34,7 @@ module.exports = ({
34
34
  const publicPath = path.join(process.cwd(), `public`, `static`, fileName);
35
35
 
36
36
  if (!fs.existsSync(publicPath)) {
37
- fs.copy(details.absolutePath, publicPath, {
37
+ fs.copySync(details.absolutePath, publicPath, {
38
38
  dereference: true
39
39
  }, err => {
40
40
  if (err) {
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "gatsby-source-filesystem",
3
- "description": "Gatsby plugin which parses files within a directory for further parsing by other plugins",
4
- "version": "2.7.0-next.1",
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": "2.8.0",
5
5
  "author": "Kyle Mathews <mathews.kyle@gmail.com>",
6
6
  "bugs": {
7
7
  "url": "https://github.com/gatsbyjs/gatsby/issues"
@@ -12,7 +12,7 @@
12
12
  "chokidar": "^3.4.3",
13
13
  "file-type": "^16.0.0",
14
14
  "fs-extra": "^8.1.0",
15
- "gatsby-core-utils": "^1.6.0-next.0",
15
+ "gatsby-core-utils": "^1.7.0",
16
16
  "got": "^9.6.0",
17
17
  "md5-file": "^5.0.0",
18
18
  "mime": "^2.4.6",
@@ -24,8 +24,8 @@
24
24
  "devDependencies": {
25
25
  "@babel/cli": "^7.12.1",
26
26
  "@babel/core": "^7.12.3",
27
- "babel-preset-gatsby-package": "^0.8.0-next.0",
28
- "cross-env": "^7.0.2"
27
+ "babel-preset-gatsby-package": "^0.9.0",
28
+ "cross-env": "^7.0.3"
29
29
  },
30
30
  "homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-source-filesystem#readme",
31
31
  "keywords": [
@@ -50,5 +50,5 @@
50
50
  "engines": {
51
51
  "node": ">=10.13.0"
52
52
  },
53
- "gitHead": "9e6091325485bbcbcfa04bccda09170e383ae395"
53
+ "gitHead": "03d497f15bc968d88bb0c85ce427da797b8fc61d"
54
54
  }