File tree 3 files changed +9
-1
lines changed
3 files changed +9
-1
lines changed Original file line number Diff line number Diff line change 1
1
# Changelog
2
2
3
+ ## 9.4.3
4
+ * [ Bug fix: add config file as build dependency] ( https://github.com/TypeStrong/ts-loader/pull/1611 ) - thanks @alexander-akait
5
+
3
6
## 9.4.2
4
7
* [ Bug fix: Use custom transformer when building solution references] ( https://github.com/TypeStrong/ts-loader/pull/1550 ) [ #1025 ] - thanks @feosuna1
5
8
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " ts-loader" ,
3
- "version" : " 9.4.2 " ,
3
+ "version" : " 9.4.3 " ,
4
4
"description" : " TypeScript loader for webpack" ,
5
5
"main" : " index.js" ,
6
6
"types" : " dist" ,
Original file line number Diff line number Diff line change @@ -147,6 +147,11 @@ function successfulTypeScriptInstance(
147
147
}
148
148
149
149
const { configFilePath, configFile } = configFileAndPath ;
150
+
151
+ if ( configFilePath ) {
152
+ loader . addBuildDependency ( configFilePath ) ;
153
+ }
154
+
150
155
const filePathKeyMapper = createFilePathKeyMapper ( compiler , loaderOptions ) ;
151
156
if ( configFilePath && loaderOptions . projectReferences ) {
152
157
const configFileKey = filePathKeyMapper ( configFilePath ) ;
You can’t perform that action at this time.
0 commit comments