Skip to content

Commit b13ddfd

Browse files
committed
force clean rebuild before deploying
1 parent dd192ad commit b13ddfd

File tree

4 files changed

+7
-8
lines changed

4 files changed

+7
-8
lines changed

Makefile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
all: update
2+
rm db.json
23
hexo generate
34
cp -R ./todomvc public/examples
45

source/guide/installation.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ title: Installation
22
type: guide
33
order: 1
44
vue_version: 0.12.1
5-
dev_size: 214.15
6-
min_size: 65.69
5+
dev_size: 214.12
6+
min_size: 65.67
77
gz_size: 21.43
88
---
99

themes/vue/source/js/vue.js

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -591,7 +591,7 @@ return /******/ (function(modules) { // webpackBootstrap
591591
*/
592592

593593
exports.isObject = function (obj) {
594-
return obj && typeof obj === 'object'
594+
return obj !== null && typeof obj === 'object'
595595
}
596596

597597
/**
@@ -614,9 +614,7 @@ return /******/ (function(modules) { // webpackBootstrap
614614
* @return {Boolean}
615615
*/
616616

617-
exports.isArray = function (obj) {
618-
return Array.isArray(obj)
619-
}
617+
exports.isArray = Array.isArray
620618

621619
/**
622620
* Define a non-enumerable property
@@ -3305,7 +3303,7 @@ return /******/ (function(modules) { // webpackBootstrap
33053303
var value = this.get()
33063304
if (
33073305
value !== this.value ||
3308-
Array.isArray(value) ||
3306+
_.isArray(value) ||
33093307
this.deep
33103308
) {
33113309
var oldValue = this.value

themes/vue/source/js/vue.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)