composer and npm

This commit is contained in:
Henry Whitaker
2020-08-25 00:59:44 +01:00
parent 6726d93cc6
commit c8f853dc84
2504 changed files with 88530 additions and 41367 deletions

View File

@@ -17,7 +17,7 @@ function mkdirP (p, opts, f, made) {
var xfs = opts.fs || fs;
if (mode === undefined) {
mode = _0777 & (~process.umask());
mode = _0777
}
if (!made) made = null;
@@ -62,7 +62,7 @@ mkdirP.sync = function sync (p, opts, made) {
var xfs = opts.fs || fs;
if (mode === undefined) {
mode = _0777 & (~process.umask());
mode = _0777
}
if (!made) made = null;

View File

@@ -1,26 +1,26 @@
{
"_args": [
[
"mkdirp@0.5.4",
"mkdirp@0.5.5",
"/home/henry/Documents/git/Speedtest-tracker-docker/conf/site"
]
],
"_development": true,
"_from": "mkdirp@0.5.4",
"_id": "mkdirp@0.5.4",
"_from": "mkdirp@0.5.5",
"_id": "mkdirp@0.5.5",
"_inBundle": false,
"_integrity": "sha512-iG9AK/dJLtJ0XNgTuDbSyNS3zECqDlAhnQW4CsNxBG3LQJBbHmRX1egw39DmtOdCAqY+dKXV+sgPgilNWUKMVw==",
"_integrity": "sha512-NKmAlESf6jMGym1++R0Ra7wvhV+wFW63FaSOFPwRahvea0gMUcGUhVeAg/0BC0wiv9ih5NYPB1Wn1UEI1/L+xQ==",
"_location": "/mkdirp",
"_phantomChildren": {},
"_requested": {
"type": "version",
"registry": true,
"raw": "mkdirp@0.5.4",
"raw": "mkdirp@0.5.5",
"name": "mkdirp",
"escapedName": "mkdirp",
"rawSpec": "0.5.4",
"rawSpec": "0.5.5",
"saveSpec": null,
"fetchSpec": "0.5.4"
"fetchSpec": "0.5.5"
},
"_requiredBy": [
"/babel-loader",
@@ -33,8 +33,8 @@
"/webpack-dev-middleware",
"/webpack/cacache"
],
"_resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.4.tgz",
"_spec": "0.5.4",
"_resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.5.tgz",
"_spec": "0.5.5",
"_where": "/home/henry/Documents/git/Speedtest-tracker-docker/conf/site",
"author": {
"name": "James Halliday",
@@ -77,5 +77,5 @@
"scripts": {
"test": "tap test/*.js"
},
"version": "0.5.4"
"version": "0.5.5"
}

View File

@@ -37,7 +37,7 @@ Create a new directory and any necessary subdirectories at `dir` with octal
permission string `opts.mode`. If `opts` is a non-object, it will be treated as
the `opts.mode`.
If `opts.mode` isn't specified, it defaults to `0777 & (~process.umask())`.
If `opts.mode` isn't specified, it defaults to `0777`.
`cb(err, made)` fires with the error or the first directory `made`
that had to be created, if any.
@@ -52,7 +52,7 @@ Synchronously create a new directory and any necessary subdirectories at `dir`
with octal permission string `opts.mode`. If `opts` is a non-object, it will be
treated as the `opts.mode`.
If `opts.mode` isn't specified, it defaults to `0777 & (~process.umask())`.
If `opts.mode` isn't specified, it defaults to `0777`.
Returns the first directory that had to be created, if any.