Skip to content

Commit 5699216

Browse files
committed
build: release version 1.9.6
1 parent 5c6a16c commit 5699216

File tree

20 files changed

+103
-103
lines changed

20 files changed

+103
-103
lines changed

lerna.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"npmClient": "yarn",
33
"useWorkspaces": true,
4-
"version": "1.9.5",
4+
"version": "1.9.6",
55
"command": {
66
"version": {
77
"allowBranch": "master",

packages/@vuepress/core/package.json

+14-14
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@vuepress/core",
3-
"version": "1.9.5",
3+
"version": "1.9.6",
44
"description": "Minimalistic doc generator with Vue component based layout system",
55
"keywords": [
66
"documentation",
@@ -18,19 +18,25 @@
1818
},
1919
"license": "MIT",
2020
"author": "Evan You",
21+
"maintainers": [
22+
{
23+
"name": "ULIVZ",
24+
"email": "chl814@foxmail.com"
25+
}
26+
],
2127
"main": "lib/index.js",
2228
"browserslist": [
2329
">1%"
2430
],
2531
"dependencies": {
2632
"@babel/core": "^7.8.4",
2733
"@vue/babel-preset-app": "^4.1.2",
28-
"@vuepress/markdown": "1.9.5",
29-
"@vuepress/markdown-loader": "1.9.5",
30-
"@vuepress/plugin-last-updated": "1.9.5",
31-
"@vuepress/plugin-register-components": "1.9.5",
32-
"@vuepress/shared-utils": "1.9.5",
33-
"@vuepress/types": "1.9.5",
34+
"@vuepress/markdown": "1.9.6",
35+
"@vuepress/markdown-loader": "1.9.6",
36+
"@vuepress/plugin-last-updated": "1.9.6",
37+
"@vuepress/plugin-register-components": "1.9.6",
38+
"@vuepress/shared-utils": "1.9.6",
39+
"@vuepress/types": "1.9.6",
3440
"autoprefixer": "^9.5.1",
3541
"babel-loader": "^8.0.4",
3642
"bundle-require": "2.1.8",
@@ -70,11 +76,5 @@
7076
},
7177
"publishConfig": {
7278
"access": "public"
73-
},
74-
"maintainers": [
75-
{
76-
"name": "ULIVZ",
77-
"email": "chl814@foxmail.com"
78-
}
79-
]
79+
}
8080
}

packages/@vuepress/markdown-loader/package.json

+9-9
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@vuepress/markdown-loader",
3-
"version": "1.9.5",
3+
"version": "1.9.6",
44
"description": "markdown-loader for vuepress",
55
"keywords": [
66
"documentation",
@@ -19,19 +19,19 @@
1919
},
2020
"license": "MIT",
2121
"author": "Evan You",
22+
"maintainers": [
23+
{
24+
"name": "ULIVZ",
25+
"email": "chl814@foxmail.com"
26+
}
27+
],
2228
"main": "index.js",
2329
"dependencies": {
24-
"@vuepress/markdown": "1.9.5",
30+
"@vuepress/markdown": "1.9.6",
2531
"loader-utils": "^1.1.0",
2632
"lru-cache": "^5.1.1"
2733
},
2834
"publishConfig": {
2935
"access": "public"
30-
},
31-
"maintainers": [
32-
{
33-
"name": "ULIVZ",
34-
"email": "chl814@foxmail.com"
35-
}
36-
]
36+
}
3737
}

packages/@vuepress/markdown/package.json

+9-9
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@vuepress/markdown",
3-
"version": "1.9.5",
3+
"version": "1.9.6",
44
"description": "markdown for vuepress",
55
"keywords": [
66
"documentation",
@@ -20,9 +20,15 @@
2020
},
2121
"license": "MIT",
2222
"author": "Evan You",
23+
"maintainers": [
24+
{
25+
"name": "ULIVZ",
26+
"email": "chl814@foxmail.com"
27+
}
28+
],
2329
"main": "index.js",
2430
"dependencies": {
25-
"@vuepress/shared-utils": "1.9.5",
31+
"@vuepress/shared-utils": "1.9.6",
2632
"markdown-it": "^8.4.1",
2733
"markdown-it-anchor": "^5.0.2",
2834
"markdown-it-chain": "^1.3.0",
@@ -32,11 +38,5 @@
3238
},
3339
"publishConfig": {
3440
"access": "public"
35-
},
36-
"maintainers": [
37-
{
38-
"name": "ULIVZ",
39-
"email": "chl814@foxmail.com"
40-
}
41-
]
41+
}
4242
}

