Skip to content

Commit ae03571

Browse files
committed
chore:更新todo
1 parent eff5785 commit ae03571

File tree

4 files changed

+9
-5
lines changed

4 files changed

+9
-5
lines changed

Diff for: Readme.md

+1
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@
1515
- [ ] 8.实现在编辑器中预览图片(感觉可以不做)
1616
- [ ] 9.优化随机题目的随机方式,减少请求
1717
- [ ] 10.私人项目部署的实现方案
18+
- [ ] 11.创建一个单独指令lc,用于项目的单独指令,忽略npm/yarn/pnpm的执行差异/歧义
1819

1920
## How to use for yourself ?
2021

Diff for: common/scripts/get.js

-4
This file was deleted.

Diff for: common/scripts/test.js

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
const {getQuestionListJson} = require("../resources/questionListJson");
2+
// fetch("https://leetcode.cn/graphql/", getQuestionListJson(1)).then((res => res.json())).then((res)=>{
3+
// return res?.data?.problemsetQuestionList?.questions?.map(q=>q.frontendQuestionId);
4+
// });
5+
const args = process.argv.slice(2);
6+
console.log(args)

Diff for: package.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,8 @@
66
"type": "commonjs",
77
"scripts": {
88
"leet-check": "node common/scripts/check.js",
9-
"leet-create": "node common/scripts/create.js"
9+
"leet-create": "node common/scripts/create.js",
10+
"test": "node common/scripts/test.js"
1011
},
1112
"author": "EternalHeart",
1213
"license": "ISC",

0 commit comments

Comments
 (0)