Skip to content

Commit

Permalink
[build] 7.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
ktsn committed Feb 19, 2019
1 parent 9b0dbdf commit c5b899f
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 8 deletions.
10 changes: 7 additions & 3 deletions dist/vue-class-component.common.js
@@ -1,5 +1,5 @@
/**
* vue-class-component v6.3.2
* vue-class-component v7.0.1
* (c) 2015-present Evan You
* @license MIT
*/
Expand All @@ -11,7 +11,10 @@ function _interopDefault (ex) { return (ex && (typeof ex === 'object') && 'defau

var Vue = _interopDefault(require('vue'));

var reflectionIsSupported = typeof Reflect !== 'undefined' && Reflect.defineMetadata;
// The rational behind the verbose Reflect-feature check below is the fact that there are polyfills
// which add an implementation for Reflect.defineMetadata but not for Reflect.getOwnMetadataKeys.
// Without this check consumers will encounter hard to track down runtime errors.
var reflectionIsSupported = typeof Reflect !== 'undefined' && Reflect.defineMetadata && Reflect.getOwnMetadataKeys;
function copyReflectionMetadata(to, from) {
forwardMetadata(to, from);
Object.getOwnPropertyNames(from.prototype).forEach(function (key) {
Expand Down Expand Up @@ -129,7 +132,8 @@ var $internalHooks = [
'activated',
'deactivated',
'render',
'errorCaptured' // 2.5
'errorCaptured',
'serverPrefetch' // 2.6
];
function componentFactory(Component, options) {
if (options === void 0) { options = {}; }
Expand Down
10 changes: 7 additions & 3 deletions dist/vue-class-component.js
@@ -1,5 +1,5 @@
/**
* vue-class-component v6.3.2
* vue-class-component v7.0.1
* (c) 2015-present Evan You
* @license MIT
*/
Expand All @@ -11,7 +11,10 @@

Vue = Vue && Vue.hasOwnProperty('default') ? Vue['default'] : Vue;

var reflectionIsSupported = typeof Reflect !== 'undefined' && Reflect.defineMetadata;
// The rational behind the verbose Reflect-feature check below is the fact that there are polyfills
// which add an implementation for Reflect.defineMetadata but not for Reflect.getOwnMetadataKeys.
// Without this check consumers will encounter hard to track down runtime errors.
var reflectionIsSupported = typeof Reflect !== 'undefined' && Reflect.defineMetadata && Reflect.getOwnMetadataKeys;
function copyReflectionMetadata(to, from) {
forwardMetadata(to, from);
Object.getOwnPropertyNames(from.prototype).forEach(function (key) {
Expand Down Expand Up @@ -129,7 +132,8 @@
'activated',
'deactivated',
'render',
'errorCaptured' // 2.5
'errorCaptured',
'serverPrefetch' // 2.6
];
function componentFactory(Component, options) {
if (options === void 0) { options = {}; }
Expand Down
4 changes: 2 additions & 2 deletions dist/vue-class-component.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit c5b899f

Please sign in to comment.