Skip to content

Commit

Permalink
chore: release v0.4.2
Browse files Browse the repository at this point in the history
  • Loading branch information
xiaoluoboding committed Aug 2, 2019
1 parent 1017ceb commit d3291a5
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion lib/vue-smart-widget.common.js
Original file line number Diff line number Diff line change
Expand Up @@ -14729,7 +14729,7 @@ module.exports = '\x09\x0A\x0B\x0C\x0D\x20\xA0\u1680\u180E\u2000\u2001\u2002\u20
/***/ "8bbf":
/***/ (function(module, exports) {

module.exports = require("Vue");
module.exports = require("vue");

/***/ }),

Expand Down
8 changes: 4 additions & 4 deletions lib/vue-smart-widget.umd.js
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
(function webpackUniversalModuleDefinition(root, factory) {
if(typeof exports === 'object' && typeof module === 'object')
module.exports = factory(require("Vue"));
module.exports = factory(require("vue"));
else if(typeof define === 'function' && define.amd)
define(["Vue"], factory);
define(["vue"], factory);
else if(typeof exports === 'object')
exports["vue-smart-widget"] = factory(require("Vue"));
exports["vue-smart-widget"] = factory(require("vue"));
else
root["vue-smart-widget"] = factory(root["Vue"]);
root["vue-smart-widget"] = factory(root["vue"]);
})((typeof self !== 'undefined' ? self : this), function(__WEBPACK_EXTERNAL_MODULE__8bbf__) {
return /******/ (function(modules) { // webpackBootstrap
/******/ // The module cache
Expand Down
2 changes: 1 addition & 1 deletion lib/vue-smart-widget.umd.min.js

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
{
"name": "vue-smart-widget",
"version": "0.4.1",
"version": "0.4.2",
"description": "Smart widget component for Vue2.5+.",
"author": "xiaoluoboding <xiaoluoboding@gmail.com>",
"main": "lib/vue-smart-widget.umd.min.js",
"main": "lib/vue-smart-widget.common.js",
"unpkg": "lib/vue-smart-widget.umd.min.js",
"keywords": [
"widget",
Expand Down
2 changes: 1 addition & 1 deletion vue.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ const setConfigureWebpack = config => {
// 将 Vue & vue-grid-layout 设置为外部依赖
let externals = [
{
vue: 'Vue'
vue: 'vue'
}
]
return isProd ? { externals } : {}
Expand Down

0 comments on commit d3291a5

Please sign in to comment.