Skip to content

Commit

Permalink
feat: omit already used shortcuts (#12)
Browse files Browse the repository at this point in the history
Co-authored-by: Ilya Golovin <ilya.golovin.14.01.12@gmail.com>
Co-authored-by: Ilya Golovin <me@ilscc.ru>
  • Loading branch information
3 people authored Jul 24, 2022
1 parent 52193f2 commit 56b22cb
Show file tree
Hide file tree
Showing 13 changed files with 623 additions and 72 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,12 @@ experiment-*
.DS_Store
.env.local
.env.*.local
src/configurationTypeCache.jsonc

.vscode-test
.vscode-test-web
.eslintcache
Thumbs.db
.idea/

src/generated.ts
src/generated.ts
16 changes: 16 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
{
"configurations": [
{
"args": [
"--extensionDevelopmentPath=${workspaceFolder}/out",
//
],
"name": "Launch Extension",
"outFiles": [
"${workspaceFolder}/out/**/*.js"
],
"request": "launch",
"type": "extensionHost"
}
]
}
8 changes: 7 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,9 @@
"contributes": {},
"scripts": {
"start": "vscode-framework start",
"lint": "eslint src/**"
"build": "vscode-framework build",
"lint": "eslint src/**",
"test": "vitest --globals"
},
"devDependencies": {
"@types/node": "^17.0.35",
Expand All @@ -29,9 +31,13 @@
"typescript": "^4.6.4"
},
"dependencies": {
"@unocss/core": "^0.44.5",
"@zardoy/utils": "^0.0.8",
"postcss": "^8.4.14",
"@unocss/preset-wind": "^0.34.1",
"@zardoy/vscode-utils": "^0.0.17",
"string-dedent": "^3.0.1",
"vitest": "^0.16.0",
"vscode-framework": "^0.0.18"
},
"prettier": {
Expand Down
Loading

0 comments on commit 56b22cb

Please sign in to comment.