packages/@vuepress/plugin-active-header-links/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@vuepress/plugin-active-header-links",
3-
"version": "1.9.5",
3+
"version": "1.9.6",
44
"description": "active-header-links plugin for vuepress",
55
"keywords": [
66
"documentation",
@@ -21,7 +21,7 @@
2121
"author": "ULIVZ <chl814@foxmail.com>",
2222
"main": "index.js",
2323
"dependencies": {
24-
"@vuepress/types": "1.9.5",
24+
"@vuepress/types": "1.9.6",
2525
"lodash.debounce": "^4.0.8"
2626
},
2727
"publishConfig": {

packages/@vuepress/plugin-back-to-top/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@vuepress/plugin-back-to-top",
3-
"version": "1.9.5",
3+
"version": "1.9.6",
44
"description": "back-to-top plugin for vuepress",
55
"keywords": [
66
"documentation",
@@ -21,7 +21,7 @@
2121
"author": "ULIVZ <chl814@foxmail.com>",
2222
"main": "index.js",
2323
"dependencies": {
24-
"@vuepress/types": "1.9.5",
24+
"@vuepress/types": "1.9.6",
2525
"lodash.debounce": "^4.0.8"
2626
},
2727
"publishConfig": {

packages/@vuepress/plugin-google-analytics/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@vuepress/plugin-google-analytics",
3-
"version": "1.9.5",
3+
"version": "1.9.6",
44
"description": "google-analytics plugin for vuepress",
55
"keywords": [
66
"documentation",
@@ -21,7 +21,7 @@
2121
"author": "ULIVZ <chl814@foxmail.com>",
2222
"main": "index.js",
2323
"dependencies": {
24-
"@vuepress/types": "1.9.5"
24+
"@vuepress/types": "1.9.6"
2525
},
2626
"publishConfig": {
2727
"access": "public"

packages/@vuepress/plugin-last-updated/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@vuepress/plugin-last-updated",
3-
"version": "1.9.5",
3+
"version": "1.9.6",
44
"description": "last-updated plugin for vuepress",
55
"keywords": [
66
"documentation",
@@ -21,7 +21,7 @@
2121
"author": "ULIVZ <chl814@foxmail.com>",
2222
"main": "index.js",
2323
"dependencies": {
24-
"@vuepress/types": "1.9.5",
24+
"@vuepress/types": "1.9.6",
2525
"cross-spawn": "^6.0.5"
2626
},
2727
"publishConfig": {

packages/@vuepress/plugin-medium-zoom/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@vuepress/plugin-medium-zoom",
3-
"version": "1.9.5",
3+
"version": "1.9.6",
44
"description": "medium-zoom plugin for vuepress",
55
"keywords": [
66
"documentation",
@@ -21,7 +21,7 @@
2121
"author": "ULIVZ <chl814@foxmail.com>",
2222
"main": "index.js",
2323
"dependencies": {
24-
"@vuepress/types": "1.9.5",
24+
"@vuepress/types": "1.9.6",
2525
"medium-zoom": "^1.0.4"
2626
},
2727
"publishConfig": {

packages/@vuepress/plugin-nprogress/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@vuepress/plugin-nprogress",
3-
"version": "1.9.5",
3+
"version": "1.9.6",
44
"description": "nprogress plugin for vuepress",
55
"keywords": [
66
"documentation",
@@ -21,7 +21,7 @@
2121
"author": "ULIVZ <chl814@foxmail.com>",
2222
"main": "index.js",
2323
"dependencies": {
24-
"@vuepress/types": "1.9.5",
24+
"@vuepress/types": "1.9.6",
2525
"nprogress": "^0.2.0"
2626
},
2727
"publishConfig": {

packages/@vuepress/plugin-pwa/package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@vuepress/plugin-pwa",
3-
"version": "1.9.5",
3+
"version": "1.9.6",
44
"description": "pwa plugin for vuepress",
55
"keywords": [
66
"documentation",
@@ -21,8 +21,8 @@
2121
"author": "ULIVZ <chl814@foxmail.com>",
2222
"main": "index.js",
2323
"dependencies": {
24-
"@vuepress/shared-utils": "1.9.5",
25-
"@vuepress/types": "1.9.5",
24+
"@vuepress/shared-utils": "1.9.6",
25+
"@vuepress/types": "1.9.6",
2626
"register-service-worker": "^1.7.0",
2727
"workbox-build": "^4.3.1"
2828
},

packages/@vuepress/plugin-register-components/package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@vuepress/plugin-register-components",
3-
"version": "1.9.5",
3+
"version": "1.9.6",
44
"description": "register-global-components plugin for vuepress",
55
"keywords": [
66
"documentation",
@@ -21,8 +21,8 @@
2121
"author": "ULIVZ <chl814@foxmail.com>",
2222
"main": "index.js",
2323
"dependencies": {
24-
"@vuepress/shared-utils": "1.9.5",
25-
"@vuepress/types": "1.9.5"
24+
"@vuepress/shared-utils": "1.9.6",
25+
"@vuepress/types": "1.9.6"
2626
},
2727
"publishConfig": {
2828
"access": "public"

packages/@vuepress/plugin-search/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@vuepress/plugin-search",
3-
"version": "1.9.5",
3+
"version": "1.9.6",
44
"description": "search plugin for vuepress",
55
"keywords": [
66
"documentation",
@@ -21,7 +21,7 @@
2121
"author": "ULIVZ <chl814@foxmail.com>",
2222
"main": "index.js",
2323
"dependencies": {
24-
"@vuepress/types": "1.9.5"
24+
"@vuepress/types": "1.9.6"
2525
},
2626
"publishConfig": {
2727
"access": "public"

packages/@vuepress/shared-utils/package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@vuepress/shared-utils",
3-
"version": "1.9.5",
3+
"version": "1.9.6",
44
"description": "shared-utils for vuepress",
55
"keywords": [
66
"documentation",
@@ -19,12 +19,12 @@
1919
},
2020
"license": "MIT",
2121
"author": "ULIVZ <chl814@foxmail.com>",
22+
"main": "lib/index.js",
23+
"types": "lib/index.d.ts",
2224
"files": [
2325
"lib",
2426
"types"
2527
],
26-
"main": "lib/index.js",
27-
"types": "lib/index.d.ts",
2828
"scripts": {
2929
"tsc": "tsc",
3030
"update-index": "node scripts/update-index.js"

packages/@vuepress/test-utils/package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@vuepress/test-utils",
3-
"version": "1.9.5",
3+
"version": "1.9.6",
44
"description": "test-utils for vuepress",
55
"keywords": [
66
"documentation",
@@ -25,8 +25,8 @@
2525
"@babel/preset-env": "^7.0.0",
2626
"@types/jest": "^24.0.9",
2727
"@vue/test-utils": "^1.0.0-beta.29",
28-
"@vuepress/core": "1.9.5",
29-
"@vuepress/shared-utils": "1.9.5",
28+
"@vuepress/core": "1.9.6",
29+
"@vuepress/shared-utils": "1.9.6",
3030
"babel-jest": "^24.7.1",
3131
"execa": "^1.0.0",
3232
"jest": "^24.7.1",

packages/@vuepress/theme-default/package.json

+12-12
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@vuepress/theme-default",
3-
"version": "1.9.5",
3+
"version": "1.9.6",
44
"description": "Default theme for VuePress",
55
"keywords": [
66
"documentation",
@@ -19,12 +19,18 @@
1919
},
2020
"license": "MIT",
2121
"author": "Evan You",
22+
"maintainers": [
23+
{
24+
"name": "ULIVZ",
25+
"email": "chl814@foxmail.com"
26+
}
27+
],
2228
"main": "index.js",
2329
"dependencies": {
24-
"@vuepress/plugin-active-header-links": "1.9.5",
25-
"@vuepress/plugin-nprogress": "1.9.5",
26-
"@vuepress/plugin-search": "1.9.5",
27-
"@vuepress/types": "1.9.5",
30+
"@vuepress/plugin-active-header-links": "1.9.6",
31+
"@vuepress/plugin-nprogress": "1.9.6",
32+
"@vuepress/plugin-search": "1.9.6",
33+
"@vuepress/types": "1.9.6",
2834
"docsearch.js": "^2.5.2",
2935
"lodash": "^4.17.15",
3036
"stylus": "^0.54.8",
@@ -34,11 +40,5 @@
3440
},
3541
"publishConfig": {
3642
"access": "public"
37-
},
38-
"maintainers": [
39-
{
40-
"name": "ULIVZ",
41-
"email": "chl814@foxmail.com"
42-
}
43-
]
43+
}
4444
}

0 commit comments

Comments
 (0)