Skip to content

Commit

Permalink
fix(deps): bump vuepress to beta-61
Browse files Browse the repository at this point in the history
  • Loading branch information
ntnyq committed Apr 20, 2023
1 parent c1e8b3c commit c9a3c9e
Show file tree
Hide file tree
Showing 8 changed files with 4,257 additions and 4,469 deletions.
9 changes: 2 additions & 7 deletions .eslintrc.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,5 @@
{
"root": true,
"extends": ["@ntnyq", "plugin:yml/prettier"],
"plugins": ["prettier"],
"rules": {
"prettier/prettier": "error",
"operator-linebreak": "off",
"@typescript-eslint/indent": "off"
}
"extends": ["@ntnyq"],
"rules": {}
}
16 changes: 9 additions & 7 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,17 +1,19 @@
{
"prettier.enable": true,
"editor.formatOnSave": true,
"editor.defaultFormatter": "esbenp.prettier-vscode",
"eslint.validate": [
"javascript",
"typescript",
"javascriptreact",
"typescriptreact",
"vue",
"html",
"markdown",
"json",
"jsonc",
"json5"
"json5",
"markdown",
"javascript",
"typescript",
"javascriptreact",
"typescriptreact"
],
"editor.defaultFormatter": "esbenp.prettier-vscode",
"cSpell.words": [
"dbaeumer",
"esbenp",
Expand Down
12 changes: 9 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,15 @@ If you are looking for VuePress v1 support, please use [@goy/vuepress-plugin-svg
## Install

```bash
$ npm install @goy/vuepress-plugin-svg-icons -D
# OR
$ yarn add @goy/vuepress-plugin-svg-icons -D
npm i @goy/vuepress-plugin-svg-icons -D
```

```bash
yarn add @goy/vuepress-plugin-svg-icons -D
```

```bash
pnpm add @goy/vuepress-plugin-svg-icons -D
```

## Usage
Expand Down
12 changes: 9 additions & 3 deletions docs/guide/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,15 @@
## Install

```bash
$ npm install @goy/vuepress-plugin-svg-icons -D
# or
$ yarn add @goy/vuepress-plugin-svg-icons -D
npm i @goy/vuepress-plugin-svg-icons -D
```

```bash
yarn add @goy/vuepress-plugin-svg-icons -D
```

```bash
pnpm add @goy/vuepress-plugin-svg-icons -D
```

## Usage
Expand Down
45 changes: 20 additions & 25 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "@goy/vuepress-plugin-svg-icons",
"type": "module",
"version": "5.3.2",
"packageManager": "pnpm@7.27.0",
"packageManager": "pnpm@8.3.1",
"description": "SVG sprite icon plugin for VuePress",
"keywords": [
"vuepress-plugin",
Expand All @@ -21,14 +21,14 @@
"url": "https://github.com/ntnyq/vuepress-plugin-svg-icons/issues"
},
"repository": "ntnyq/vuepress-plugin-svg-icons",
"main": "./dist/node/index.js",
"module": "./dist/node/index.js",
"types": "./dist/node/index.d.ts",
"exports": {
".": "./dist/node/index.js",
"./client": "./dist/client/index.js",
"./*": "./*"
},
"main": "./dist/node/index.js",
"module": "./dist/node/index.js",
"types": "./dist/node/index.d.ts",
"files": [
"dist"
],
Expand All @@ -47,9 +47,9 @@
"typecheck": "tsc --noEmit"
},
"peerDependencies": {
"vuepress": "2.0.0-beta.60",
"vuepress-vite": "2.0.0-beta.60",
"vuepress-webpack": "2.0.0-beta.60"
"vuepress": "2.0.0-beta.61",
"vuepress-vite": "2.0.0-beta.61",
"vuepress-webpack": "2.0.0-beta.61"
},
"peerDependenciesMeta": {
"vuepress": {
Expand All @@ -63,35 +63,30 @@
}
},
"dependencies": {
"@vuepress/client": "2.0.0-beta.60",
"@vuepress/client": "2.0.0-beta.61",
"svg-mixer": "^2.3.14",
"vue": "^3.2.47"
"vue": "^3.2.47",
"vuepress-vite": "2.0.0-beta.61",
"vuepress-webpack": "2.0.0-beta.61"
},
"devDependencies": {
"@ntnyq/eslint-config": "^1.3.1",
"@ntnyq/prettier-config": "^1.3.1",
"@vuepress/client": "2.0.0-beta.60",
"@ntnyq/eslint-config": "^1.7.0",
"@ntnyq/prettier-config": "^1.7.0",
"copyfiles": "^2.4.1",
"eslint": "^8.34.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-yml": "^1.5.0",
"eslint": "^8.38.0",
"husky": "^8.0.3",
"nano-staged": "^0.8.0",
"npm-run-all": "^4.1.5",
"pnpm": "^7.27.0",
"prettier": "^2.8.4",
"rimraf": "^4.1.2",
"pnpm": "^8.3.1",
"prettier": "^2.8.7",
"rimraf": "^5.0.0",
"tsc-watch": "^6.0.0",
"typescript": "^4.9.5",
"vuepress": "2.0.0-beta.60"
"typescript": "^5.0.4",
"vuepress": "2.0.0-beta.61"
},
"prettier": "@ntnyq/prettier-config",
"nano-staged": {
"*.{js,ts,yaml,yml,md,json}": [
"eslint --fix",
"prettier --write"
]
"*.{js,ts,mjs,yaml,yml,md,json}": "eslint --fix"
},
"publishConfig": {
"access": "public"
Expand Down

1 comment on commit c9a3c9e

@vercel
Copy link

@vercel vercel bot commented on c9a3c9e Apr 20, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.