Skip to content

Commit 63bcef5

Browse files
committed
chore: bump deps
IMPORTANT: hexo-renderer-marked must be pinned at 0.3.x since we rely on syntax that only works with this version range.
1 parent 1aa9552 commit 63bcef5

File tree

7 files changed

+4505
-5399
lines changed

7 files changed

+4505
-5399
lines changed

_config.yml

+2-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,8 @@ new_post_name: :title.md # File name of new posts
2929
default_layout: post
3030
auto_spacing: false # Add spaces between asian characters and western characters
3131
titlecase: false # Transform title into titlecase
32-
external_link: true # Open external links in new tab
32+
external_link:
33+
enable: true # Open external links in new tab
3334
max_open_file: 100
3435
multi_thread: true
3536
filename_case: 0

package.json

+12-14
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "v2.vuejs.org",
33
"private": true,
44
"hexo": {
5-
"version": "3.8.0"
5+
"version": "6.2.0"
66
},
77
"scripts": {
88
"dev": "node _scripts/sync-sponsors.js && hexo server",
@@ -14,20 +14,18 @@
1414
},
1515
"dependencies": {
1616
"axios": "^0.27.2",
17-
"hexo": "^3.6.0",
18-
"hexo-deployer-git": "0.3.1",
17+
"hexo": "^6.2.0",
1918
"hexo-generator-alias": "git+https://github.com/chrisvfritz/vuejs.org-hexo-generator-alias.git",
20-
"hexo-generator-archive": "^0.1.5",
21-
"hexo-generator-category": "^0.1.3",
22-
"hexo-generator-feed": "^1.2.2",
23-
"hexo-generator-index": "^0.2.1",
24-
"hexo-generator-tag": "^0.2.0",
25-
"hexo-offline": "^1.0.0",
26-
"hexo-renderer-ejs": "^0.3.1",
27-
"hexo-renderer-marked": "^0.3.0",
28-
"hexo-renderer-stylus": "^0.3.3",
29-
"hexo-server": "^0.3.1",
19+
"hexo-generator-archive": "^1.0.0",
20+
"hexo-generator-category": "^1.0.0",
21+
"hexo-generator-feed": "^3.0.0",
22+
"hexo-generator-index": "^2.0.0",
23+
"hexo-generator-tag": "^1.0.0",
24+
"hexo-renderer-ejs": "^2.0.0",
25+
"hexo-renderer-marked": "^0.3.2",
26+
"hexo-renderer-stylus": "^2.1.0",
27+
"hexo-server": "^3.0.0",
3028
"hoek": "^6.1.2",
3129
"js-yaml": "^4.1.0"
3230
}
33-
}
31+
}

src/v2/guide/installation.md

+7-7
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
title: Installation
33
type: guide
44
order: 1
5-
vue_version: 2.7.0
6-
gz_size: "36.75"
5+
vue_version: 2.7.8
6+
gz_size: "37.32"
77
---
88

99
### Compatibility Note
@@ -41,20 +41,20 @@ Simply download and include with a script tag. `Vue` will be registered as a glo
4141
For prototyping or learning purposes, you can use the latest version with:
4242

4343
``` html
44-
<script src="https://cdn.jsdelivr.net/npm/vue@2.7.0/dist/vue.js"></script>
44+
<script src="https://cdn.jsdelivr.net/npm/vue@2.7.8/dist/vue.js"></script>
4545
```
4646

4747
For production, we recommend linking to a specific version number and build to avoid unexpected breakage from newer versions:
4848

4949
``` html
50-
<script src="https://cdn.jsdelivr.net/npm/vue@2.7.0"></script>
50+
<script src="https://cdn.jsdelivr.net/npm/vue@2.7.8"></script>
5151
```
5252

5353
If you are using native ES Modules, there is also an ES Modules compatible build:
5454

5555
``` html
5656
<script type="module">
57-
import Vue from 'https://cdn.jsdelivr.net/npm/vue@2.7.0/dist/vue.esm.browser.js'
57+
import Vue from 'https://cdn.jsdelivr.net/npm/vue@2.7.8/dist/vue.esm.browser.js'
5858
</script>
5959
```
6060

