File tree 5 files changed +5
-6
lines changed
5 files changed +5
-6
lines changed Original file line number Diff line number Diff line change @@ -5,7 +5,3 @@ rm -rf docs-cli
5
5
npm install --ignore-scripts
6
6
7
7
grunt docs-jekyll
8
- if [ -d docs-cli ]; then
9
- cd docs-cli
10
- mv index.md start.md
11
- fi
Original file line number Diff line number Diff line change
1
+ < script type ="text/javascript ">
2
+ window . location = 'start.html' ;
3
+ </ script >
File renamed without changes.
Original file line number Diff line number Diff line change @@ -195,7 +195,7 @@ export class HelpService implements IHelpService {
195
195
await this . throwMissingCommandError ( commandData ) ;
196
196
}
197
197
198
- return ( commandName && commandName . replace ( / \| / g, "-" ) ) || "index " ;
198
+ return ( commandName && commandName . replace ( / \| / g, "-" ) ) || "start " ;
199
199
}
200
200
201
201
private async throwMissingCommandError ( commandData : ICommandData ) : Promise < void > {
Original file line number Diff line number Diff line change @@ -422,7 +422,7 @@ and another one`
422
422
it ( "shows index help when command is not specified" , async ( ) => {
423
423
const injector = createTestInjector ( ) ;
424
424
injector . register ( "fs" , {
425
- enumerateFilesInDirectorySync : ( path : string ) => [ "index .md" ] ,
425
+ enumerateFilesInDirectorySync : ( path : string ) => [ "start .md" ] ,
426
426
readText : ( ) => "index data is read"
427
427
} ) ;
428
428
You can’t perform that action at this time.
0 commit comments