Skip to content
This repository was archived by the owner on Aug 18, 2018. It is now read-only.

Commit 3679e3b

Browse files
committed
typescript, webpack, definitions, etc. updated (like fountain v1.0)
1 parent 1673c4a commit 3679e3b

3 files changed

Lines changed: 4 additions & 4 deletions

File tree

conf/webpack-dist.conf.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ module.exports = {
5252
},
5353
plugins: [
5454
new webpack.optimize.OccurrenceOrderPlugin(),
55-
new webpack.NoErrorsPlugin()
55+
new webpack.NoEmitOnErrorsPlugin()
5656
// new webpack.optimize.UglifyJsPlugin({
5757
// compress: {unused: true, dead_code: true} // eslint-disable-line camelcase
5858
// })

gulp_tasks/webpack.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,9 +58,9 @@ function webpackWrapper(watch, conf, done) {
5858
gulp.src('dist/*', {read: false})
5959
.pipe(clean());
6060

61-
var tsProjectDts = ts.createProject('conf/ts.conf.json', { sortOutput: true });
61+
var tsProjectDts = ts.createProject('conf/ts.conf.json');
6262
var tsResult = gulp.src('src/library/**.ts')
63-
.pipe(ts(tsProjectDts));
63+
.pipe(tsProjectDts());
6464
tsResult.dts
6565
.pipe(deleteLines({
6666
'filters': [ /^\/\/\//i]

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "ts-angular-jsonapi",
3-
"version": "0.6.1",
3+
"version": "0.6.2",
44
"description": "JSONAPI library developed for AngularJS in Typescript",
55
"repository": {
66
"type": "git",

0 commit comments

Comments
 (0)