!2 Upgrade version to 0.5.6
From: @cherry530 Reviewed-by: @wang--ge Signed-off-by: @wang--ge
This commit is contained in:
commit
5ca466ddf0
BIN
mkdirp-0.5.1.tgz
BIN
mkdirp-0.5.1.tgz
Binary file not shown.
BIN
mkdirp-0.5.6.tgz
Normal file
BIN
mkdirp-0.5.6.tgz
Normal file
Binary file not shown.
@ -1,60 +0,0 @@
|
|||||||
commit 0cd6cd55664b5979fd546d6f9ae1fbf383a6eaed
|
|
||||||
Author: Tom Hughes <tom@compton.nu>
|
|
||||||
Date: Mon Feb 6 09:35:46 2017 +0000
|
|
||||||
|
|
||||||
Adjust tests for mockfs 4.x changes
|
|
||||||
|
|
||||||
diff --git a/test/opts_fs.js b/test/opts_fs.js
|
|
||||||
index 97186b6..0e9f8ee 100644
|
|
||||||
--- a/test/opts_fs.js
|
|
||||||
+++ b/test/opts_fs.js
|
|
||||||
@@ -2,6 +2,7 @@ var mkdirp = require('../');
|
|
||||||
var path = require('path');
|
|
||||||
var test = require('tap').test;
|
|
||||||
var mockfs = require('mock-fs');
|
|
||||||
+var xfs = require('fs');
|
|
||||||
var _0777 = parseInt('0777', 8);
|
|
||||||
var _0755 = parseInt('0755', 8);
|
|
||||||
|
|
||||||
@@ -12,9 +13,11 @@ test('opts.fs', function (t) {
|
|
||||||
var y = Math.floor(Math.random() * Math.pow(16,4)).toString(16);
|
|
||||||
var z = Math.floor(Math.random() * Math.pow(16,4)).toString(16);
|
|
||||||
|
|
||||||
- var file = '/beep/boop/' + [x,y,z].join('/');
|
|
||||||
- var xfs = mockfs.fs();
|
|
||||||
-
|
|
||||||
+ var file = 'beep/boop/' + [x,y,z].join('/');
|
|
||||||
+
|
|
||||||
+ mockfs();
|
|
||||||
+ t.tearDown(mockfs.restore);
|
|
||||||
+
|
|
||||||
mkdirp(file, { fs: xfs, mode: _0755 }, function (err) {
|
|
||||||
t.ifError(err);
|
|
||||||
xfs.exists(file, function (ex) {
|
|
||||||
diff --git a/test/opts_fs_sync.js b/test/opts_fs_sync.js
|
|
||||||
index 6c370aa..b8cf63a 100644
|
|
||||||
--- a/test/opts_fs_sync.js
|
|
||||||
+++ b/test/opts_fs_sync.js
|
|
||||||
@@ -2,6 +2,7 @@ var mkdirp = require('../');
|
|
||||||
var path = require('path');
|
|
||||||
var test = require('tap').test;
|
|
||||||
var mockfs = require('mock-fs');
|
|
||||||
+var xfs = require('fs');
|
|
||||||
var _0777 = parseInt('0777', 8);
|
|
||||||
var _0755 = parseInt('0755', 8);
|
|
||||||
|
|
||||||
@@ -12,9 +13,11 @@ test('opts.fs sync', function (t) {
|
|
||||||
var y = Math.floor(Math.random() * Math.pow(16,4)).toString(16);
|
|
||||||
var z = Math.floor(Math.random() * Math.pow(16,4)).toString(16);
|
|
||||||
|
|
||||||
- var file = '/beep/boop/' + [x,y,z].join('/');
|
|
||||||
- var xfs = mockfs.fs();
|
|
||||||
-
|
|
||||||
+ var file = 'beep/boop/' + [x,y,z].join('/');
|
|
||||||
+
|
|
||||||
+ mockfs();
|
|
||||||
+ t.tearDown(mockfs.restore);
|
|
||||||
+
|
|
||||||
mkdirp.sync(file, { fs: xfs, mode: _0755 });
|
|
||||||
xfs.exists(file, function (ex) {
|
|
||||||
t.ok(ex, 'created file');
|
|
||||||
@ -1,13 +1,12 @@
|
|||||||
%{?nodejs_find_provides_and_requires}
|
%{?nodejs_find_provides_and_requires}
|
||||||
%global enable_tests 0
|
%global enable_tests 0
|
||||||
Name: nodejs-mkdirp
|
Name: nodejs-mkdirp
|
||||||
Version: 0.5.1
|
Version: 0.5.6
|
||||||
Release: 1
|
Release: 1
|
||||||
Summary: Recursive directory creation module for Node.js
|
Summary: Recursive directory creation module for Node.js
|
||||||
License: MIT
|
License: MIT
|
||||||
URL: https://github.com/substack/node-mkdirp
|
URL: https://github.com/substack/node-mkdirp
|
||||||
Source0: https://registry.npmjs.org/mkdirp/-/mkdirp-%{version}.tgz
|
Source0: https://registry.npmjs.org/mkdirp/-/mkdirp-%{version}.tgz
|
||||||
Patch0: nodejs-mkdirp-mockfs4.patch
|
|
||||||
BuildArch: noarch
|
BuildArch: noarch
|
||||||
ExclusiveArch: %{nodejs_arches} noarch
|
ExclusiveArch: %{nodejs_arches} noarch
|
||||||
BuildRequires: nodejs-packaging
|
BuildRequires: nodejs-packaging
|
||||||
@ -35,10 +34,13 @@ cp -pr index.js package.json %{buildroot}%{nodejs_sitelib}/mkdirp
|
|||||||
%endif
|
%endif
|
||||||
|
|
||||||
%files
|
%files
|
||||||
%doc readme.markdown examples
|
%doc readme.markdown
|
||||||
%license LICENSE
|
%license LICENSE
|
||||||
%{nodejs_sitelib}/mkdirp
|
%{nodejs_sitelib}/mkdirp
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Fri Nov 10 2023 xu_ping <707078654@qq.com> - 0.5.6-1
|
||||||
|
- Upgrade version to 0.5.6
|
||||||
|
|
||||||
* Mon Aug 17 2020 wutao <wutao61@huawei.com> - 0.5.1-1
|
* Mon Aug 17 2020 wutao <wutao61@huawei.com> - 0.5.1-1
|
||||||
- Package init
|
- Package init
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user