8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1bccb44 commit f815228Copy full SHA for f815228
tests/e2e/tests/build/filename.ts
@@ -1,10 +1,12 @@
1
import {ng} from '../../utils/process';
2
import {expectFileToExist} from '../../utils/fs';
3
import {updateJsonFile} from '../../utils/project';
4
+import {copyFile} from '../../utils/fs';
5
6
7
export default function() {
8
return Promise.resolve()
9
+ .then(() => copyFile('src/index.html', 'src/config-index.html'))
10
.then(() => updateJsonFile('angular-cli.json', configJson => {
11
const app = configJson['apps'][0];
12
app['outDir'] = 'config-build-output';
0 commit comments