Skip to content

Commit 7e19c7a

Browse files
committed
Fixed an issue where require may not be defined and would throw a reference error.
1 parent 619bfb0 commit 7e19c7a

File tree

4 files changed

+5
-3
lines changed

4 files changed

+5
-3
lines changed

dist/exceptionless.js

+1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/exceptionless.min.js

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/exceptionless.min.js.map

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

umd.template.jst

+1
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ var globalDeps = deps ? stdDeps.concat(_.map(deps, function(dep) { return 'root.
1010
1111
%>
1212
(function(root, factory) {
13+
var require, exports, module;
1314
if (typeof define === 'function' && define.amd) {
1415
define('<%= namespace %>', <%= amdDeps ? JSON.stringify(amdDeps) + ', ' : '[], ' %>factory);
1516
} else if (typeof exports === 'object') {

0 commit comments

Comments
 (0)