We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 089c241 commit e882755Copy full SHA for e882755
4 files changed
dist/stacktrace.js
@@ -2,7 +2,7 @@
2
'use strict';
3
// Universal Module Definition (UMD) to support AMD, CommonJS/Node.js, Rhino, and browsers.
4
if (typeof define === 'function' && define.amd) {
5
- define(['error-stack-parser', 'stack-generator', 'stacktrace-gps', 'es6-promise'], factory);
+ define('stacktrace', ['error-stack-parser', 'stack-generator', 'stacktrace-gps', 'es6-promise'], factory);
6
} else if (typeof exports === 'object') {
7
module.exports = factory(require('error-stack-parser'), require('stack-generator'), require('stacktrace-gps'), require('es6-promise'));
8
} else {
0 commit comments