File tree Expand file tree Collapse file tree 3 files changed +9
-1
lines changed Expand file tree Collapse file tree 3 files changed +9
-1
lines changed Original file line number Diff line number Diff line change 11# Changelog
22
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+
36## 9.4.2
47* [ Bug fix: Use custom transformer when building solution references] ( https://github.com/TypeStrong/ts-loader/pull/1550 ) [ #1025 ] - thanks @feosuna1
58
Original file line number Diff line number Diff line change 11{
22 "name" : " ts-loader" ,
3- "version" : " 9.4.2 " ,
3+ "version" : " 9.4.3 " ,
44 "description" : " TypeScript loader for webpack" ,
55 "main" : " index.js" ,
66 "types" : " dist" ,
Original file line number Diff line number Diff line change @@ -147,6 +147,11 @@ function successfulTypeScriptInstance(
147147 }
148148
149149 const { configFilePath, configFile } = configFileAndPath ;
150+
151+ if ( configFilePath ) {
152+ loader . addBuildDependency ( configFilePath ) ;
153+ }
154+
150155 const filePathKeyMapper = createFilePathKeyMapper ( compiler , loaderOptions ) ;
151156 if ( configFilePath && loaderOptions . projectReferences ) {
152157 const configFileKey = filePathKeyMapper ( configFilePath ) ;
You can’t perform that action at this time.
0 commit comments