-
Notifications
You must be signed in to change notification settings - Fork 12k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(build) use appConfig.index to set output index file
Pass appConfig.index to the HtmlWebpackPlugin’s filename property. Closes #2241
- Loading branch information
1 parent
50c0f17
commit c16527c
Showing
2 changed files
with
16 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
import {ng} from '../../utils/process'; | ||
import {expectFileToExist} from '../../utils/fs'; | ||
import {updateJsonFile} from '../../utils/project'; | ||
|
||
|
||
export default function() { | ||
return Promise.resolve() | ||
.then(() => updateJsonFile('angular-cli.json', configJson => { | ||
const app = configJson['apps'][0]; | ||
app['outDir'] = 'config-build-output'; | ||
app['index'] = 'config-index.html'; | ||
})) | ||
.then(() => ng('build')) | ||
.then(() => expectFileToExist('./config-build-output/config-index.html')); | ||
} |