Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

cli finish basically #5

Merged
merged 35 commits into from
Feb 8, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
35 commits
Select commit Hold shift + click to select a range
26fcffb
feat(cli): 简化命令 使得命令可以在任何路径下运行
Hedwig-Fang Feb 5, 2024
8e7ebdd
fix:依赖调整
wh131462 Feb 6, 2024
f935881
fix:cli指令文件修改
wh131462 Feb 6, 2024
ce9a285
fix:修复路径带空格无法识别的bug
wh131462 Feb 6, 2024
8ec45e9
docs:调整todo
wh131462 Feb 6, 2024
b9fe2d0
test(test): 补充测试用例
Hedwig-Fang Feb 6, 2024
2b5d8fd
test: add parse file path test case
wh131462 Feb 6, 2024
95be0be
fix:指令重构
wh131462 Feb 6, 2024
b6e728f
feat:scripts目录提升
wh131462 Feb 6, 2024
306e754
docs:目录文档
wh131462 Feb 6, 2024
007bde5
fix:目录调整
wh131462 Feb 6, 2024
2eb9283
Merge branch 'dev' into feature-test
Hedwig-Fang Feb 6, 2024
276d36b
fix:目录调整
wh131462 Feb 6, 2024
c8b2749
chore:引入依赖包
wh131462 Feb 6, 2024
f894e30
feat: node vm执行index.js脚本
Hedwig-Fang Feb 6, 2024
c8fa09c
Merge branch 'feature-execnode' into dev
Hedwig-Fang Feb 6, 2024
62a449d
docs:更新贡献者
wh131462 Feb 6, 2024
21faf94
chore:忽略缓存文件
wh131462 Feb 6, 2024
7a3a948
refactor: directory refactor
wh131462 Feb 6, 2024
2933545
Merge branch 'refactor-dir' into dev
wh131462 Feb 6, 2024
9e96e0a
feat: finish the view create & check
wh131462 Feb 7, 2024
62317a1
feat:完成lc&lk指令
wh131462 Feb 7, 2024
da6aa6d
fix: 优化代码
wh131462 Feb 7, 2024
9520e75
feat: add getQuestionChineseName function to get chinese name
wh131462 Feb 7, 2024
8f76271
chore: del scripts and .vscode files & ignore .vscode
wh131462 Feb 7, 2024
39675a8
docs: update todo & achive
wh131462 Feb 7, 2024
ffd9e29
perf: better scripts and easy mode to create question in project
wh131462 Feb 7, 2024
1affd2a
feat: publish config & build config
wh131462 Feb 7, 2024
5af4b70
chore: del src
wh131462 Feb 8, 2024
5a257f4
fix: perfect version for cli install
wh131462 Feb 8, 2024
50a35c7
fix:指令打包完善
wh131462 Feb 8, 2024
d51751b
fix:easy mode script
wh131462 Feb 8, 2024
28e0807
docs:todo 拆分成单独文件
wh131462 Feb 8, 2024
acbabf3
chore:路径调整成全局路径
wh131462 Feb 8, 2024
1b89e4d
docs: add CHANGELOG and TO-DO
wh131462 Feb 8, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fix:依赖调整
  • Loading branch information
wh131462 committed Feb 6, 2024
commit 8e7ebddcbc726e3f616318b7640886d7b3622b4f
16 changes: 9 additions & 7 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,9 @@
"#common/*": "./common/*"
},
"bin": {
"lc": "./bin/lc-enter.js",
"lk": "./bin/lk-enter.js"
"lk": "bin/lk.js",
"lf": "bin/lf.js",
"lc": "bin/lc.js"
},
"scripts": {
"leet-create": "node common/scripts/create.js",
Expand All @@ -23,20 +24,21 @@
"author": "EternalHeart",
"license": "ISC",
"dependencies": {
"commitizen": "^4.3.0",
"cz-conventional-changelog": "^3.3.0",
"commander": "^12.0.0",
"inquirer": "^9.2.14",
"jsdom": "^23.2.0",
"vite": "^5.0.11"
"realm": "^12.6.0"
},
"devDependencies": {
"@types/node": "^20.11.5",
"@vitest/coverage-v8": "^1.2.2",
"commitizen": "^4.3.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.56.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.29.1",
"inquirer": "^9.2.14",
"rimraf": "^5.0.5",
"shelljs": "^0.8.5",
"vite": "^5.0.11",
"vitest": "^1.2.2"
},
"config": {
Expand Down
Loading