Skip to content

Commit

Permalink
Update dependencies with new patches
Browse files Browse the repository at this point in the history
  • Loading branch information
ardatan committed Mar 19, 2021
1 parent 49bb580 commit b56eb6c
Show file tree
Hide file tree
Showing 10 changed files with 1,524 additions and 9,052 deletions.
1 change: 0 additions & 1 deletion .gitignore
Expand Up @@ -20,5 +20,4 @@ out.txt
.cache
tsconfig.tsbuildinfo
.yarn
.yarnrc
recompile.sh
2 changes: 2 additions & 0 deletions .yarnrc
@@ -0,0 +1,2 @@
--ignore-engines true
--network-timeout 1000000000
3 changes: 1 addition & 2 deletions package.json
Expand Up @@ -117,8 +117,7 @@
"graphql": "15.5.0",
"graphql-language-service-interface": "2.8.2",
"**/apollo-language-server/graphql": "^15.0.0",
"**/@types/graphql-upload/graphql": "^15.0.0",
"@changesets/git": "1.1.0"
"**/@types/graphql-upload/graphql": "^15.0.0"
},
"dependencies": {
"dotenv": "8.2.0",
Expand Down
26 changes: 26 additions & 0 deletions patches/@changesets+cli+2.14.1.patch
@@ -0,0 +1,26 @@
diff --git a/node_modules/@changesets/cli/dist/cli.cjs.dev.js b/node_modules/@changesets/cli/dist/cli.cjs.dev.js
index f2a2bfc..d81f9de 100644
--- a/node_modules/@changesets/cli/dist/cli.cjs.dev.js
+++ b/node_modules/@changesets/cli/dist/cli.cjs.dev.js
@@ -556,7 +556,7 @@ async function version(cwd, options, config) {
// @ts-ignore
var isCI = !!(isCI__default['default'] || process.env.GITHUB_ACTIONS);

-const npmRequestLimit = pLimit__default['default'](40);
+const npmRequestLimit = pLimit__default['default'](3);
const npmPublishLimit = pLimit__default['default'](10);

function jsonParse(input) {
diff --git a/node_modules/@changesets/cli/dist/cli.esm.js b/node_modules/@changesets/cli/dist/cli.esm.js
index 82f2141..06966b9 100644
--- a/node_modules/@changesets/cli/dist/cli.esm.js
+++ b/node_modules/@changesets/cli/dist/cli.esm.js
@@ -533,7 +533,7 @@ async function version(cwd, options, config) {
// @ts-ignore
var isCI = !!(isCI$1 || process.env.GITHUB_ACTIONS);

-const npmRequestLimit = pLimit(40);
+const npmRequestLimit = pLimit(3);
const npmPublishLimit = pLimit(10);

function jsonParse(input) {

This file was deleted.

@@ -0,0 +1,13 @@
diff --git a/node_modules/@docusaurus/theme-search-algolia/src/theme/SearchBar/index.js b/node_modules/@docusaurus/theme-search-algolia/src/theme/SearchBar/index.js
index 033a105..94e3159 100644
--- a/node_modules/@docusaurus/theme-search-algolia/src/theme/SearchBar/index.js
+++ b/node_modules/@docusaurus/theme-search-algolia/src/theme/SearchBar/index.js
@@ -101,7 +101,7 @@ function DocSearch({contextualSearch, ...props}) {

const navigator = useRef({
navigate({itemUrl}) {
- history.push(itemUrl);
+ window.location.assign(itemUrl);
},
}).current;

4 changes: 2 additions & 2 deletions website/package.json
Expand Up @@ -14,8 +14,8 @@
"file-loader": "6.2.0",
"style-loader": "2.0.0",
"monaco-editor-webpack-plugin": "1.9.1",
"@docusaurus/core": "2.0.0-alpha.fd17476c3",
"@docusaurus/preset-classic": "2.0.0-alpha.fd17476c3",
"@docusaurus/core": "2.0.0-alpha.ffe8b6106",
"@docusaurus/preset-classic": "2.0.0-alpha.ffe8b6106",
"@graphql-codegen/config-schema": "1.17.9",
"babel-preset-minify": "0.5.1",
"classnames": "2.2.6",
Expand Down

0 comments on commit b56eb6c

Please sign in to comment.