Skip to content

Commit 698be8c

Browse files
Eric RowellEric Rowell
authored andcommitted
try again
1 parent b63ea00 commit 698be8c

File tree

6 files changed

+19
-7
lines changed

6 files changed

+19
-7
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Changlog
22

3-
## v1.5.3
3+
## v1.5.4
44
* fix npm export
55

66
## v1.5.0

engine/dist/ElGrapho.js

Lines changed: 12 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
1-
var ElGrapho =
2-
/******/ (function(modules) { // webpackBootstrap
1+
(function webpackUniversalModuleDefinition(root, factory) {
2+
if(typeof exports === 'object' && typeof module === 'object')
3+
module.exports = factory();
4+
else if(typeof define === 'function' && define.amd)
5+
define([], factory);
6+
else if(typeof exports === 'object')
7+
exports["ElGrapho"] = factory();
8+
else
9+
root["ElGrapho"] = factory();
10+
})(this, function() {
11+
return /******/ (function(modules) { // webpackBootstrap
312
/******/ // The module cache
413
/******/ var installedModules = {};
514
/******/
@@ -28213,4 +28222,5 @@ module.exports = function(module) {
2821328222
/***/ })
2821428223

2821528224
/******/ });
28225+
});
2821628226
//# sourceMappingURL=ElGrapho.js.map

engine/dist/ElGrapho.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.

package-lock.json

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

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "elgrapho",
3-
"version": "1.5.3",
3+
"version": "1.5.4",
44
"main": "engine/dist/ElGrapho.min.js",
55
"author": "Eric Rowell",
66
"license": "SEE LICENSE IN <LICENSE.md>",

webpack.config.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,9 @@ module.exports = {
33
output: {
44
path: __dirname + '/engine/dist',
55
filename: 'ElGrapho.js',
6-
library: 'ElGrapho'
6+
library: 'ElGrapho',
7+
libraryTarget: 'umd',
8+
globalObject: 'this'
79
},
810
devtool: 'source-map',
911
mode: 'development' // development or production

0 commit comments

Comments
 (0)