We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 57f15d5 commit 3f5bfefCopy full SHA for 3f5bfef
common/view/finder.view.js
@@ -24,7 +24,7 @@ async function studyMode(baseDir = process.cwd()) {
24
message: '拉题模式',
25
choices: [
26
{ name: '单个选择', value: 'single' },
27
- { name: '全部拉取', value: 'all' }
+ { name: '全部拉取(暂不支持)', value: 'all' }
28
]
29
})
30
if (createMode === 'single') {
@@ -51,7 +51,10 @@ async function studyMode(baseDir = process.cwd()) {
51
52
await createQuestionByTitleSlug(singleChoice, baseDir)
53
}
54
- // if (createMode === 'all') await getHot100QuestionListCode()
+ if (createMode === 'all') {
55
+ console.log('暂不支持')
56
+ // await getHot100QuestionListCode()
57
+ }
58
59
60
async function keywordMode(baseDir = process.cwd()) {
0 commit comments