Skip to content

Commit

Permalink
[build] 2.2.4
Browse files Browse the repository at this point in the history
  • Loading branch information
yyx990803 committed Mar 13, 2017
1 parent 45e273f commit 6cf5d2d
Show file tree
Hide file tree
Showing 14 changed files with 283 additions and 219 deletions.
15 changes: 8 additions & 7 deletions dist/vue.common.js
@@ -1,5 +1,5 @@
/*!
* Vue.js v2.2.3
* Vue.js v2.2.4
* (c) 2014-2017 Evan You
* Released under the MIT License.
*/
Expand Down Expand Up @@ -2122,8 +2122,9 @@ function mountComponent (
if (process.env.NODE_ENV !== 'production' && config.performance && mark) {
updateComponent = function () {
var name = vm._name;
var startTag = "start " + name;
var endTag = "end " + name;
var id = vm._uid;
var startTag = "vue-perf-start:" + id;
var endTag = "vue-perf-end:" + id;

mark(startTag);
var vnode = vm._render();
Expand Down Expand Up @@ -3662,7 +3663,7 @@ function initMixin (Vue) {
Vue.prototype._init = function (options) {
/* istanbul ignore if */
if (process.env.NODE_ENV !== 'production' && config.performance && mark) {
mark('init');
mark('vue-perf-init');
}

var vm = this;
Expand Down Expand Up @@ -3703,8 +3704,8 @@ function initMixin (Vue) {
/* istanbul ignore if */
if (process.env.NODE_ENV !== 'production' && config.performance && mark) {
vm._name = formatComponentName(vm, false);
mark('init end');
measure(((vm._name) + " init"), 'init', 'init end');
mark('vue-perf-init-end');
measure(((vm._name) + " init"), 'vue-perf-init', 'vue-perf-init-end');
}

if (vm.$options.el) {
Expand Down Expand Up @@ -4116,7 +4117,7 @@ Object.defineProperty(Vue$3.prototype, '$isServer', {
get: isServerRendering
});

Vue$3.version = '2.2.3';
Vue$3.version = '2.2.4';

/* */

Expand Down
15 changes: 8 additions & 7 deletions dist/vue.esm.js
@@ -1,5 +1,5 @@
/*!
* Vue.js v2.2.3
* Vue.js v2.2.4
* (c) 2014-2017 Evan You
* Released under the MIT License.
*/
Expand Down Expand Up @@ -2120,8 +2120,9 @@ function mountComponent (
if (process.env.NODE_ENV !== 'production' && config.performance && mark) {
updateComponent = function () {
var name = vm._name;
var startTag = "start " + name;
var endTag = "end " + name;
var id = vm._uid;
var startTag = "vue-perf-start:" + id;
var endTag = "vue-perf-end:" + id;

mark(startTag);
var vnode = vm._render();
Expand Down Expand Up @@ -3660,7 +3661,7 @@ function initMixin (Vue) {
Vue.prototype._init = function (options) {
/* istanbul ignore if */
if (process.env.NODE_ENV !== 'production' && config.performance && mark) {
mark('init');
mark('vue-perf-init');
}

var vm = this;
Expand Down Expand Up @@ -3701,8 +3702,8 @@ function initMixin (Vue) {
/* istanbul ignore if */
if (process.env.NODE_ENV !== 'production' && config.performance && mark) {
vm._name = formatComponentName(vm, false);
mark('init end');
measure(((vm._name) + " init"), 'init', 'init end');
mark('vue-perf-init-end');
measure(((vm._name) + " init"), 'vue-perf-init', 'vue-perf-init-end');
}

if (vm.$options.el) {
Expand Down Expand Up @@ -4114,7 +4115,7 @@ Object.defineProperty(Vue$3.prototype, '$isServer', {
get: isServerRendering
});

Vue$3.version = '2.2.3';
Vue$3.version = '2.2.4';

/* */

Expand Down
15 changes: 8 additions & 7 deletions dist/vue.js
@@ -1,5 +1,5 @@
/*!
* Vue.js v2.2.3
* Vue.js v2.2.4
* (c) 2014-2017 Evan You
* Released under the MIT License.
*/
Expand Down Expand Up @@ -2126,8 +2126,9 @@ function mountComponent (
if ("development" !== 'production' && config.performance && mark) {
updateComponent = function () {
var name = vm._name;
var startTag = "start " + name;
var endTag = "end " + name;
var id = vm._uid;
var startTag = "vue-perf-start:" + id;
var endTag = "vue-perf-end:" + id;

mark(startTag);
var vnode = vm._render();
Expand Down Expand Up @@ -3660,7 +3661,7 @@ function initMixin (Vue) {
Vue.prototype._init = function (options) {
/* istanbul ignore if */
if ("development" !== 'production' && config.performance && mark) {
mark('init');
mark('vue-perf-init');
}

var vm = this;
Expand Down Expand Up @@ -3699,8 +3700,8 @@ function initMixin (Vue) {
/* istanbul ignore if */
if ("development" !== 'production' && config.performance && mark) {
vm._name = formatComponentName(vm, false);
mark('init end');
measure(((vm._name) + " init"), 'init', 'init end');
mark('vue-perf-init-end');
measure(((vm._name) + " init"), 'vue-perf-init', 'vue-perf-init-end');
}

if (vm.$options.el) {
Expand Down Expand Up @@ -4112,7 +4113,7 @@ Object.defineProperty(Vue$3.prototype, '$isServer', {
get: isServerRendering
});

Vue$3.version = '2.2.3';
Vue$3.version = '2.2.4';

/* */

Expand Down
4 changes: 2 additions & 2 deletions dist/vue.min.js

Large diffs are not rendered by default.

15 changes: 8 additions & 7 deletions dist/vue.runtime.common.js
@@ -1,5 +1,5 @@
/*!
* Vue.js v2.2.3
* Vue.js v2.2.4
* (c) 2014-2017 Evan You
* Released under the MIT License.
*/
Expand Down Expand Up @@ -2118,8 +2118,9 @@ function mountComponent (
if (process.env.NODE_ENV !== 'production' && config.performance && mark) {
updateComponent = function () {
var name = vm._name;
var startTag = "start " + name;
var endTag = "end " + name;
var id = vm._uid;
var startTag = "vue-perf-start:" + id;
var endTag = "vue-perf-end:" + id;

mark(startTag);
var vnode = vm._render();
Expand Down Expand Up @@ -3658,7 +3659,7 @@ function initMixin (Vue) {
Vue.prototype._init = function (options) {
/* istanbul ignore if */
if (process.env.NODE_ENV !== 'production' && config.performance && mark) {
mark('init');
mark('vue-perf-init');
}

var vm = this;
Expand Down Expand Up @@ -3699,8 +3700,8 @@ function initMixin (Vue) {
/* istanbul ignore if */
if (process.env.NODE_ENV !== 'production' && config.performance && mark) {
vm._name = formatComponentName(vm, false);
mark('init end');
measure(((vm._name) + " init"), 'init', 'init end');
mark('vue-perf-init-end');
measure(((vm._name) + " init"), 'vue-perf-init', 'vue-perf-init-end');
}

if (vm.$options.el) {
Expand Down Expand Up @@ -4112,7 +4113,7 @@ Object.defineProperty(Vue$2.prototype, '$isServer', {
get: isServerRendering
});

Vue$2.version = '2.2.3';
Vue$2.version = '2.2.4';

/* */

Expand Down
15 changes: 8 additions & 7 deletions dist/vue.runtime.esm.js
@@ -1,5 +1,5 @@
/*!
* Vue.js v2.2.3
* Vue.js v2.2.4
* (c) 2014-2017 Evan You
* Released under the MIT License.
*/
Expand Down Expand Up @@ -2116,8 +2116,9 @@ function mountComponent (
if (process.env.NODE_ENV !== 'production' && config.performance && mark) {
updateComponent = function () {
var name = vm._name;
var startTag = "start " + name;
var endTag = "end " + name;
var id = vm._uid;
var startTag = "vue-perf-start:" + id;
var endTag = "vue-perf-end:" + id;

mark(startTag);
var vnode = vm._render();
Expand Down Expand Up @@ -3656,7 +3657,7 @@ function initMixin (Vue) {
Vue.prototype._init = function (options) {
/* istanbul ignore if */
if (process.env.NODE_ENV !== 'production' && config.performance && mark) {
mark('init');
mark('vue-perf-init');
}

var vm = this;
Expand Down Expand Up @@ -3697,8 +3698,8 @@ function initMixin (Vue) {
/* istanbul ignore if */
if (process.env.NODE_ENV !== 'production' && config.performance && mark) {
vm._name = formatComponentName(vm, false);
mark('init end');
measure(((vm._name) + " init"), 'init', 'init end');
mark('vue-perf-init-end');
measure(((vm._name) + " init"), 'vue-perf-init', 'vue-perf-init-end');
}

if (vm.$options.el) {
Expand Down Expand Up @@ -4110,7 +4111,7 @@ Object.defineProperty(Vue$2.prototype, '$isServer', {
get: isServerRendering
});

Vue$2.version = '2.2.3';
Vue$2.version = '2.2.4';

/* */

Expand Down
15 changes: 8 additions & 7 deletions dist/vue.runtime.js
@@ -1,5 +1,5 @@
/*!
* Vue.js v2.2.3
* Vue.js v2.2.4
* (c) 2014-2017 Evan You
* Released under the MIT License.
*/
Expand Down Expand Up @@ -2122,8 +2122,9 @@ function mountComponent (
if ("development" !== 'production' && config.performance && mark) {
updateComponent = function () {
var name = vm._name;
var startTag = "start " + name;
var endTag = "end " + name;
var id = vm._uid;
var startTag = "vue-perf-start:" + id;
var endTag = "vue-perf-end:" + id;

mark(startTag);
var vnode = vm._render();
Expand Down Expand Up @@ -3656,7 +3657,7 @@ function initMixin (Vue) {
Vue.prototype._init = function (options) {
/* istanbul ignore if */
if ("development" !== 'production' && config.performance && mark) {
mark('init');
mark('vue-perf-init');
}

var vm = this;
Expand Down Expand Up @@ -3695,8 +3696,8 @@ function initMixin (Vue) {
/* istanbul ignore if */
if ("development" !== 'production' && config.performance && mark) {
vm._name = formatComponentName(vm, false);
mark('init end');
measure(((vm._name) + " init"), 'init', 'init end');
mark('vue-perf-init-end');
measure(((vm._name) + " init"), 'vue-perf-init', 'vue-perf-init-end');
}

if (vm.$options.el) {
Expand Down Expand Up @@ -4108,7 +4109,7 @@ Object.defineProperty(Vue$2.prototype, '$isServer', {
get: isServerRendering
});

Vue$2.version = '2.2.3';
Vue$2.version = '2.2.4';

/* */

Expand Down
4 changes: 2 additions & 2 deletions dist/vue.runtime.min.js

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions packages/vue-server-renderer/build.js
Expand Up @@ -5726,7 +5726,7 @@ function initMixin (Vue) {
Vue.prototype._init = function (options) {
/* istanbul ignore if */
if (process.env.NODE_ENV !== 'production' && config.performance && mark) {
mark('init');
mark('vue-perf-init');
}

var vm = this;
Expand Down Expand Up @@ -5767,8 +5767,8 @@ function initMixin (Vue) {
/* istanbul ignore if */
if (process.env.NODE_ENV !== 'production' && config.performance && mark) {
vm._name = formatComponentName(vm, false);
mark('init end');
measure(((vm._name) + " init"), 'init', 'init end');
mark('vue-perf-init-end');
measure(((vm._name) + " init"), 'vue-perf-init', 'vue-perf-init-end');
}

if (vm.$options.el) {
Expand Down
2 changes: 1 addition & 1 deletion packages/vue-server-renderer/package.json
@@ -1,6 +1,6 @@
{
"name": "vue-server-renderer",
"version": "2.2.3",
"version": "2.2.4",
"description": "server renderer for Vue 2.0",
"main": "index.js",
"repository": {
Expand Down
6 changes: 3 additions & 3 deletions packages/vue-template-compiler/build.js
Expand Up @@ -5594,7 +5594,7 @@ function initMixin (Vue) {
Vue.prototype._init = function (options) {
/* istanbul ignore if */
if (process.env.NODE_ENV !== 'production' && config.performance && mark) {
mark('init');
mark('vue-perf-init');
}

var vm = this;
Expand Down Expand Up @@ -5635,8 +5635,8 @@ function initMixin (Vue) {
/* istanbul ignore if */
if (process.env.NODE_ENV !== 'production' && config.performance && mark) {
vm._name = formatComponentName(vm, false);
mark('init end');
measure(((vm._name) + " init"), 'init', 'init end');
mark('vue-perf-init-end');
measure(((vm._name) + " init"), 'vue-perf-init', 'vue-perf-init-end');
}

if (vm.$options.el) {
Expand Down
2 changes: 1 addition & 1 deletion packages/vue-template-compiler/package.json
@@ -1,6 +1,6 @@
{
"name": "vue-template-compiler",
"version": "2.2.3",
"version": "2.2.4",
"description": "template compiler for Vue 2.0",
"main": "index.js",
"repository": {
Expand Down

0 comments on commit 6cf5d2d

Please sign in to comment.