@@ -84,7 +84,7 @@ Vue provides an [official CLI](https://github.com/vuejs/vue-cli) for quickly sca
8484

8585
## Explanation of Different Builds
8686

87-
In the [`dist/` directory of the NPM package](https://cdn.jsdelivr.net/npm/vue@2.7.0/dist/) you will find many different builds of Vue.js. Here's an overview of the difference between them:
87+
In the [`dist/` directory of the NPM package](https://cdn.jsdelivr.net/npm/vue@2.7.8/dist/) you will find many different builds of Vue.js. Here's an overview of the difference between them:
8888

8989
| | UMD | CommonJS | ES Module (for bundlers) | ES Module (for browsers) |
9090
| --- | --- | --- | --- | --- |
@@ -101,7 +101,7 @@ In the [`dist/` directory of the NPM package](https://cdn.jsdelivr.net/npm/vue@2
101101

102102
- **Runtime**: code that is responsible for creating Vue instances, rendering and patching virtual DOM, etc. Basically everything minus the compiler.
103103

104-
- **[UMD](https://github.com/umdjs/umd)**: UMD builds can be used directly in the browser via a `<script>` tag. The default file from jsDelivr CDN at [https://cdn.jsdelivr.net/npm/vue@2.7.0](https://cdn.jsdelivr.net/npm/vue@2.7.0) is the Runtime + Compiler UMD build (`vue.js`).
104+
- **[UMD](https://github.com/umdjs/umd)**: UMD builds can be used directly in the browser via a `<script>` tag. The default file from jsDelivr CDN at [https://cdn.jsdelivr.net/npm/vue@2.7.8](https://cdn.jsdelivr.net/npm/vue@2.7.8) is the Runtime + Compiler UMD build (`vue.js`).
105105

106106
- **[CommonJS](http://wiki.commonjs.org/wiki/Modules/1.1)**: CommonJS builds are intended for use with older bundlers like [browserify](http://browserify.org/) or [webpack 1](https://webpack.github.io). The default file for these bundlers (`pkg.main`) is the Runtime only CommonJS build (`vue.runtime.common.js`).
107107

themes/vue/_config.yml

+18-20
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
site_description: Vue.js - The Progressive JavaScript Framework
22
google_analytics: UA-46852172-1
33
root_domain: vuejs.org
4-
vue_version: 2.7.0
4+
vue_version: 2.7.8
55
# START SPONSORS
66
special:
7-
- name: HBuilder
8-
url: https://www.dcloud.io/hbuilderx.html?hmsr=vue-en&hmpl=&hmcu=&hmkw=&hmci=
9-
img: hbuilder.png
10-
description: An IDE for Vue
7+
- name: uni-app
8+
url: https://uniapp.dcloud.io/?hmsr=vueen&hmpl=&hmcu=&hmkw=&hmci=
9+
img: uni_app.png?v2
10+
description: Cross-Platform for Vue
1111
platinum:
1212
- name: VueMastery
1313
url: https://www.vuemastery.com/
@@ -45,6 +45,10 @@ platinum:
4545
- name: CodeDict
4646
url: https://code-dict.com
4747
img: codedict.svg
48+
- name: vuejs.de Conf
49+
url: >-
50+
https://conf.vuejs.de/?utm_source=vuejs-vite&utm_medium=referral&utm_campaign=sponsoring
51+
img: vuejs_de_conf.svg
4852
platinum_china:
4953
- name: HBuilder
5054
url: https://www.dcloud.io/hbuilderx.html?hmsr=vue-en&hmpl=&hmcu=&hmkw=&hmci=
@@ -59,15 +63,9 @@ gold:
5963
- name: HTML Burger
6064
url: https://htmlburger.com
6165
img: html_burger.png
62-
- name: Neds
63-
url: https://neds.com.au/
64-
img: neds.png
6566
- name: Tidelift
6667
url: https://tidelift.com/subscription/npm/vue
6768
img: tidelift.png
68-
- name: Firestick Tricks
69-
url: https://www.firesticktricks.com/
70-
img: firestick_tricks.png
7169
- name: Intygrate
7270
url: https://intygrate.com/
7371
img: intygrate.png
@@ -125,15 +123,18 @@ gold:
125123
- name: Cypress.io
126124
url: https://cypress.io
127125
img: cypress_io.svg
128-
- name: QuickBooks Tool Hub
129-
url: https://quickbookstoolhub.com
130-
img: quickbooks_tool_hub.png
131-
- name: Snyk
132-
url: https://snyk.co/vuejs
133-
img: snyk.png?v2
134126
- name: Handsontable - JavaScript Data Grid
135127
url: https://handsontable.com/
136128
img: handsontable___javascript_data_grid.svg
129+
- name: 1Tool
130+
url: https://www.1tool.com
131+
img: 1tool.png
132+
- name: LearnVue
133+
url: https://learnvue.co
134+
img: learnvue.png
135+
- name: Quickbooks tool hub
136+
url: https://quickbookstoolhub.com
137+
img: quickbooks_tool_hub.png
137138
silver:
138139
- name: Draxlr
139140
url: https://www.draxlr.com
@@ -179,9 +180,6 @@ bronze:
179180
- name: RStudio
180181
url: https://rstudio.com
181182
img: rstudio.png
182-
- name: Custouch Marketing Automation
183-
url: http://www.custouch.com
184-
img: custouch_marketing_automation.png
185183
- name: Darkhorse Analytics
186184
url: https://www.darkhorseanalytics.com/
187185
img: darkhorse_analytics.png

0 commit comments

Comments
 (0)