-
Notifications
You must be signed in to change notification settings - Fork 4.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
aa0dd20
commit af092c4
Showing
19 changed files
with
280 additions
and
280 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
{ | ||
"npmClient": "yarn", | ||
"useWorkspaces": true, | ||
"version": "1.2.0" | ||
"version": "1.3.0" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,41 +1,35 @@ | ||
{ | ||
"name": "@vuepress/core", | ||
"version": "1.2.0", | ||
"version": "1.3.0", | ||
"description": "Minimalistic doc generator with Vue component based layout system", | ||
"main": "lib/index.js", | ||
"keywords": [ | ||
"documentation", | ||
"generator", | ||
"vue" | ||
], | ||
"homepage": "https://github.com/vuejs/vuepress#readme", | ||
"bugs": { | ||
"url": "https://github.com/vuejs/vuepress/issues" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "git+https://github.com/vuejs/vuepress.git", | ||
"directory": "packages/@vuepress/core" | ||
}, | ||
"publishConfig": { | ||
"access": "public" | ||
}, | ||
"keywords": [ | ||
"documentation", | ||
"vue", | ||
"generator" | ||
], | ||
"license": "MIT", | ||
"author": "Evan You", | ||
"maintainers": [ | ||
{ | ||
"name": "ULIVZ", | ||
"email": "[email protected]" | ||
} | ||
"main": "lib/index.js", | ||
"browserslist": [ | ||
">1%" | ||
], | ||
"license": "MIT", | ||
"bugs": { | ||
"url": "https://github.com/vuejs/vuepress/issues" | ||
}, | ||
"homepage": "https://github.com/vuejs/vuepress#readme", | ||
"dependencies": { | ||
"@babel/core": "^7.0.0", | ||
"@vue/babel-preset-app": "^3.1.1", | ||
"@vuepress/markdown": "^1.2.0", | ||
"@vuepress/markdown-loader": "^1.2.0", | ||
"@vuepress/plugin-last-updated": "^1.2.0", | ||
"@vuepress/plugin-register-components": "^1.2.0", | ||
"@vuepress/shared-utils": "^1.2.0", | ||
"@vuepress/markdown": "^1.3.0", | ||
"@vuepress/markdown-loader": "^1.3.0", | ||
"@vuepress/plugin-last-updated": "^1.3.0", | ||
"@vuepress/plugin-register-components": "^1.3.0", | ||
"@vuepress/shared-utils": "^1.3.0", | ||
"autoprefixer": "^9.5.1", | ||
"babel-loader": "^8.0.4", | ||
"cache-loader": "^3.0.0", | ||
|
@@ -70,7 +64,13 @@ | |
"engines": { | ||
"node": ">=8.6" | ||
}, | ||
"browserslist": [ | ||
">1%" | ||
"publishConfig": { | ||
"access": "public" | ||
}, | ||
"maintainers": [ | ||
{ | ||
"name": "ULIVZ", | ||
"email": "[email protected]" | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,37 +1,37 @@ | ||
{ | ||
"name": "@vuepress/markdown-loader", | ||
"version": "1.2.0", | ||
"version": "1.3.0", | ||
"description": "markdown-loader for vuepress", | ||
"main": "index.js", | ||
"publishConfig": { | ||
"access": "public" | ||
"keywords": [ | ||
"documentation", | ||
"generator", | ||
"vue", | ||
"vuepress" | ||
], | ||
"homepage": "https://github.com/vuejs/vuepress/packages/@vuepress/markdown-loader#readme", | ||
"bugs": { | ||
"url": "https://github.com/vuejs/vuepress/issues" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "git+https://github.com/vuejs/vuepress.git", | ||
"directory": "packages/@vuepress/markdown-loader" | ||
}, | ||
"keywords": [ | ||
"documentation", | ||
"vue", | ||
"vuepress", | ||
"generator" | ||
], | ||
"license": "MIT", | ||
"author": "Evan You", | ||
"main": "index.js", | ||
"dependencies": { | ||
"@vuepress/markdown": "^1.2.0", | ||
"@vuepress/markdown": "^1.3.0", | ||
"loader-utils": "^1.1.0", | ||
"lru-cache": "^5.1.1" | ||
}, | ||
"author": "Evan You", | ||
"publishConfig": { | ||
"access": "public" | ||
}, | ||
"maintainers": [ | ||
{ | ||
"name": "ULIVZ", | ||
"email": "[email protected]" | ||
} | ||
], | ||
"license": "MIT", | ||
"bugs": { | ||
"url": "https://github.com/vuejs/vuepress/issues" | ||
}, | ||
"homepage": "https://github.com/vuejs/vuepress/packages/@vuepress/markdown-loader#readme" | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,25 +1,28 @@ | ||
{ | ||
"name": "@vuepress/markdown", | ||
"version": "1.2.0", | ||
"version": "1.3.0", | ||
"description": "markdown for vuepress", | ||
"main": "index.js", | ||
"publishConfig": { | ||
"access": "public" | ||
"keywords": [ | ||
"documentation", | ||
"generator", | ||
"markdown", | ||
"vue", | ||
"vuepress" | ||
], | ||
"homepage": "https://github.com/vuejs/vuepress/packages/@vuepress/markdown#readme", | ||
"bugs": { | ||
"url": "https://github.com/vuejs/vuepress/issues" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "git+https://github.com/vuejs/vuepress.git", | ||
"directory": "packages/@vuepress/markdown" | ||
}, | ||
"keywords": [ | ||
"documentation", | ||
"vue", | ||
"vuepress", | ||
"generator", | ||
"markdown" | ||
], | ||
"license": "MIT", | ||
"author": "Evan You", | ||
"main": "index.js", | ||
"dependencies": { | ||
"@vuepress/shared-utils": "^1.2.0", | ||
"@vuepress/shared-utils": "^1.3.0", | ||
"markdown-it": "^8.4.1", | ||
"markdown-it-anchor": "^5.0.2", | ||
"markdown-it-chain": "^1.3.0", | ||
|
@@ -28,18 +31,15 @@ | |
"prismjs": "^1.13.0" | ||
}, | ||
"devDependencies": { | ||
"@vuepress/test-utils": "^1.2.0" | ||
"@vuepress/test-utils": "^1.3.0" | ||
}, | ||
"publishConfig": { | ||
"access": "public" | ||
}, | ||
"author": "Evan You", | ||
"maintainers": [ | ||
{ | ||
"name": "ULIVZ", | ||
"email": "[email protected]" | ||
} | ||
], | ||
"license": "MIT", | ||
"bugs": { | ||
"url": "https://github.com/vuejs/vuepress/issues" | ||
}, | ||
"homepage": "https://github.com/vuejs/vuepress/packages/@vuepress/markdown#readme" | ||
] | ||
} |
32 changes: 16 additions & 16 deletions
32
packages/@vuepress/plugin-active-header-links/package.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,29 +1,29 @@ | ||
{ | ||
"name": "@vuepress/plugin-active-header-links", | ||
"version": "1.2.0", | ||
"version": "1.3.0", | ||
"description": "active-header-links plugin for vuepress", | ||
"main": "index.js", | ||
"publishConfig": { | ||
"access": "public" | ||
"keywords": [ | ||
"documentation", | ||
"generator", | ||
"vue", | ||
"vuepress" | ||
], | ||
"homepage": "https://github.com/vuejs/vuepress/packages/@vuepress/plugin-active-header-links#readme", | ||
"bugs": { | ||
"url": "https://github.com/vuejs/vuepress/issues" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "git+https://github.com/vuejs/vuepress.git", | ||
"directory": "packages/@vuepress/plugin-active-header-links" | ||
}, | ||
"keywords": [ | ||
"documentation", | ||
"vue", | ||
"vuepress", | ||
"generator" | ||
], | ||
"license": "MIT", | ||
"author": "ULIVZ <[email protected]>", | ||
"main": "index.js", | ||
"dependencies": { | ||
"lodash.debounce": "^4.0.8" | ||
}, | ||
"author": "ULIVZ <[email protected]>", | ||
"license": "MIT", | ||
"bugs": { | ||
"url": "https://github.com/vuejs/vuepress/issues" | ||
}, | ||
"homepage": "https://github.com/vuejs/vuepress/packages/@vuepress/plugin-active-header-links#readme" | ||
"publishConfig": { | ||
"access": "public" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,29 +1,29 @@ | ||
{ | ||
"name": "@vuepress/plugin-back-to-top", | ||
"version": "1.2.0", | ||
"version": "1.3.0", | ||
"description": "back-to-top plugin for vuepress", | ||
"main": "index.js", | ||
"publishConfig": { | ||
"access": "public" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "git+https://github.com/vuejs/vuepress.git", | ||
"directory": "packages/@vuepress/plugin-back-to-top" | ||
}, | ||
"keywords": [ | ||
"documentation", | ||
"generator", | ||
"vue", | ||
"vuepress", | ||
"generator" | ||
"vuepress" | ||
], | ||
"author": "ULIVZ <[email protected]>", | ||
"license": "MIT", | ||
"homepage": "https://github.com/vuejs/vuepress/packages/@vuepress/back-to-top#readme", | ||
"bugs": { | ||
"url": "https://github.com/vuejs/vuepress/issues" | ||
}, | ||
"homepage": "https://github.com/vuejs/vuepress/packages/@vuepress/back-to-top#readme", | ||
"repository": { | ||
"type": "git", | ||
"url": "git+https://github.com/vuejs/vuepress.git", | ||
"directory": "packages/@vuepress/plugin-back-to-top" | ||
}, | ||
"license": "MIT", | ||
"author": "ULIVZ <[email protected]>", | ||
"main": "index.js", | ||
"dependencies": { | ||
"lodash.debounce": "^4.0.8" | ||
}, | ||
"publishConfig": { | ||
"access": "public" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,26 +1,26 @@ | ||
{ | ||
"name": "@vuepress/plugin-google-analytics", | ||
"version": "1.2.0", | ||
"version": "1.3.0", | ||
"description": "google-analytics plugin for vuepress", | ||
"main": "index.js", | ||
"publishConfig": { | ||
"access": "public" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "git+https://github.com/vuejs/vuepress.git", | ||
"directory": "packages/@vuepress/plugin-google-analytics" | ||
}, | ||
"keywords": [ | ||
"documentation", | ||
"generator", | ||
"vue", | ||
"vuepress", | ||
"generator" | ||
"vuepress" | ||
], | ||
"author": "ULIVZ <[email protected]>", | ||
"license": "MIT", | ||
"homepage": "https://github.com/vuejs/vuepress/packages/@vuepress/plugin-google-analytics#readme", | ||
"bugs": { | ||
"url": "https://github.com/vuejs/vuepress/issues" | ||
}, | ||
"homepage": "https://github.com/vuejs/vuepress/packages/@vuepress/plugin-google-analytics#readme" | ||
"repository": { | ||
"type": "git", | ||
"url": "git+https://github.com/vuejs/vuepress.git", | ||
"directory": "packages/@vuepress/plugin-google-analytics" | ||
}, | ||
"license": "MIT", | ||
"author": "ULIVZ <[email protected]>", | ||
"main": "index.js", | ||
"publishConfig": { | ||
"access": "public" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,29 +1,29 @@ | ||
{ | ||
"name": "@vuepress/plugin-last-updated", | ||
"version": "1.2.0", | ||
"version": "1.3.0", | ||
"description": "last-updated plugin for vuepress", | ||
"main": "index.js", | ||
"publishConfig": { | ||
"access": "public" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "git+https://github.com/vuejs/vuepress.git", | ||
"directory": "packages/@vuepress/plugin-last-updated" | ||
}, | ||
"keywords": [ | ||
"documentation", | ||
"generator", | ||
"vue", | ||
"vuepress", | ||
"generator" | ||
"vuepress" | ||
], | ||
"author": "ULIVZ <[email protected]>", | ||
"license": "MIT", | ||
"homepage": "https://github.com/vuejs/vuepress/packages/@vuepress/plugin-last-updated#readme", | ||
"bugs": { | ||
"url": "https://github.com/vuejs/vuepress/issues" | ||
}, | ||
"homepage": "https://github.com/vuejs/vuepress/packages/@vuepress/plugin-last-updated#readme", | ||
"repository": { | ||
"type": "git", | ||
"url": "git+https://github.com/vuejs/vuepress.git", | ||
"directory": "packages/@vuepress/plugin-last-updated" | ||
}, | ||
"license": "MIT", | ||
"author": "ULIVZ <[email protected]>", | ||
"main": "index.js", | ||
"dependencies": { | ||
"cross-spawn": "^6.0.5" | ||
}, | ||
"publishConfig": { | ||
"access": "public" | ||
} | ||
} |
Oops, something went wrong.