Skip to content

Commit dc8e993

Browse files
trycontrolmymindQingWei-Li
authored andcommitted
feat(serve): add --index-name to rewrite default index name (#48)
* feat: add index-name option to cli * feat(serve): update serve command to serve index * feat(locales): update translations * fix(gulp): downgrade gulp to 3.9.0, buggy 3.9.1 * build(CI): seems node11 natives need to update
1 parent 032817b commit dc8e993

File tree

8 files changed

+1690
-1476
lines changed

8 files changed

+1690
-1476
lines changed

.travis.yml

+2-1
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ cache:
99
- ./node_modules
1010
install:
1111
- npm install
12-
- npm install -g gulp
12+
- npm install [email protected]
13+
- npm install -g [email protected]
1314
script:
1415
- gulp lint

bin/docsify

+8-1
Original file line numberDiff line numberDiff line change
@@ -72,9 +72,16 @@ var yargs = require('yargs')
7272
nargs: 1,
7373
requiresArg: true,
7474
type: 'number'
75+
},
76+
'index-name': {
77+
alias: 'i',
78+
desc: chalk.gray(y18n.__('serve.indexname')),
79+
nargs: 1,
80+
requiresArg: true,
81+
type: 'string'
7582
}
7683
}),
77-
handler: (argv) => run.serve(argv.path, argv.open, argv.port, argv.P)
84+
handler: (argv) => run.serve(argv.path, argv.open, argv.port, argv.P, argv.i)
7885
})
7986
.command({
8087
command: 'start <path>',

lib/commands/serve.js

+5-4
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,13 @@ const util = require('../util/index')
1111
var exists = util.exists
1212
var resolve = util.resolve
1313

14-
module.exports = function (path, openInBrowser, port, livereloadPort) {
14+
module.exports = function (path, openInBrowser, port, livereloadPort, indexName) {
1515
path = resolve(path || '.')
16-
var indexFile = resolve(path, 'index.html')
16+
var indexFile = resolve(path, indexName || 'index.html')
1717

1818
if (!exists(indexFile)) {
19-
const msg = '\nNo docs found, please run ' + chalk.green('docsify init') + ' first.\n'
19+
const msg = '\nNo docs found ' + indexFile +
20+
'\nPlease run ' + chalk.green('docsify init') + ' first.\n'
2021
console.log(msg)
2122
process.exit(0)
2223
}
@@ -25,7 +26,7 @@ module.exports = function (path, openInBrowser, port, livereloadPort) {
2526
server.use(livereload({
2627
port: livereloadPort
2728
}))
28-
server.use(serveStatic(path))
29+
server.use(serveStatic(path, { 'index': indexName }))
2930
server.listen(port)
3031
lrserver.createServer({
3132
extraExts: ['md'],

0 commit comments

Comments
 (0)