Comparing version 3.0.4 to 3.0.5
const tar = require('tar-stream') | ||
const pump = require('pump') | ||
const mkdirp = require('mkdirp-classic') | ||
const fs = require('fs') | ||
const path = require('path') | ||
const win32 = process.platform === 'win32' | ||
const win32 = (global.Bare?.platform || process.platform) === 'win32' | ||
@@ -301,3 +300,3 @@ exports.pack = function pack (cwd, opts) { | ||
if (err.code !== 'ENOENT') return cb(err) | ||
mkdirp(name, { fs: opts.fs, mode: opts.mode }, function (err, made) { | ||
xfs.mkdir(name, { mode: opts.mode, recursive: true }, function (err, made) { | ||
if (err) return cb(err) | ||
@@ -304,0 +303,0 @@ chperm(name, opts, cb) |
{ | ||
"name": "tar-fs", | ||
"version": "3.0.4", | ||
"version": "3.0.5", | ||
"description": "filesystem bindings for tar-stream", | ||
"dependencies": { | ||
"mkdirp-classic": "^0.5.2", | ||
"pump": "^3.0.0", | ||
"tar-stream": "^3.1.5" | ||
}, | ||
"optionalDependencies": { | ||
"bare-fs": "^2.1.1", | ||
"bare-path": "^2.1.0" | ||
}, | ||
"imports": { | ||
"fs": { | ||
"bare": "bare-fs", | ||
"default": "fs" | ||
}, | ||
"path": { | ||
"bare": "bare-path", | ||
"default": "path" | ||
} | ||
}, | ||
"files": [ | ||
@@ -11,0 +24,0 @@ "index.js" |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
16846
4
292
+ Addedbare-fs@2.3.5(transitive)
+ Addedbare-os@2.4.4(transitive)
+ Addedbare-path@2.1.3(transitive)
+ Addedbare-stream@2.3.2(transitive)
- Removedmkdirp-classic@^0.5.2
- Removedmkdirp-classic@0.5.3(transitive)