@atlaspack/fs 2.14.1-dev.55 → 2.14.1-dev.74

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaspack/fs",
3
- "version": "2.14.1-dev.55+f298b7f5c",
3
+ "version": "2.14.1-dev.74+ba07f66d9",
4
4
  "description": "Blazing fast, zero configuration web application bundler",
5
5
  "license": "(MIT OR Apache-2.0)",
6
6
  "publishConfig": {
@@ -52,17 +52,17 @@
52
52
  "check-ts": "tsc --noEmit index.d.ts"
53
53
  },
54
54
  "dependencies": {
55
- "@atlaspack/build-cache": "2.13.3-dev.55+f298b7f5c",
56
- "@atlaspack/feature-flags": "2.14.1-dev.55+f298b7f5c",
57
- "@atlaspack/logger": "2.14.1-dev.55+f298b7f5c",
58
- "@atlaspack/rust": "3.0.1-dev.55+f298b7f5c",
59
- "@atlaspack/types-internal": "2.14.1-dev.55+f298b7f5c",
60
- "@atlaspack/utils": "2.14.1-dev.55+f298b7f5c",
61
- "@atlaspack/workers": "2.14.1-dev.55+f298b7f5c",
55
+ "@atlaspack/build-cache": "2.13.3-dev.74+ba07f66d9",
56
+ "@atlaspack/feature-flags": "2.14.1-dev.74+ba07f66d9",
57
+ "@atlaspack/logger": "2.14.1-dev.74+ba07f66d9",
58
+ "@atlaspack/rust": "3.0.1-dev.74+ba07f66d9",
59
+ "@atlaspack/types-internal": "2.14.1-dev.74+ba07f66d9",
60
+ "@atlaspack/utils": "2.14.1-dev.74+ba07f66d9",
61
+ "@atlaspack/workers": "2.14.1-dev.74+ba07f66d9",
62
62
  "@parcel/watcher": "^2.0.7"
63
63
  },
64
64
  "devDependencies": {
65
- "@atlaspack/watcher-watchman-js": "2.14.1-dev.55+f298b7f5c",
65
+ "@atlaspack/watcher-watchman-js": "2.14.1-dev.74+ba07f66d9",
66
66
  "graceful-fs": "^4.2.4",
67
67
  "ncp": "^2.0.0",
68
68
  "nullthrows": "^1.1.1",
@@ -73,5 +73,5 @@
73
73
  "./src/NodeFS.js": "./src/NodeFS.browser.js"
74
74
  },
75
75
  "type": "commonjs",
76
- "gitHead": "f298b7f5cac438d5150790475bde0cb959b3f6a5"
76
+ "gitHead": "ba07f66d98162399b00f736e5f117bd9ec20deae"
77
77
  }
package/src/NodeFS.js CHANGED
@@ -134,7 +134,11 @@ export class NodeFS implements FileSystem {
134
134
 
135
135
  writeStream.once('error', () => {
136
136
  failed = true;
137
- fs.unlinkSync(tmpFilePath);
137
+ try {
138
+ fs.unlinkSync(tmpFilePath);
139
+ } catch (_err) {
140
+ // ignore
141
+ }
138
142
  });
139
143
 
140
144
  return writeStream;