Skip to content

Commit cf6c1e3

Browse files
Fixed integration
1 parent 26ece56 commit cf6c1e3

File tree

6 files changed

+16
-18
lines changed

6 files changed

+16
-18
lines changed

dist/stacktrace-with-polyfills.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.

dist/stacktrace-with-polyfills.min.js.map

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

dist/stacktrace.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.

dist/stacktrace.min.js.map

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

karma.conf.ci.js

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,11 @@ module.exports = function (config) {
9999
frameworks: ['jasmine', 'sinon'],
100100
files: [
101101
'polyfills.js',
102-
'dist/stacktrace.min.js',
102+
'node_modules/es6-promise/dist/es6-promise.js',
103+
'node_modules/stacktrace-gps/dist/stacktrace-gps.min.js',
104+
'node_modules/error-stack-parser/dist/error-stack-parser.js',
105+
'node_modules/stack-generator/dist/stack-generator.js',
106+
'stacktrace.js',
103107
'spec/fixtures/*.js',
104108
'spec/spec-helper.js',
105109
'spec/*-spec.js'

package.json

Lines changed: 7 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,8 @@
33
"description": "Framework-agnostic, micro-library for getting stack traces in all environments",
44
"maintainers": [
55
"Eric Wendelin <me@eriwen.com> (http://www.eriwen.com)",
6-
"Victor Homyakov <vkhomyackov@gmail.com> (https://github.com/victor-homyakov)"
6+
"Victor Homyakov <vkhomyackov@gmail.com> (https://github.com/victor-homyakov)",
7+
"Oliver Salzburg (https://github.com/oliversalzburg)"
78
],
89
"version": "0.6.4",
910
"license": "SEE LICENSE IN LICENSE",
@@ -20,18 +21,18 @@
2021
"url": "git://github.com/stacktracejs/stacktrace.js.git"
2122
},
2223
"dependencies": {
23-
"error-stack-parser": "~1.1",
24+
"error-stack-parser": "~1.2",
2425
"stack-generator": "~1",
25-
"stacktrace-gps": "^2.1.3"
26+
"stacktrace-gps": "~2.1"
2627
},
2728
"devDependencies": {
28-
"colors": "~1.0.3",
29+
"colors": "^1.1.2",
2930
"del": "^1.2.0",
31+
"es6-promise": "^3.0.2",
3032
"gulp": "^3.9.0",
3133
"gulp-concat": "^2.6.0",
3234
"gulp-coveralls": "^0.1.4",
3335
"gulp-jshint": "^1.11.2",
34-
"gulp-rename": "^1.2.2",
3536
"gulp-sourcemaps": "^1.5.2",
3637
"gulp-uglify": "^1.2.0",
3738
"jasmine-node": "~1.14",
@@ -41,10 +42,9 @@
4142
"karma-coverage": "^0.2.6",
4243
"karma-firefox-launcher": "^0.1.3",
4344
"karma-ie-launcher": "^0.1.5",
44-
"karma-ios-launcher": "^0.0.3",
4545
"karma-jasmine": "^0.1.5",
4646
"karma-opera-launcher": "^0.1.0",
47-
"karma-phantomjs2-launcher": "^0.3.0",
47+
"karma-phantomjs2-launcher": "^0.3.1",
4848
"karma-safari-launcher": "^0.1.1",
4949
"karma-sauce-launcher": "^0.2.10",
5050
"karma-sinon": "^1.0.3",
@@ -54,12 +54,6 @@
5454
"bugs": {
5555
"url": "https://github.com/stacktracejs/stacktrace.js/issues"
5656
},
57-
"licenses": [
58-
{
59-
"type": "Public Domain",
60-
"url": "https://github.com/stacktracejs/stacktrace.js/blob/master/LICENSE"
61-
}
62-
],
6357
"main": "./stacktrace.js",
6458
"scripts": {
6559
"test": "gulp test"

0 commit comments

Comments
 (0)