chore(deps): dependencies 2022-10-17 (#1598)
* chore: automatic empty commit * chore(deps): update dependency eslint-plugin-react to v7.31.10 * fix(deps): update dependency postcss to v8.4.18 * chore(deps): update babel monorepo * chore(deps): update dependency eslint-plugin-jest to v27.1.2 * chore(deps): update jest monorepo to v29.2.0 * chore(deps): update node.js to v16.18.0 * chore(deps): update node.js to v16.18.0 * chore(deps): update typescript-eslint monorepo to v5.40.0 * chore(deps): update dependency stylelint to v14.14.0 * chore(deps): update dependency rollup-plugin-license to v2.8.2 * netlify run condition Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Clément Vannicatte <vannicattec@gmail.com>
This commit is contained in:
parent
74986f9353
commit
16f542af56
6 changed files with 564 additions and 427 deletions
|
|
@ -38,7 +38,7 @@ aliases:
|
|||
defaults: &defaults
|
||||
working_directory: ~/docsearch
|
||||
docker:
|
||||
- image: cimg/node:16.14.2
|
||||
- image: cimg/node:16.18.0
|
||||
|
||||
cypress: &cypress
|
||||
working_directory: ~/docsearch
|
||||
|
|
|
|||
2
.nvmrc
2
.nvmrc
|
|
@ -1 +1 @@
|
|||
16.14.2
|
||||
16.18.0
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
[build]
|
||||
command="yarn build"
|
||||
publish="packages/website/build"
|
||||
ignore="git diff --quiet $COMMIT_REF $CACHED_COMMIT_REF -- packages/website/"
|
||||
ignore="git diff --quiet $COMMIT_REF $CACHED_COMMIT_REF -- packages/website/ yarn.lock"
|
||||
|
||||
[build.environment]
|
||||
YARN_VERSION = "1.22.5"
|
||||
|
|
|
|||
22
package.json
22
package.json
|
|
@ -38,9 +38,9 @@
|
|||
"website:test": "yarn workspace @docsearch/website start --no-open"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@babel/cli": "7.18.10",
|
||||
"@babel/cli": "7.19.3",
|
||||
"@babel/plugin-transform-react-jsx": "7.19.0",
|
||||
"@babel/preset-env": "7.19.1",
|
||||
"@babel/preset-env": "7.19.4",
|
||||
"@babel/preset-typescript": "7.18.6",
|
||||
"@rollup/plugin-json": "4.1.0",
|
||||
"@rollup/plugin-node-resolve": "7.1.1",
|
||||
|
|
@ -53,8 +53,8 @@
|
|||
"@types/jest-diff": "^24.3.0",
|
||||
"@types/react": "^18.0.0",
|
||||
"@types/react-dom": "^18.0.0",
|
||||
"@typescript-eslint/eslint-plugin": "5.37.0",
|
||||
"@typescript-eslint/parser": "5.37.0",
|
||||
"@typescript-eslint/eslint-plugin": "5.40.0",
|
||||
"@typescript-eslint/parser": "5.40.0",
|
||||
"algoliasearch": "4.14.2",
|
||||
"babel-eslint": "10.1.0",
|
||||
"babel-loader": "8.2.5",
|
||||
|
|
@ -72,17 +72,17 @@
|
|||
"eslint-plugin-cypress": "2.12.1",
|
||||
"eslint-plugin-eslint-comments": "3.2.0",
|
||||
"eslint-plugin-import": "2.26.0",
|
||||
"eslint-plugin-jest": "27.0.1",
|
||||
"eslint-plugin-jest": "27.1.2",
|
||||
"eslint-plugin-jsdoc": "39.3.6",
|
||||
"eslint-plugin-jsx-a11y": "6.6.1",
|
||||
"eslint-plugin-prettier": "4.2.1",
|
||||
"eslint-plugin-react": "7.31.6",
|
||||
"eslint-plugin-react": "7.31.10",
|
||||
"eslint-plugin-react-hooks": "4.6.0",
|
||||
"jest": "29.0.2",
|
||||
"jest-environment-jsdom": "29.0.2",
|
||||
"jest": "29.2.0",
|
||||
"jest-environment-jsdom": "29.2.0",
|
||||
"jest-watch-typeahead": "1.1.0",
|
||||
"lerna": "4.0.0",
|
||||
"postcss": "8.4.16",
|
||||
"postcss": "8.4.18",
|
||||
"prettier": "2.7.1",
|
||||
"react": "18.2.0",
|
||||
"react-dom": "18.2.0",
|
||||
|
|
@ -90,11 +90,11 @@
|
|||
"rollup-plugin-babel": "4.4.0",
|
||||
"rollup-plugin-commonjs": "10.1.0",
|
||||
"rollup-plugin-filesize": "9.1.2",
|
||||
"rollup-plugin-license": "2.8.1",
|
||||
"rollup-plugin-license": "2.8.2",
|
||||
"rollup-plugin-terser": "7.0.2",
|
||||
"shipjs": "0.24.4",
|
||||
"start-server-and-test": "1.11.3",
|
||||
"stylelint": "14.12.0",
|
||||
"stylelint": "14.14.0",
|
||||
"stylelint-a11y": "1.2.3",
|
||||
"stylelint-config-prettier": "9.0.3",
|
||||
"stylelint-config-sass-guidelines": "9.0.1",
|
||||
|
|
|
|||
|
|
@ -24,7 +24,7 @@
|
|||
"clsx": "^1.1.1",
|
||||
"file-loader": "6.2.0",
|
||||
"my-loaders": "file:plugins/my-loaders",
|
||||
"postcss": "8.4.16",
|
||||
"postcss": "8.4.18",
|
||||
"postcss-import": "15.0.0",
|
||||
"postcss-preset-env": "7.8.2",
|
||||
"prism-react-renderer": "1.2.1",
|
||||
|
|
|
|||
Loading…
Reference in a new issue