File tree Expand file tree Collapse file tree 4 files changed +446
-750
lines changed Expand file tree Collapse file tree 4 files changed +446
-750
lines changed Original file line number Diff line number Diff line change
1
+ ## v0.4.8
2
+
3
+ * [ Fix(types collision): update webpack] ( https://github.com/Realytics/fork-ts-checker-webpack-plugin/pull/151 ) (#142 )
4
+
1
5
## v0.4.7
2
6
3
7
* [ Fix(types collision): update chalk and chokidar] ( https://github.com/Realytics/fork-ts-checker-webpack-plugin/pull/147 ) (#142 )
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " fork-ts-checker-webpack-plugin" ,
3
- "version" : " 0.4.7 " ,
3
+ "version" : " 0.4.8 " ,
4
4
"description" : " Runs typescript type checker and linter on separate process." ,
5
5
"main" : " lib/index.js" ,
6
6
"types" : " lib/types/index.d.ts" ,
58
58
"@types/minimatch" : " ^3.0.1" ,
59
59
"@types/node" : " ^8.0.26" ,
60
60
"@types/resolve" : " 0.0.4" ,
61
- "@types/webpack" : " ^3.0.10 " ,
61
+ "@types/webpack" : " ^4.4.9 " ,
62
62
"chai" : " ^3.5.0" ,
63
63
"css-loader" : " ^0.28.7" ,
64
64
"eslint" : " ^3.19.0" ,
75
75
"vue-class-component" : " ^6.1.1" ,
76
76
"vue-loader" : " ^15.2.4" ,
77
77
"vue-template-compiler" : " ^2.5.16" ,
78
- "webpack" : " ^4.0.0 "
78
+ "webpack" : " ^4.16.5 "
79
79
},
80
80
"peerDependencies" : {
81
81
"tslint" : " ^4.0.0 || ^5.0.0" ,
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ import childProcess = require('child_process');
4
4
import chalk , { Chalk } from 'chalk' ;
5
5
import fs = require( 'fs' ) ;
6
6
import os = require( 'os' ) ;
7
- import webpack = require ( 'webpack' ) ;
7
+ import * as webpack from 'webpack' ;
8
8
import isString = require( 'lodash.isstring' ) ;
9
9
import isFunction = require( 'lodash.isfunction' ) ;
10
10
import CancellationToken = require( './CancellationToken' ) ;
You can’t perform that action at this time.
0 commit comments