Skip to content

Commit fdde0cb

Browse files
Fix integration
1 parent 27a19a7 commit fdde0cb

File tree

4 files changed

+12
-16
lines changed

4 files changed

+12
-16
lines changed

gulpfile.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ gulp.task('dist', ['copy'], function() {
5858
gulp.task('clean', del.bind(null, ['build', 'coverage', 'dist']));
5959

6060
gulp.task('ci', ['lint', 'test-ci'], function () {
61-
gulp.src('./coverage/Chrome*/lcov.info')
61+
gulp.src('./coverage/**/lcov.info')
6262
.pipe(coveralls());
6363
});
6464

karma.conf.ci.js

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ module.exports = function (config) {
6666
// platform: 'Windows 8',
6767
// version: '10'
6868
//},
69-
slIE9: {
69+
slIE7: {
7070
base: 'SauceLabs',
7171
browserName: 'internet explorer',
7272
platform: 'Windows XP',
@@ -78,7 +78,9 @@ module.exports = function (config) {
7878
basePath: '',
7979
frameworks: ['jasmine'],
8080
files: [
81-
'dist/error-stack-parser-with-polyfills.min.js',
81+
'polyfills.js',
82+
'node_modules/stackframe/dist/stackframe.js',
83+
'error-stack-parser.js',
8284
'spec/fixtures/captured-errors.js',
8385
'spec/spec-helper.js',
8486
'spec/*-spec.js'

karma.conf.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ module.exports = function (config) {
33
basePath: '',
44
frameworks: ['jasmine'],
55
files: [
6-
'node_modules/stackframe/stackframe.js',
6+
'node_modules/stackframe/dist/stackframe.js',
77
'error-stack-parser.js',
88
'spec/fixtures/captured-errors.js',
99
'spec/spec-helper.js',

package.json

Lines changed: 6 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,10 @@
33
"description": "Extract meaning from JS Errors",
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
],
8-
"version": "1.2.1",
9+
"version": "1.2.2",
910
"license": "SEE LICENSE IN LICENSE",
1011
"keywords": [
1112
"stacktrace",
@@ -21,8 +22,7 @@
2122
"url": "git://github.com/stacktracejs/error-stack-parser.git"
2223
},
2324
"devDependencies": {
24-
"colors": "~1.0.3",
25-
"coveralls": "^2.11.3",
25+
"colors": "^1.1.2",
2626
"del": "^1.2.0",
2727
"gulp": "^3.9.0",
2828
"gulp-concat": "^2.6.0",
@@ -38,20 +38,14 @@
3838
"karma-ie-launcher": "^0.1.5",
3939
"karma-jasmine": "^0.1.6",
4040
"karma-opera-launcher": "^0.1.0",
41-
"karma-phantomjs2-launcher": "^0.3.0",
41+
"karma-phantomjs2-launcher": "^0.3.1",
4242
"karma-safari-launcher": "^0.1.1",
4343
"karma-sauce-launcher": "^0.2.10",
4444
"run-sequence": "^1.1.1"
4545
},
4646
"bugs": {
4747
"url": "https://github.com/stacktracejs/error-stack-parser/issues"
4848
},
49-
"licenses": [
50-
{
51-
"type": "Public Domain",
52-
"url": "https://github.com/stacktracejs/error-stack-parser/blob/master/LICENSE"
53-
}
54-
],
5549
"main": "./error-stack-parser.js",
5650
"files": [
5751
"LICENSE",
@@ -60,6 +54,6 @@
6054
"dist/"
6155
],
6256
"scripts": {
63-
"test": "gulp clean test"
57+
"test": "gulp test"
6458
}
6559
}

0 commit comments

Comments
 (0)