mirror of
https://github.com/verdaccio/verdaccio.git
synced 2025-03-25 02:32:52 -05:00
fs-ext@0.4.1
This commit is contained in:
parent
b84bb568cd
commit
64adb19b85
3 changed files with 12 additions and 13 deletions
2
node_modules/fs-ext/fs-ext.cc
generated
vendored
2
node_modules/fs-ext/fs-ext.cc
generated
vendored
|
@ -377,7 +377,7 @@ static NAN_METHOD(Fcntl) {
|
|||
|
||||
if ( ! args[3]->IsFunction()) {
|
||||
int result = fcntl(fd, cmd, arg);
|
||||
if (result == -1) return ThrowException(ErrnoException(errno));
|
||||
if (result == -1) return NanThrowError(ErrnoException(errno));
|
||||
NanReturnValue(NanNew<Number>(result));
|
||||
}
|
||||
|
||||
|
|
21
node_modules/fs-ext/package.json
generated
vendored
21
node_modules/fs-ext/package.json
generated
vendored
|
@ -12,7 +12,7 @@
|
|||
"flock",
|
||||
"seek"
|
||||
],
|
||||
"version": "0.4.0",
|
||||
"version": "0.4.1",
|
||||
"homepage": "https://github.com/baudehlo/node-fs-ext/",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
|
@ -37,16 +37,13 @@
|
|||
"install": "node-gyp configure build",
|
||||
"test": "./run_tests"
|
||||
},
|
||||
"_id": "fs-ext@0.4.0",
|
||||
"dist": {
|
||||
"shasum": "ddc1d710ea7a552bbaead3ecfe0d6ce40028928a",
|
||||
"tarball": "http://registry.npmjs.org/fs-ext/-/fs-ext-0.4.0.tgz"
|
||||
},
|
||||
"_id": "fs-ext@0.4.1",
|
||||
"_shasum": "d925ed5d52af5f0d07fe336335ca8a8e6ea9aa58",
|
||||
"_from": "fs-ext@>=0.3.2 <1.0.0-0",
|
||||
"_npmVersion": "1.4.6",
|
||||
"_npmVersion": "1.4.9",
|
||||
"_npmUser": {
|
||||
"name": "msergeant",
|
||||
"email": "helpme@gmail.com"
|
||||
"email": "helpme+npm@gmail.com"
|
||||
},
|
||||
"maintainers": [
|
||||
{
|
||||
|
@ -54,8 +51,10 @@
|
|||
"email": "helpme@gmail.com"
|
||||
}
|
||||
],
|
||||
"dist": {
|
||||
"shasum": "d925ed5d52af5f0d07fe336335ca8a8e6ea9aa58",
|
||||
"tarball": "http://registry.npmjs.org/fs-ext/-/fs-ext-0.4.1.tgz"
|
||||
},
|
||||
"directories": {},
|
||||
"_shasum": "ddc1d710ea7a552bbaead3ecfe0d6ce40028928a",
|
||||
"_resolved": "https://registry.npmjs.org/fs-ext/-/fs-ext-0.4.0.tgz",
|
||||
"readme": "ERROR: No README data found!"
|
||||
"_resolved": "https://registry.npmjs.org/fs-ext/-/fs-ext-0.4.1.tgz"
|
||||
}
|
||||
|
|
|
@ -52,7 +52,7 @@ dependencies:
|
|||
optionalDependencies:
|
||||
# those are native modules that could fail to compile
|
||||
# and unavailable on windows
|
||||
fs-ext: '>=0.3.2 <1.0.0-0'
|
||||
fs-ext: '>=0.4.1 <1.0.0-0'
|
||||
crypt3: '>=0.1.6 <1.0.0-0' # for sinopia-htpasswd
|
||||
|
||||
# bundling all the deps (but not devDeps)
|
||||
|
|
Loading…
Add table
Reference in a new issue