Skip to content

Commit

Permalink
Remove coverage transform from debug mode as it mangles (source) sour…
Browse files Browse the repository at this point in the history
…ce files, closes #119
  • Loading branch information
lathonez committed Jul 12, 2016
1 parent 3395974 commit 74ec6fa
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 1 deletion.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
<a name="1.9.2"></a>
# 1.9.2 (2016-07-12)

### Bug Fixes

* **Unit Test**: Make (source) source maps available to debug mode by remove the coverage transform which seems to be mangling them [#119](https://github.com/lathonez/clicker/issues/119) ([](https://github.com/lathonez/clicker/commit/))

<a name="1.9.1"></a>
# 1.9.1 (2016-07-11)

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@
"typings": "1.3.1"
},
"name": "clicker",
"version": "1.9.1",
"version": "1.9.2",
"description": "clicker: An Ionic project",
"cordovaPlugins": [
"cordova-plugin-device",
Expand Down
6 changes: 6 additions & 0 deletions test/gulpfile.ts
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,12 @@ gulp.task('karma-debug', (done: Function) => {
singleRun: false,
browsers: ['Chrome'],
reporters: ['mocha'],
browserify: {
debug: true,
plugin: [
['tsify'],
],
},
};

new karma.Server(karmaOpts, done).start();
Expand Down

0 comments on commit 74ec6fa

Please sign in to comment.