Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
N
nebula
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
exchain
nebula
Commits
1626cb48
Commit
1626cb48
authored
Jun 28, 2021
by
Liam Horne
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
build: ensure lint only staged files on commit
parent
b7738bf5
Changes
19
Hide whitespace changes
Inline
Side-by-side
Showing
19 changed files
with
209 additions
and
152 deletions
+209
-152
pre-commit
.husky/pre-commit
+1
-1
.lintstagedrc.yml
packages/batch-submitter/.lintstagedrc.yml
+6
-0
package.json
packages/batch-submitter/package.json
+3
-1
.lintstagedrc.yml
packages/common-ts/.lintstagedrc.yml
+4
-0
package.json
packages/common-ts/package.json
+2
-1
.lintstagedrc.yml
packages/contracts/.lintstagedrc.yml
+6
-0
package.json
packages/contracts/package.json
+3
-1
.lintstagedrc.yml
packages/core-utils/.lintstagedrc.yml
+4
-0
package.json
packages/core-utils/package.json
+3
-1
.lintstagedrc.yml
packages/data-transport-layer/.lintstagedrc.yml
+4
-0
package.json
packages/data-transport-layer/package.json
+3
-1
.lintstagedrc.yml
packages/hardhat-ovm/.lintstagedrc.yml
+2
-0
package.json
packages/hardhat-ovm/package.json
+4
-2
.lintstagedrc.yml
packages/message-relayer/.lintstagedrc.yml
+6
-0
package.json
packages/message-relayer/package.json
+4
-2
.lintstagedrc.yml
packages/smock/.lintstagedrc.yml
+4
-0
package.json
packages/smock/package.json
+4
-2
package.json
specs/package.json
+2
-1
yarn.lock
yarn.lock
+144
-139
No files found.
.husky/pre-commit
View file @
1626cb48
#!/bin/sh
#!/bin/sh
.
"
$(
dirname
"
$0
"
)
/_/husky.sh"
.
"
$(
dirname
"
$0
"
)
/_/husky.sh"
yarn l
int:check
yarn l
erna run
--stream
pre-commit
--since
HEAD
--exclude-dependents
packages/batch-submitter/.lintstagedrc.yml
0 → 100644
View file @
1626cb48
src/**/*.ts
:
-
eslint --fix
test/**/*.ts
:
-
eslint --fix
exec/*.js
:
-
eslint --fix
packages/batch-submitter/package.json
View file @
1626cb48
...
@@ -15,7 +15,8 @@
...
@@ -15,7 +15,8 @@
"lint"
:
"yarn lint:fix && yarn lint:check"
,
"lint"
:
"yarn lint:fix && yarn lint:check"
,
"lint:fix"
:
"prettier --config .prettierrc.json --write
\"
hardhat.config.ts
\"
\"
{src,exec,test}/**/*.ts
\"
"
,
"lint:fix"
:
"prettier --config .prettierrc.json --write
\"
hardhat.config.ts
\"
\"
{src,exec,test}/**/*.ts
\"
"
,
"lint:check"
:
"eslint -c .eslintrc.js --ext .ts --format stylish ."
,
"lint:check"
:
"eslint -c .eslintrc.js --ext .ts --format stylish ."
,
"test"
:
"hardhat test --show-stack-traces"
"test"
:
"hardhat test --show-stack-traces"
,
"pre-commit"
:
"lint-staged"
},
},
"keywords"
:
[
"keywords"
:
[
"optimism"
,
"optimism"
,
...
@@ -73,6 +74,7 @@
...
@@ -73,6 +74,7 @@
"hardhat"
:
"^2.2.1"
,
"hardhat"
:
"^2.2.1"
,
"mocha"
:
"^6.1.4"
,
"mocha"
:
"^6.1.4"
,
"prettier"
:
"^2.2.1"
,
"prettier"
:
"^2.2.1"
,
"lint-staged"
:
"11.0.0"
,
"rimraf"
:
"^2.6.3"
,
"rimraf"
:
"^2.6.3"
,
"sinon"
:
"^9.2.4"
,
"sinon"
:
"^9.2.4"
,
"sinon-chai"
:
"^3.5.0"
,
"sinon-chai"
:
"^3.5.0"
,
...
...
packages/common-ts/.lintstagedrc.yml
0 → 100644
View file @
1626cb48
src/**/*.ts
:
-
eslint --fix
test/**/*.ts
:
-
eslint --fix
packages/common-ts/package.json
View file @
1626cb48
...
@@ -15,7 +15,8 @@
...
@@ -15,7 +15,8 @@
"lint"
:
"yarn lint:fix && yarn lint:check"
,
"lint"
:
"yarn lint:fix && yarn lint:check"
,
"lint:fix"
:
"prettier --config .prettierrc.json --write '{src,test}/**/*.ts'"
,
"lint:fix"
:
"prettier --config .prettierrc.json --write '{src,test}/**/*.ts'"
,
"lint:check"
:
"eslint -c .eslintrc.js --ext .ts --format stylish ."
,
"lint:check"
:
"eslint -c .eslintrc.js --ext .ts --format stylish ."
,
"test"
:
"ts-mocha test/*.spec.ts"
"test"
:
"ts-mocha test/*.spec.ts"
,
"pre-commit"
:
"lint-staged"
},
},
"devDependencies"
:
{
"devDependencies"
:
{
"@types/chai"
:
"^4.2.18"
,
"@types/chai"
:
"^4.2.18"
,
...
...
packages/contracts/.lintstagedrc.yml
0 → 100644
View file @
1626cb48
src/**/*.ts
:
-
eslint --fix
test/**/*.ts
:
-
eslint --fix
deploy/*.ts
:
-
eslint --fix
packages/contracts/package.json
View file @
1626cb48
...
@@ -47,7 +47,8 @@
...
@@ -47,7 +47,8 @@
"postpublish"
:
"rimraf OVM iOVM libraries mockOVM"
,
"postpublish"
:
"rimraf OVM iOVM libraries mockOVM"
,
"prepack"
:
"yarn prepublishOnly"
,
"prepack"
:
"yarn prepublishOnly"
,
"postpack"
:
"yarn postpublish"
,
"postpack"
:
"yarn postpublish"
,
"generate-markdown"
:
"node
\"
./scripts/generate-markdown.js
\"
"
"generate-markdown"
:
"node
\"
./scripts/generate-markdown.js
\"
"
,
"pre-commit"
:
"lint-staged"
},
},
"dependencies"
:
{
"dependencies"
:
{
"@eth-optimism/core-utils"
:
"^0.4.6"
,
"@eth-optimism/core-utils"
:
"^0.4.6"
,
...
@@ -102,6 +103,7 @@
...
@@ -102,6 +103,7 @@
"mkdirp"
:
"^1.0.4"
,
"mkdirp"
:
"^1.0.4"
,
"mocha"
:
"^8.3.0"
,
"mocha"
:
"^8.3.0"
,
"prettier"
:
"^2.2.1"
,
"prettier"
:
"^2.2.1"
,
"lint-staged"
:
"11.0.0"
,
"random-bytes-seed"
:
"^1.0.3"
,
"random-bytes-seed"
:
"^1.0.3"
,
"rlp"
:
"^2.2.6"
,
"rlp"
:
"^2.2.6"
,
"solidity-coverage"
:
"^0.7.16"
,
"solidity-coverage"
:
"^0.7.16"
,
...
...
packages/core-utils/.lintstagedrc.yml
0 → 100644
View file @
1626cb48
src/**/*.ts
:
-
eslint --fix
test/**/*.ts
:
-
eslint --fix
packages/core-utils/package.json
View file @
1626cb48
...
@@ -16,7 +16,8 @@
...
@@ -16,7 +16,8 @@
"lint"
:
"yarn lint:fix && yarn lint:check"
,
"lint"
:
"yarn lint:fix && yarn lint:check"
,
"lint:fix"
:
"prettier --config .prettierrc.json --write '{src,test}/**/*.ts'"
,
"lint:fix"
:
"prettier --config .prettierrc.json --write '{src,test}/**/*.ts'"
,
"lint:check"
:
"eslint -c .eslintrc.js --ext .ts --format stylish ."
,
"lint:check"
:
"eslint -c .eslintrc.js --ext .ts --format stylish ."
,
"test"
:
"ts-mocha test/**/*.spec.ts"
"test"
:
"ts-mocha test/**/*.spec.ts"
,
"pre-commit"
:
"lint-staged"
},
},
"devDependencies"
:
{
"devDependencies"
:
{
"@types/chai"
:
"^4.2.17"
,
"@types/chai"
:
"^4.2.17"
,
...
@@ -36,6 +37,7 @@
...
@@ -36,6 +37,7 @@
"eslint-plugin-unicorn"
:
"^32.0.1"
,
"eslint-plugin-unicorn"
:
"^32.0.1"
,
"mocha"
:
"^8.3.0"
,
"mocha"
:
"^8.3.0"
,
"prettier"
:
"^2.2.1"
,
"prettier"
:
"^2.2.1"
,
"lint-staged"
:
"11.0.0"
,
"ts-mocha"
:
"^8.0.0"
,
"ts-mocha"
:
"^8.0.0"
,
"typescript"
:
"^4.2.3"
"typescript"
:
"^4.2.3"
},
},
...
...
packages/data-transport-layer/.lintstagedrc.yml
0 → 100644
View file @
1626cb48
src/**/*.ts
:
-
eslint --fix
test/**/*.ts
:
-
eslint --fix
packages/data-transport-layer/package.json
View file @
1626cb48
...
@@ -18,7 +18,8 @@
...
@@ -18,7 +18,8 @@
"start"
:
"ts-node ./src/services/run.ts"
,
"start"
:
"ts-node ./src/services/run.ts"
,
"start:local"
:
"ts-node ./src/services/run.ts | pino-pretty"
,
"start:local"
:
"ts-node ./src/services/run.ts | pino-pretty"
,
"test"
:
"hardhat --config test/config/hardhat.config.ts test"
,
"test"
:
"hardhat --config test/config/hardhat.config.ts test"
,
"build"
:
"tsc -p tsconfig.build.json"
"build"
:
"tsc -p tsconfig.build.json"
,
"pre-commit"
:
"lint-staged"
},
},
"dependencies"
:
{
"dependencies"
:
{
"@eth-optimism/common-ts"
:
"^0.1.4"
,
"@eth-optimism/common-ts"
:
"^0.1.4"
,
...
@@ -69,6 +70,7 @@
...
@@ -69,6 +70,7 @@
"mocha"
:
"^8.3.2"
,
"mocha"
:
"^8.3.2"
,
"pino-pretty"
:
"^4.7.1"
,
"pino-pretty"
:
"^4.7.1"
,
"prettier"
:
"^2.2.1"
,
"prettier"
:
"^2.2.1"
,
"lint-staged"
:
"11.0.0"
,
"prom-client"
:
"^13.1.0"
,
"prom-client"
:
"^13.1.0"
,
"rimraf"
:
"^3.0.2"
,
"rimraf"
:
"^3.0.2"
,
"ts-node"
:
"^9.1.1"
,
"ts-node"
:
"^9.1.1"
,
...
...
packages/hardhat-ovm/.lintstagedrc.yml
0 → 100644
View file @
1626cb48
src/**/*.ts
:
-
eslint --fix
packages/hardhat-ovm/package.json
View file @
1626cb48
...
@@ -13,7 +13,8 @@
...
@@ -13,7 +13,8 @@
"build"
:
"tsc -p tsconfig.build.json"
,
"build"
:
"tsc -p tsconfig.build.json"
,
"lint"
:
"yarn run lint:fix && yarn run lint:check"
,
"lint"
:
"yarn run lint:fix && yarn run lint:check"
,
"lint:fix"
:
"prettier --config .prettierrc.json --write
\"
{src,test}/**/*.ts
\"
"
,
"lint:fix"
:
"prettier --config .prettierrc.json --write
\"
{src,test}/**/*.ts
\"
"
,
"lint:check"
:
"eslint -c .eslintrc.js --ext .ts --format stylish ."
"lint:check"
:
"eslint -c .eslintrc.js --ext .ts --format stylish ."
,
"pre-commit"
:
"lint-staged"
},
},
"dependencies"
:
{
"dependencies"
:
{
"node-fetch"
:
"^2.6.1"
"node-fetch"
:
"^2.6.1"
...
@@ -35,6 +36,7 @@
...
@@ -35,6 +36,7 @@
"eslint-plugin-prefer-arrow"
:
"^1.2.3"
,
"eslint-plugin-prefer-arrow"
:
"^1.2.3"
,
"eslint-plugin-react"
:
"^7.24.0"
,
"eslint-plugin-react"
:
"^7.24.0"
,
"eslint-plugin-unicorn"
:
"^32.0.1"
,
"eslint-plugin-unicorn"
:
"^32.0.1"
,
"prettier"
:
"^2.2.1"
"prettier"
:
"^2.2.1"
,
"lint-staged"
:
"11.0.0"
}
}
}
}
packages/message-relayer/.lintstagedrc.yml
0 → 100644
View file @
1626cb48
src/**/*.ts
:
-
eslint --fix
test/**/*.ts
:
-
eslint --fix
exec/*.js
:
-
eslint --fix
packages/message-relayer/package.json
View file @
1626cb48
...
@@ -14,7 +14,8 @@
...
@@ -14,7 +14,8 @@
"lint"
:
"yarn lint:fix && yarn lint:check"
,
"lint"
:
"yarn lint:fix && yarn lint:check"
,
"lint:fix"
:
"prettier --config .prettierrc.json --write
\"
{src,exec,test}/**/*.ts
\"
"
,
"lint:fix"
:
"prettier --config .prettierrc.json --write
\"
{src,exec,test}/**/*.ts
\"
"
,
"lint:check"
:
"eslint -c .eslintrc.js --ext .ts --format stylish ."
,
"lint:check"
:
"eslint -c .eslintrc.js --ext .ts --format stylish ."
,
"test"
:
"hardhat test --show-stack-traces"
"test"
:
"hardhat test --show-stack-traces"
,
"pre-commit"
:
"lint-staged"
},
},
"keywords"
:
[
"keywords"
:
[
"optimism"
,
"optimism"
,
...
@@ -62,6 +63,7 @@
...
@@ -62,6 +63,7 @@
"lodash"
:
"^4.17.21"
,
"lodash"
:
"^4.17.21"
,
"mocha"
:
"^8.4.0"
,
"mocha"
:
"^8.4.0"
,
"eslint"
:
"^7.27.0"
,
"eslint"
:
"^7.27.0"
,
"prettier"
:
"^2.2.1"
"prettier"
:
"^2.2.1"
,
"lint-staged"
:
"11.0.0"
}
}
}
}
packages/smock/.lintstagedrc.yml
0 → 100644
View file @
1626cb48
src/**/*.ts
:
-
eslint --fix
test/**/*.ts
:
-
eslint --fix
packages/smock/package.json
View file @
1626cb48
...
@@ -14,7 +14,8 @@
...
@@ -14,7 +14,8 @@
"lint"
:
"yarn lint:fix && yarn lint:check"
,
"lint"
:
"yarn lint:fix && yarn lint:check"
,
"lint:fix"
:
"prettier --config ./.prettierrc.json --write
\"
hardhat.config.ts
\"
\"
{src,test}/**/*.ts
\"
"
,
"lint:fix"
:
"prettier --config ./.prettierrc.json --write
\"
hardhat.config.ts
\"
\"
{src,test}/**/*.ts
\"
"
,
"lint:check"
:
"eslint -c .eslintrc.js --ext .ts --format stylish ."
,
"lint:check"
:
"eslint -c .eslintrc.js --ext .ts --format stylish ."
,
"clean"
:
"rimraf ./artifacts ./cache ./dist ./tsconfig.build.tsbuildinfo"
"clean"
:
"rimraf ./artifacts ./cache ./dist ./tsconfig.build.tsbuildinfo"
,
"pre-commit"
:
"lint-staged"
},
},
"peerDependencies"
:
{
"peerDependencies"
:
{
"@ethersproject/abi"
:
"^5"
,
"@ethersproject/abi"
:
"^5"
,
...
@@ -56,6 +57,7 @@
...
@@ -56,6 +57,7 @@
"ethers"
:
"^5.0.31"
,
"ethers"
:
"^5.0.31"
,
"hardhat"
:
"^2.4.0"
,
"hardhat"
:
"^2.4.0"
,
"lodash"
:
"^4.17.20"
,
"lodash"
:
"^4.17.20"
,
"prettier"
:
"^2.2.1"
"prettier"
:
"^2.2.1"
,
"lint-staged"
:
"11.0.0"
}
}
}
}
specs/package.json
View file @
1626cb48
...
@@ -5,7 +5,8 @@
...
@@ -5,7 +5,8 @@
"private"
:
true
,
"private"
:
true
,
"devDependencies"
:
{
"devDependencies"
:
{
"@types/prettier"
:
"2.2.1"
,
"@types/prettier"
:
"2.2.1"
,
"prettier"
:
"^2.2.1"
"prettier"
:
"^2.2.1"
,
"lint-staged"
:
"11.0.0"
},
},
"scripts"
:
{
"scripts"
:
{
"lint"
:
"yarn lint:fix && yarn lint:check"
,
"lint"
:
"yarn lint:fix && yarn lint:check"
,
...
...
yarn.lock
View file @
1626cb48
...
@@ -2207,17 +2207,6 @@
...
@@ -2207,17 +2207,6 @@
path-browserify "^1.0.0"
path-browserify "^1.0.0"
url "^0.11.0"
url "^0.11.0"
"@sentry/core@5.30.0":
version "5.30.0"
resolved "https://registry.yarnpkg.com/@sentry/core/-/core-5.30.0.tgz#6b203664f69e75106ee8b5a2fe1d717379b331f3"
integrity sha512-TmfrII8w1PQZSZgPpUESqjB+jC6MvZJZdLtE/0hZ+SrnKhW3x5WlYLvTXZpcWePYBku7rl2wn1RZu6uT0qCTeg==
dependencies:
"@sentry/hub" "5.30.0"
"@sentry/minimal" "5.30.0"
"@sentry/types" "5.30.0"
"@sentry/utils" "5.30.0"
tslib "^1.9.3"
"@sentry/core@6.2.5":
"@sentry/core@6.2.5":
version "6.2.5"
version "6.2.5"
resolved "https://registry.yarnpkg.com/@sentry/core/-/core-6.2.5.tgz#e75093f8598becc0a4a0be927f32f7ac49e8588f"
resolved "https://registry.yarnpkg.com/@sentry/core/-/core-6.2.5.tgz#e75093f8598becc0a4a0be927f32f7ac49e8588f"
...
@@ -2229,26 +2218,6 @@
...
@@ -2229,26 +2218,6 @@
"@sentry/utils" "6.2.5"
"@sentry/utils" "6.2.5"
tslib "^1.9.3"
tslib "^1.9.3"
"@sentry/core@6.6.0":
version "6.6.0"
resolved "https://registry.yarnpkg.com/@sentry/core/-/core-6.6.0.tgz#51661d2dd5023d6cd07467422de1854282ced7e5"
integrity sha512-EjdeT6paAdxAZgfsVCB8wneahQF3nAUt9GxOJxaOBUv8BSc3HQ/svcTU3RU7k8YsP26PseEOIsedaxsEVZ+7og==
dependencies:
"@sentry/hub" "6.6.0"
"@sentry/minimal" "6.6.0"
"@sentry/types" "6.6.0"
"@sentry/utils" "6.6.0"
tslib "^1.9.3"
"@sentry/hub@5.30.0":
version "5.30.0"
resolved "https://registry.yarnpkg.com/@sentry/hub/-/hub-5.30.0.tgz#2453be9b9cb903404366e198bd30c7ca74cdc100"
integrity sha512-2tYrGnzb1gKz2EkMDQcfLrDTvmGcQPuWxLnJKXJvYTQDGLlEvi2tWz1VIHjunmOvJrB5aIQLhm+dcMRwFZDCqQ==
dependencies:
"@sentry/types" "5.30.0"
"@sentry/utils" "5.30.0"
tslib "^1.9.3"
"@sentry/hub@6.2.5":
"@sentry/hub@6.2.5":
version "6.2.5"
version "6.2.5"
resolved "https://registry.yarnpkg.com/@sentry/hub/-/hub-6.2.5.tgz#324cae0c90d736cd1032e94104bf3f18becec4d6"
resolved "https://registry.yarnpkg.com/@sentry/hub/-/hub-6.2.5.tgz#324cae0c90d736cd1032e94104bf3f18becec4d6"
...
@@ -2267,24 +2236,6 @@
...
@@ -2267,24 +2236,6 @@
"@sentry/utils" "6.3.1"
"@sentry/utils" "6.3.1"
tslib "^1.9.3"
tslib "^1.9.3"
"@sentry/hub@6.6.0":
version "6.6.0"
resolved "https://registry.yarnpkg.com/@sentry/hub/-/hub-6.6.0.tgz#1b9fa22ee104b7d6afd2dc4c40a1459fda259366"
integrity sha512-1Yw0kbxcvO7njZUDGvCKB6DxU5jQio7Be3Kx5qxwcx8ojpT9lo9p+IYZajgl6zQqkjjbVm/4SoYqU24ozu5vxw==
dependencies:
"@sentry/types" "6.6.0"
"@sentry/utils" "6.6.0"
tslib "^1.9.3"
"@sentry/minimal@5.30.0":
version "5.30.0"
resolved "https://registry.yarnpkg.com/@sentry/minimal/-/minimal-5.30.0.tgz#ce3d3a6a273428e0084adcb800bc12e72d34637b"
integrity sha512-BwWb/owZKtkDX+Sc4zCSTNcvZUq7YcH3uAVlmh/gtR9rmUvbzAA3ewLuB3myi4wWRAMEtny6+J/FN/x+2wn9Xw==
dependencies:
"@sentry/hub" "5.30.0"
"@sentry/types" "5.30.0"
tslib "^1.9.3"
"@sentry/minimal@6.2.5":
"@sentry/minimal@6.2.5":
version "6.2.5"
version "6.2.5"
resolved "https://registry.yarnpkg.com/@sentry/minimal/-/minimal-6.2.5.tgz#3e963e868bfa68e97581403521fd4e09a8965b02"
resolved "https://registry.yarnpkg.com/@sentry/minimal/-/minimal-6.2.5.tgz#3e963e868bfa68e97581403521fd4e09a8965b02"
...
@@ -2303,16 +2254,7 @@
...
@@ -2303,16 +2254,7 @@
"@sentry/types" "6.3.1"
"@sentry/types" "6.3.1"
tslib "^1.9.3"
tslib "^1.9.3"
"@sentry/minimal@6.6.0":
"@sentry/node@6.2.5", "@sentry/node@^5.18.1", "@sentry/node@^6.2.5", "@sentry/node@^6.3.1":
version "6.6.0"
resolved "https://registry.yarnpkg.com/@sentry/minimal/-/minimal-6.6.0.tgz#48684734e3c380e5e63a9357d05f0c18bae84419"
integrity sha512-xVBlZIDxSvHvNdvD5KmjTf8Xgi78vLpT4xqJaDUkW7B+DqWMVJZe5aUdQmcp7X/zWxctBwyMKsdHO7oiHkpS+Q==
dependencies:
"@sentry/hub" "6.6.0"
"@sentry/types" "6.6.0"
tslib "^1.9.3"
"@sentry/node@6.2.5", "@sentry/node@^6.2.5":
version "6.2.5"
version "6.2.5"
resolved "https://registry.yarnpkg.com/@sentry/node/-/node-6.2.5.tgz#6e6694c0c3ce6ca231710f40da0cac7fd5c645ef"
resolved "https://registry.yarnpkg.com/@sentry/node/-/node-6.2.5.tgz#6e6694c0c3ce6ca231710f40da0cac7fd5c645ef"
integrity sha512-/iM3khzGnUH713VFhZBAEYJhb/saEQSVz7Udogml+O7mFQ4rutnwJhgoGcB9YYrwMv2m7qOSszkdZbemDV6k2g==
integrity sha512-/iM3khzGnUH713VFhZBAEYJhb/saEQSVz7Udogml+O7mFQ4rutnwJhgoGcB9YYrwMv2m7qOSszkdZbemDV6k2g==
...
@@ -2327,47 +2269,6 @@
...
@@ -2327,47 +2269,6 @@
lru_map "^0.3.3"
lru_map "^0.3.3"
tslib "^1.9.3"
tslib "^1.9.3"
"@sentry/node@^5.18.1":
version "5.30.0"
resolved "https://registry.yarnpkg.com/@sentry/node/-/node-5.30.0.tgz#4ca479e799b1021285d7fe12ac0858951c11cd48"
integrity sha512-Br5oyVBF0fZo6ZS9bxbJZG4ApAjRqAnqFFurMVJJdunNb80brh7a5Qva2kjhm+U6r9NJAB5OmDyPkA1Qnt+QVg==
dependencies:
"@sentry/core" "5.30.0"
"@sentry/hub" "5.30.0"
"@sentry/tracing" "5.30.0"
"@sentry/types" "5.30.0"
"@sentry/utils" "5.30.0"
cookie "^0.4.1"
https-proxy-agent "^5.0.0"
lru_map "^0.3.3"
tslib "^1.9.3"
"@sentry/node@^6.3.1":
version "6.6.0"
resolved "https://registry.yarnpkg.com/@sentry/node/-/node-6.6.0.tgz#e535e1e679cf894752810529ffdee93cbfd078f0"
integrity sha512-heKie/AOanYq3mCsKR1igPn1sUIxBmGibBp79Xc0iSAgliPKnnLkqUjvAIKu6mcevL9UOUhpMDLzhilkaG+bAA==
dependencies:
"@sentry/core" "6.6.0"
"@sentry/hub" "6.6.0"
"@sentry/tracing" "6.6.0"
"@sentry/types" "6.6.0"
"@sentry/utils" "6.6.0"
cookie "^0.4.1"
https-proxy-agent "^5.0.0"
lru_map "^0.3.3"
tslib "^1.9.3"
"@sentry/tracing@5.30.0":
version "5.30.0"
resolved "https://registry.yarnpkg.com/@sentry/tracing/-/tracing-5.30.0.tgz#501d21f00c3f3be7f7635d8710da70d9419d4e1f"
integrity sha512-dUFowCr0AIMwiLD7Fs314Mdzcug+gBVo/+NCMyDw8tFxJkwWAKl7Qa2OZxLQ0ZHjakcj1hNKfCQJ9rhyfOl4Aw==
dependencies:
"@sentry/hub" "5.30.0"
"@sentry/minimal" "5.30.0"
"@sentry/types" "5.30.0"
"@sentry/utils" "5.30.0"
tslib "^1.9.3"
"@sentry/tracing@6.2.5":
"@sentry/tracing@6.2.5":
version "6.2.5"
version "6.2.5"
resolved "https://registry.yarnpkg.com/@sentry/tracing/-/tracing-6.2.5.tgz#3f5dadfdccdb5c1fb2eef68458c7c34329b0a34a"
resolved "https://registry.yarnpkg.com/@sentry/tracing/-/tracing-6.2.5.tgz#3f5dadfdccdb5c1fb2eef68458c7c34329b0a34a"
...
@@ -2379,17 +2280,6 @@
...
@@ -2379,17 +2280,6 @@
"@sentry/utils" "6.2.5"
"@sentry/utils" "6.2.5"
tslib "^1.9.3"
tslib "^1.9.3"
"@sentry/tracing@6.6.0":
version "6.6.0"
resolved "https://registry.yarnpkg.com/@sentry/tracing/-/tracing-6.6.0.tgz#ce62fcb951faa6447cf47889f91efe3617b9eed2"
integrity sha512-tjXrmAOFfVBfx+ZmgE5bkpDPs/euNj0xrUg8MowCWGfCRn01W679tTb+dyNeP6faxQTo2RcaD68xD8oLroJwwA==
dependencies:
"@sentry/hub" "6.6.0"
"@sentry/minimal" "6.6.0"
"@sentry/types" "6.6.0"
"@sentry/utils" "6.6.0"
tslib "^1.9.3"
"@sentry/tracing@^6.3.1":
"@sentry/tracing@^6.3.1":
version "6.3.1"
version "6.3.1"
resolved "https://registry.yarnpkg.com/@sentry/tracing/-/tracing-6.3.1.tgz#3b96aabf4d9cebadfec070c006db79801a68ee24"
resolved "https://registry.yarnpkg.com/@sentry/tracing/-/tracing-6.3.1.tgz#3b96aabf4d9cebadfec070c006db79801a68ee24"
...
@@ -2401,11 +2291,6 @@
...
@@ -2401,11 +2291,6 @@
"@sentry/utils" "6.3.1"
"@sentry/utils" "6.3.1"
tslib "^1.9.3"
tslib "^1.9.3"
"@sentry/types@5.30.0":
version "5.30.0"
resolved "https://registry.yarnpkg.com/@sentry/types/-/types-5.30.0.tgz#19709bbe12a1a0115bc790b8942917da5636f402"
integrity sha512-R8xOqlSTZ+htqrfteCWU5Nk0CDN5ApUTvrlvBuiH1DyP6czDZ4ktbZB0hAgBlVcK0U+qpD3ag3Tqqpa5Q67rPw==
"@sentry/types@6.2.5":
"@sentry/types@6.2.5":
version "6.2.5"
version "6.2.5"
resolved "https://registry.yarnpkg.com/@sentry/types/-/types-6.2.5.tgz#34b75285b149e0b9bc5fd54fcc2c445d978c7f2e"
resolved "https://registry.yarnpkg.com/@sentry/types/-/types-6.2.5.tgz#34b75285b149e0b9bc5fd54fcc2c445d978c7f2e"
...
@@ -2416,19 +2301,6 @@
...
@@ -2416,19 +2301,6 @@
resolved "https://registry.yarnpkg.com/@sentry/types/-/types-6.3.1.tgz#af3b54728b29f633f38fbe51b8c10e3834fbc158"
resolved "https://registry.yarnpkg.com/@sentry/types/-/types-6.3.1.tgz#af3b54728b29f633f38fbe51b8c10e3834fbc158"
integrity sha512-BEBn8JX1yaooCAuonbaMci9z0RjwwMbQ3Eny/eyDdd+rjXprZCZaStZnCvSThbNBqAJ8YaUqY2YBMnEwJxarAw==
integrity sha512-BEBn8JX1yaooCAuonbaMci9z0RjwwMbQ3Eny/eyDdd+rjXprZCZaStZnCvSThbNBqAJ8YaUqY2YBMnEwJxarAw==
"@sentry/types@6.6.0":
version "6.6.0"
resolved "https://registry.yarnpkg.com/@sentry/types/-/types-6.6.0.tgz#55cbca23859bad87411f0f32135a968e6e40a639"
integrity sha512-lZ1uFN0lSNftAohi0lciEoSL58Gk/Ib1lLKaj0FSOvB1PAUmvo5dPtLdd0qjtNdtoaM8zqhrAbwCTQ8XZCDRsg==
"@sentry/utils@5.30.0":
version "5.30.0"
resolved "https://registry.yarnpkg.com/@sentry/utils/-/utils-5.30.0.tgz#9a5bd7ccff85ccfe7856d493bffa64cabc41e980"
integrity sha512-zaYmoH0NWWtvnJjC9/CBseXMtKHm/tm40sz3YfJRxeQjyzRqNQPgivpd9R/oDJCYj999mzdW382p/qi2ypjLww==
dependencies:
"@sentry/types" "5.30.0"
tslib "^1.9.3"
"@sentry/utils@6.2.5":
"@sentry/utils@6.2.5":
version "6.2.5"
version "6.2.5"
resolved "https://registry.yarnpkg.com/@sentry/utils/-/utils-6.2.5.tgz#be90d056b09ed1216097d7a29e3e81ba39238e1b"
resolved "https://registry.yarnpkg.com/@sentry/utils/-/utils-6.2.5.tgz#be90d056b09ed1216097d7a29e3e81ba39238e1b"
...
@@ -2445,14 +2317,6 @@
...
@@ -2445,14 +2317,6 @@
"@sentry/types" "6.3.1"
"@sentry/types" "6.3.1"
tslib "^1.9.3"
tslib "^1.9.3"
"@sentry/utils@6.6.0":
version "6.6.0"
resolved "https://registry.yarnpkg.com/@sentry/utils/-/utils-6.6.0.tgz#b34d342d05eefc25b7ddd3f27f41c050f1e7e1ef"
integrity sha512-FK9yqz2x+ef50B54tueeJ6mfb7Pf3lN75omx/YQBDL5cicyOV4j4kJDqn8/VKYhcSuX+ZaCZ/8bvOf0lxe0aHg==
dependencies:
"@sentry/types" "6.6.0"
tslib "^1.9.3"
"@sindresorhus/is@^0.14.0":
"@sindresorhus/is@^0.14.0":
version "0.14.0"
version "0.14.0"
resolved "https://registry.yarnpkg.com/@sindresorhus/is/-/is-0.14.0.tgz#9fb3a3cf3132328151f353de4632e01e52102bea"
resolved "https://registry.yarnpkg.com/@sindresorhus/is/-/is-0.14.0.tgz#9fb3a3cf3132328151f353de4632e01e52102bea"
...
@@ -4692,6 +4556,14 @@ chalk@^4.0.0, chalk@^4.1.0:
...
@@ -4692,6 +4556,14 @@ chalk@^4.0.0, chalk@^4.1.0:
ansi-styles "^4.1.0"
ansi-styles "^4.1.0"
supports-color "^7.1.0"
supports-color "^7.1.0"
chalk@^4.1.1:
version "4.1.1"
resolved "https://registry.yarnpkg.com/chalk/-/chalk-4.1.1.tgz#c80b3fab28bf6371e6863325eee67e618b77e6ad"
integrity sha512-diHzdDKxcU+bAsUboHLPEDQiw0qEe0qd7SYUn3HgcFlWgbDcfLGswOHYeGrHKzG9z6UYf01d9VFMfZxPM1xZSg==
dependencies:
ansi-styles "^4.1.0"
supports-color "^7.1.0"
chardet@^0.7.0:
chardet@^0.7.0:
version "0.7.0"
version "0.7.0"
resolved "https://registry.yarnpkg.com/chardet/-/chardet-0.7.0.tgz#90094849f0937f2eedc2425d0d28a9e5f0cbad9e"
resolved "https://registry.yarnpkg.com/chardet/-/chardet-0.7.0.tgz#90094849f0937f2eedc2425d0d28a9e5f0cbad9e"
...
@@ -4844,6 +4716,14 @@ cli-table@^0.3.1:
...
@@ -4844,6 +4716,14 @@ cli-table@^0.3.1:
dependencies:
dependencies:
colors "1.0.3"
colors "1.0.3"
cli-truncate@^2.1.0:
version "2.1.0"
resolved "https://registry.yarnpkg.com/cli-truncate/-/cli-truncate-2.1.0.tgz#c39e28bf05edcde5be3b98992a22deed5a2b93c7"
integrity sha512-n8fOixwDD6b/ObinzTrp1ZKFzbgvKZvuz/TvejnLn1aQfC6r52XEx85FmuC+3HI+JM7coBRXUvNqEU2PHVrHpg==
dependencies:
slice-ansi "^3.0.0"
string-width "^4.2.0"
cli-width@^3.0.0:
cli-width@^3.0.0:
version "3.0.0"
version "3.0.0"
resolved "https://registry.yarnpkg.com/cli-width/-/cli-width-3.0.0.tgz#a2f48437a2caa9a22436e794bf071ec9e61cedf6"
resolved "https://registry.yarnpkg.com/cli-width/-/cli-width-3.0.0.tgz#a2f48437a2caa9a22436e794bf071ec9e61cedf6"
...
@@ -5009,6 +4889,11 @@ commander@^2.19.0, commander@^2.20.0:
...
@@ -5009,6 +4889,11 @@ commander@^2.19.0, commander@^2.20.0:
resolved "https://registry.yarnpkg.com/commander/-/commander-2.20.3.tgz#fd485e84c03eb4881c20722ba48035e8531aeb33"
resolved "https://registry.yarnpkg.com/commander/-/commander-2.20.3.tgz#fd485e84c03eb4881c20722ba48035e8531aeb33"
integrity sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==
integrity sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==
commander@^7.2.0:
version "7.2.0"
resolved "https://registry.yarnpkg.com/commander/-/commander-7.2.0.tgz#a36cb57d0b501ce108e4d20559a150a391d97ab7"
integrity sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw==
comment-parser@1.1.5, comment-parser@^1.1.5:
comment-parser@1.1.5, comment-parser@^1.1.5:
version "1.1.5"
version "1.1.5"
resolved "https://registry.yarnpkg.com/comment-parser/-/comment-parser-1.1.5.tgz#453627ef8f67dbcec44e79a9bd5baa37f0bce9b2"
resolved "https://registry.yarnpkg.com/comment-parser/-/comment-parser-1.1.5.tgz#453627ef8f67dbcec44e79a9bd5baa37f0bce9b2"
...
@@ -5890,7 +5775,7 @@ end-of-stream@^1.1.0, end-of-stream@^1.4.1:
...
@@ -5890,7 +5775,7 @@ end-of-stream@^1.1.0, end-of-stream@^1.4.1:
dependencies:
dependencies:
once "^1.4.0"
once "^1.4.0"
enquirer@^2.3.0, enquirer@^2.3.5:
enquirer@^2.3.0, enquirer@^2.3.5
, enquirer@^2.3.6
:
version "2.3.6"
version "2.3.6"
resolved "https://registry.yarnpkg.com/enquirer/-/enquirer-2.3.6.tgz#2a7fe5dd634a1e4125a975ec994ff5456dc3734d"
resolved "https://registry.yarnpkg.com/enquirer/-/enquirer-2.3.6.tgz#2a7fe5dd634a1e4125a975ec994ff5456dc3734d"
integrity sha512-yjNnPr315/FjS4zIsUxYguYUPP2e1NK4d7E7ZOLiyYCcbFBiTMyID+2wvm2w6+pZ/odMA7cRkjhsPbltwBOrLg==
integrity sha512-yjNnPr315/FjS4zIsUxYguYUPP2e1NK4d7E7ZOLiyYCcbFBiTMyID+2wvm2w6+pZ/odMA7cRkjhsPbltwBOrLg==
...
@@ -7538,6 +7423,11 @@ get-intrinsic@^1.0.2, get-intrinsic@^1.1.0, get-intrinsic@^1.1.1:
...
@@ -7538,6 +7423,11 @@ get-intrinsic@^1.0.2, get-intrinsic@^1.1.0, get-intrinsic@^1.1.1:
has "^1.0.3"
has "^1.0.3"
has-symbols "^1.0.1"
has-symbols "^1.0.1"
get-own-enumerable-property-symbols@^3.0.0:
version "3.0.2"
resolved "https://registry.yarnpkg.com/get-own-enumerable-property-symbols/-/get-own-enumerable-property-symbols-3.0.2.tgz#b5fde77f22cbe35f390b4e089922c50bce6ef664"
integrity sha512-I0UBV/XOz1XkIJHEUDMZAbzCThU/H8DxmSfmdGcKPnVhu2VfFqr34jr9777IyaTYvxjedWhqVIilEDsCdP5G6g==
get-pkg-repo@^1.0.0:
get-pkg-repo@^1.0.0:
version "1.4.0"
version "1.4.0"
resolved "https://registry.yarnpkg.com/get-pkg-repo/-/get-pkg-repo-1.4.0.tgz#c73b489c06d80cc5536c2c853f9e05232056972d"
resolved "https://registry.yarnpkg.com/get-pkg-repo/-/get-pkg-repo-1.4.0.tgz#c73b489c06d80cc5536c2c853f9e05232056972d"
...
@@ -8735,6 +8625,11 @@ is-number@^7.0.0:
...
@@ -8735,6 +8625,11 @@ is-number@^7.0.0:
resolved "https://registry.yarnpkg.com/is-number/-/is-number-7.0.0.tgz#7535345b896734d5f80c4d06c50955527a14f12b"
resolved "https://registry.yarnpkg.com/is-number/-/is-number-7.0.0.tgz#7535345b896734d5f80c4d06c50955527a14f12b"
integrity sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==
integrity sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==
is-obj@^1.0.1:
version "1.0.1"
resolved "https://registry.yarnpkg.com/is-obj/-/is-obj-1.0.1.tgz#3e4729ac1f5fde025cd7d83a896dab9f4f67db0f"
integrity sha1-PkcprB9f3gJc19g6iW2rn09n2w8=
is-obj@^2.0.0:
is-obj@^2.0.0:
version "2.0.0"
version "2.0.0"
resolved "https://registry.yarnpkg.com/is-obj/-/is-obj-2.0.0.tgz#473fb05d973705e3fd9620545018ca8e22ef4982"
resolved "https://registry.yarnpkg.com/is-obj/-/is-obj-2.0.0.tgz#473fb05d973705e3fd9620545018ca8e22ef4982"
...
@@ -8790,6 +8685,11 @@ is-regex@~1.0.5:
...
@@ -8790,6 +8685,11 @@ is-regex@~1.0.5:
dependencies:
dependencies:
has "^1.0.3"
has "^1.0.3"
is-regexp@^1.0.0:
version "1.0.0"
resolved "https://registry.yarnpkg.com/is-regexp/-/is-regexp-1.0.0.tgz#fd2d883545c46bac5a633e7b9a09e87fa2cb5069"
integrity sha1-/S2INUXEa6xaYz57mgnof6LLUGk=
is-retry-allowed@^1.0.0:
is-retry-allowed@^1.0.0:
version "1.2.0"
version "1.2.0"
resolved "https://registry.yarnpkg.com/is-retry-allowed/-/is-retry-allowed-1.2.0.tgz#d778488bd0a4666a3be8a1482b9f2baafedea8b4"
resolved "https://registry.yarnpkg.com/is-retry-allowed/-/is-retry-allowed-1.2.0.tgz#d778488bd0a4666a3be8a1482b9f2baafedea8b4"
...
@@ -8848,6 +8748,11 @@ is-typedarray@^1.0.0, is-typedarray@~1.0.0:
...
@@ -8848,6 +8748,11 @@ is-typedarray@^1.0.0, is-typedarray@~1.0.0:
resolved "https://registry.yarnpkg.com/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a"
resolved "https://registry.yarnpkg.com/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a"
integrity sha1-5HnICFjfDBsR3dppQPlgEfzaSpo=
integrity sha1-5HnICFjfDBsR3dppQPlgEfzaSpo=
is-unicode-supported@^0.1.0:
version "0.1.0"
resolved "https://registry.yarnpkg.com/is-unicode-supported/-/is-unicode-supported-0.1.0.tgz#3f26c76a809593b52bfa2ecb5710ed2779b522a7"
integrity sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw==
is-url@^1.2.4:
is-url@^1.2.4:
version "1.2.4"
version "1.2.4"
resolved "https://registry.yarnpkg.com/is-url/-/is-url-1.2.4.tgz#04a4df46d28c4cff3d73d01ff06abeb318a1aa52"
resolved "https://registry.yarnpkg.com/is-url/-/is-url-1.2.4.tgz#04a4df46d28c4cff3d73d01ff06abeb318a1aa52"
...
@@ -9517,6 +9422,40 @@ lines-and-columns@^1.1.6:
...
@@ -9517,6 +9422,40 @@ lines-and-columns@^1.1.6:
resolved "https://registry.yarnpkg.com/lines-and-columns/-/lines-and-columns-1.1.6.tgz#1c00c743b433cd0a4e80758f7b64a57440d9ff00"
resolved "https://registry.yarnpkg.com/lines-and-columns/-/lines-and-columns-1.1.6.tgz#1c00c743b433cd0a4e80758f7b64a57440d9ff00"
integrity sha1-HADHQ7QzzQpOgHWPe2SldEDZ/wA=
integrity sha1-HADHQ7QzzQpOgHWPe2SldEDZ/wA=
lint-staged@^11.0.0:
version "11.0.0"
resolved "https://registry.yarnpkg.com/lint-staged/-/lint-staged-11.0.0.tgz#24d0a95aa316ba28e257f5c4613369a75a10c712"
integrity sha512-3rsRIoyaE8IphSUtO1RVTFl1e0SLBtxxUOPBtHxQgBHS5/i6nqvjcUfNioMa4BU9yGnPzbO+xkfLtXtxBpCzjw==
dependencies:
chalk "^4.1.1"
cli-truncate "^2.1.0"
commander "^7.2.0"
cosmiconfig "^7.0.0"
debug "^4.3.1"
dedent "^0.7.0"
enquirer "^2.3.6"
execa "^5.0.0"
listr2 "^3.8.2"
log-symbols "^4.1.0"
micromatch "^4.0.4"
normalize-path "^3.0.0"
please-upgrade-node "^3.2.0"
string-argv "0.3.1"
stringify-object "^3.3.0"
listr2@^3.8.2:
version "3.10.0"
resolved "https://registry.yarnpkg.com/listr2/-/listr2-3.10.0.tgz#58105a53ed7fa1430d1b738c6055ef7bb006160f"
integrity sha512-eP40ZHihu70sSmqFNbNy2NL1YwImmlMmPh9WO5sLmPDleurMHt3n+SwEWNu2kzKScexZnkyFtc1VI0z/TGlmpw==
dependencies:
cli-truncate "^2.1.0"
colorette "^1.2.2"
log-update "^4.0.0"
p-map "^4.0.0"
rxjs "^6.6.7"
through "^2.3.8"
wrap-ansi "^7.0.0"
load-json-file@^1.0.0:
load-json-file@^1.0.0:
version "1.1.0"
version "1.1.0"
resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-1.1.0.tgz#956905708d58b4bab4c2261b04f59f31c99374c0"
resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-1.1.0.tgz#956905708d58b4bab4c2261b04f59f31c99374c0"
...
@@ -9679,6 +9618,24 @@ log-symbols@4.0.0:
...
@@ -9679,6 +9618,24 @@ log-symbols@4.0.0:
dependencies:
dependencies:
chalk "^4.0.0"
chalk "^4.0.0"
log-symbols@^4.1.0:
version "4.1.0"
resolved "https://registry.yarnpkg.com/log-symbols/-/log-symbols-4.1.0.tgz#3fbdbb95b4683ac9fc785111e792e558d4abd503"
integrity sha512-8XPvpAA8uyhfteu8pIvQxpJZ7SYYdpUivZpGy6sFsBuKRY/7rQGavedeB8aK+Zkyq6upMFVL/9AW6vOYzfRyLg==
dependencies:
chalk "^4.1.0"
is-unicode-supported "^0.1.0"
log-update@^4.0.0:
version "4.0.0"
resolved "https://registry.yarnpkg.com/log-update/-/log-update-4.0.0.tgz#589ecd352471f2a1c0c570287543a64dfd20e0a1"
integrity sha512-9fkkDevMefjg0mmzWFBW8YkFP91OrizzkW3diF7CpG+S2EYdy4+TVfGwz1zeF8x7hCx1ovSPTOE9Ngib74qqUg==
dependencies:
ansi-escapes "^4.3.0"
cli-cursor "^3.1.0"
slice-ansi "^4.0.0"
wrap-ansi "^6.2.0"
looper@^2.0.0:
looper@^2.0.0:
version "2.0.0"
version "2.0.0"
resolved "https://registry.yarnpkg.com/looper/-/looper-2.0.0.tgz#66cd0c774af3d4fedac53794f742db56da8f09ec"
resolved "https://registry.yarnpkg.com/looper/-/looper-2.0.0.tgz#66cd0c774af3d4fedac53794f742db56da8f09ec"
...
@@ -10085,6 +10042,14 @@ micromatch@^4.0.2:
...
@@ -10085,6 +10042,14 @@ micromatch@^4.0.2:
braces "^3.0.1"
braces "^3.0.1"
picomatch "^2.0.5"
picomatch "^2.0.5"
micromatch@^4.0.4:
version "4.0.4"
resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-4.0.4.tgz#896d519dfe9db25fce94ceb7a500919bf881ebf9"
integrity sha512-pRmzw/XUcwXGpD9aI9q/0XOwLNygjETJ8y0ao0wdqprrzDa4YnxLcz7fQRZr8voh8V10kGhABbNcHVk5wHgWwg==
dependencies:
braces "^3.0.1"
picomatch "^2.2.3"
miller-rabin@^4.0.0:
miller-rabin@^4.0.0:
version "4.0.1"
version "4.0.1"
resolved "https://registry.yarnpkg.com/miller-rabin/-/miller-rabin-4.0.1.tgz#f080351c865b0dc562a8462966daa53543c78a4d"
resolved "https://registry.yarnpkg.com/miller-rabin/-/miller-rabin-4.0.1.tgz#f080351c865b0dc562a8462966daa53543c78a4d"
...
@@ -11564,6 +11529,11 @@ picomatch@^2.0.4, picomatch@^2.0.5, picomatch@^2.2.1:
...
@@ -11564,6 +11529,11 @@ picomatch@^2.0.4, picomatch@^2.0.5, picomatch@^2.2.1:
resolved "https://registry.yarnpkg.com/picomatch/-/picomatch-2.2.2.tgz#21f333e9b6b8eaff02468f5146ea406d345f4dad"
resolved "https://registry.yarnpkg.com/picomatch/-/picomatch-2.2.2.tgz#21f333e9b6b8eaff02468f5146ea406d345f4dad"
integrity sha512-q0M/9eZHzmr0AulXyPwNfZjtwZ/RBZlbN3K3CErVrk50T2ASYI7Bye0EvekFY3IP1Nt2DHu0re+V2ZHIpMkuWg==
integrity sha512-q0M/9eZHzmr0AulXyPwNfZjtwZ/RBZlbN3K3CErVrk50T2ASYI7Bye0EvekFY3IP1Nt2DHu0re+V2ZHIpMkuWg==
picomatch@^2.2.3:
version "2.3.0"
resolved "https://registry.yarnpkg.com/picomatch/-/picomatch-2.3.0.tgz#f1f061de8f6a4bf022892e2d128234fb98302972"
integrity sha512-lY1Q/PiJGC2zOv/z391WOTD+Z02bCgsFfvxoXXf6h7kv9o+WmsmzYqrAwY63sNgOxE4xEdq0WyUnXfKeBrSvYw==
pify@^2.0.0, pify@^2.3.0:
pify@^2.0.0, pify@^2.3.0:
version "2.3.0"
version "2.3.0"
resolved "https://registry.yarnpkg.com/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c"
resolved "https://registry.yarnpkg.com/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c"
...
@@ -11669,6 +11639,13 @@ pkg-up@^2.0.0:
...
@@ -11669,6 +11639,13 @@ pkg-up@^2.0.0:
dependencies:
dependencies:
find-up "^2.1.0"
find-up "^2.1.0"
please-upgrade-node@^3.2.0:
version "3.2.0"
resolved "https://registry.yarnpkg.com/please-upgrade-node/-/please-upgrade-node-3.2.0.tgz#aeddd3f994c933e4ad98b99d9a556efa0e2fe942"
integrity sha512-gQR3WpIgNIKwBMVLkpMUeR3e1/E1y42bqDQZfql+kDeXd8COYfM8PQA4X6y7a8u9Ua9FHmsrrmirW2vHs45hWg==
dependencies:
semver-compare "^1.0.0"
pluralize@^8.0.0:
pluralize@^8.0.0:
version "8.0.0"
version "8.0.0"
resolved "https://registry.yarnpkg.com/pluralize/-/pluralize-8.0.0.tgz#1a6fa16a38d12a1901e0320fa017051c539ce3b1"
resolved "https://registry.yarnpkg.com/pluralize/-/pluralize-8.0.0.tgz#1a6fa16a38d12a1901e0320fa017051c539ce3b1"
...
@@ -12757,6 +12734,11 @@ semaphore@>=1.0.1, semaphore@^1.0.3, semaphore@^1.1.0:
...
@@ -12757,6 +12734,11 @@ semaphore@>=1.0.1, semaphore@^1.0.3, semaphore@^1.1.0:
resolved "https://registry.yarnpkg.com/semaphore/-/semaphore-1.1.0.tgz#aaad8b86b20fe8e9b32b16dc2ee682a8cd26a8aa"
resolved "https://registry.yarnpkg.com/semaphore/-/semaphore-1.1.0.tgz#aaad8b86b20fe8e9b32b16dc2ee682a8cd26a8aa"
integrity sha512-O4OZEaNtkMd/K0i6js9SL+gqy0ZCBMgUvlSqHKi4IBdjhe7wB8pwztUk1BbZ1fmrvpwFrPbHzqd2w5pTcJH6LA==
integrity sha512-O4OZEaNtkMd/K0i6js9SL+gqy0ZCBMgUvlSqHKi4IBdjhe7wB8pwztUk1BbZ1fmrvpwFrPbHzqd2w5pTcJH6LA==
semver-compare@^1.0.0:
version "1.0.0"
resolved "https://registry.yarnpkg.com/semver-compare/-/semver-compare-1.0.0.tgz#0dee216a1c941ab37e9efb1788f6afc5ff5537fc"
integrity sha1-De4hahyUGrN+nvsXiPavxf9VN/w=
"semver@2 || 3 || 4 || 5", semver@^5.3.0, semver@^5.4.1, semver@^5.5.0, semver@^5.6.0, semver@^5.7.0, semver@^5.7.1:
"semver@2 || 3 || 4 || 5", semver@^5.3.0, semver@^5.4.1, semver@^5.5.0, semver@^5.6.0, semver@^5.7.0, semver@^5.7.1:
version "5.7.1"
version "5.7.1"
resolved "https://registry.yarnpkg.com/semver/-/semver-5.7.1.tgz#a954f931aeba508d307bbf069eff0c01c96116f7"
resolved "https://registry.yarnpkg.com/semver/-/semver-5.7.1.tgz#a954f931aeba508d307bbf069eff0c01c96116f7"
...
@@ -12986,6 +12968,15 @@ slash@^3.0.0:
...
@@ -12986,6 +12968,15 @@ slash@^3.0.0:
resolved "https://registry.yarnpkg.com/slash/-/slash-3.0.0.tgz#6539be870c165adbd5240220dbe361f1bc4d4634"
resolved "https://registry.yarnpkg.com/slash/-/slash-3.0.0.tgz#6539be870c165adbd5240220dbe361f1bc4d4634"
integrity sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==
integrity sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==
slice-ansi@^3.0.0:
version "3.0.0"
resolved "https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-3.0.0.tgz#31ddc10930a1b7e0b67b08c96c2f49b77a789787"
integrity sha512-pSyv7bSTC7ig9Dcgbw9AuRNUb5k5V6oDudjZoMBSr13qpLBG7tB+zgCkARjq7xIUgdz5P1Qe8u+rSGdouOOIyQ==
dependencies:
ansi-styles "^4.0.0"
astral-regex "^2.0.0"
is-fullwidth-code-point "^3.0.0"
slice-ansi@^4.0.0:
slice-ansi@^4.0.0:
version "4.0.0"
version "4.0.0"
resolved "https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-4.0.0.tgz#500e8dd0fd55b05815086255b3195adf2a45fe6b"
resolved "https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-4.0.0.tgz#500e8dd0fd55b05815086255b3195adf2a45fe6b"
...
@@ -13348,6 +13339,11 @@ strict-uri-encode@^2.0.0:
...
@@ -13348,6 +13339,11 @@ strict-uri-encode@^2.0.0:
resolved "https://registry.yarnpkg.com/strict-uri-encode/-/strict-uri-encode-2.0.0.tgz#b9c7330c7042862f6b142dc274bbcc5866ce3546"
resolved "https://registry.yarnpkg.com/strict-uri-encode/-/strict-uri-encode-2.0.0.tgz#b9c7330c7042862f6b142dc274bbcc5866ce3546"
integrity sha1-ucczDHBChi9rFC3CdLvMWGbONUY=
integrity sha1-ucczDHBChi9rFC3CdLvMWGbONUY=
string-argv@0.3.1:
version "0.3.1"
resolved "https://registry.yarnpkg.com/string-argv/-/string-argv-0.3.1.tgz#95e2fbec0427ae19184935f816d74aaa4c5c19da"
integrity sha512-a1uQGz7IyVy9YwhqjZIZu1c8JO8dNIe20xBmSS6qu9kv++k3JGzCVmprbNN5Kn+BgzD5E7YYwg1CcjuJMRNsvg==
string-width@^1.0.1:
string-width@^1.0.1:
version "1.0.2"
version "1.0.2"
resolved "https://registry.yarnpkg.com/string-width/-/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3"
resolved "https://registry.yarnpkg.com/string-width/-/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3"
...
@@ -13441,6 +13437,15 @@ string_decoder@~1.1.1:
...
@@ -13441,6 +13437,15 @@ string_decoder@~1.1.1:
dependencies:
dependencies:
safe-buffer "~5.1.0"
safe-buffer "~5.1.0"
stringify-object@^3.3.0:
version "3.3.0"
resolved "https://registry.yarnpkg.com/stringify-object/-/stringify-object-3.3.0.tgz#703065aefca19300d3ce88af4f5b3956d7556629"
integrity sha512-rHqiFh1elqCQ9WPLIC8I0Q/g/wj5J1eMkyoiD6eoQApWHP0FtlK7rqnhmabL5VUY9JQCcqwwvlOaSuutekgyrw==
dependencies:
get-own-enumerable-property-symbols "^3.0.0"
is-obj "^1.0.1"
is-regexp "^1.0.0"
strip-ansi@^3.0.0, strip-ansi@^3.0.1:
strip-ansi@^3.0.0, strip-ansi@^3.0.1:
version "3.0.1"
version "3.0.1"
resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf"
resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf"
...
@@ -13819,7 +13824,7 @@ through2@^4.0.0:
...
@@ -13819,7 +13824,7 @@ through2@^4.0.0:
dependencies:
dependencies:
readable-stream "3"
readable-stream "3"
through@2, "through@>=2.2.7 <3", through@^2.3.4, through@^2.3.6, through@~2.3.4, through@~2.3.8:
through@2, "through@>=2.2.7 <3", through@^2.3.4, through@^2.3.6, through@
^2.3.8, through@
~2.3.4, through@~2.3.8:
version "2.3.8"
version "2.3.8"
resolved "https://registry.yarnpkg.com/through/-/through-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5"
resolved "https://registry.yarnpkg.com/through/-/through-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5"
integrity sha1-DdTJ/6q8NXlgsbckEV1+Doai4fU=
integrity sha1-DdTJ/6q8NXlgsbckEV1+Doai4fU=
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment