-
-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
dependency updates and switch back to JS (#115)
- Loading branch information
Showing
10 changed files
with
1,139 additions
and
556 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,9 @@ | ||
root = true | ||
|
||
[*.js] | ||
indent_style = tab | ||
indent_size = 4 | ||
|
||
[*.md] | ||
indent_style = space | ||
indent_size = 3 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,6 @@ | |
out/ | ||
dist/ | ||
*.vsix | ||
*.js | ||
|
||
# editor files | ||
.vscode/ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,7 +5,7 @@ | |
# whitelist needed files | ||
!package.json | ||
|
||
!out/*.js | ||
!src/*.js | ||
!out/*.json | ||
|
||
!images/icon.png | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,9 +12,9 @@ | |
"publisher": "serkonda7", | ||
"engines": { | ||
"node": ">=18", | ||
"vscode": "^1.82.0", | ||
"pnpm": ">=8" | ||
"vscode": "^1.82.0" | ||
}, | ||
"packageManager": "[email protected]+sha512.140036830124618d624a2187b50d04289d5a087f326c9edfc0ccd733d76c4f52c3a313d4fc148794a2a9d81553016004e6742e8cf850670268a7387fc220c903", | ||
"categories": [ | ||
"Programming Languages", | ||
"Snippets", | ||
|
@@ -29,7 +29,7 @@ | |
"onLanguage:wwb", | ||
"workspaceContains:**/*.{docm,xlsm,pptm,xlam,ppam}" | ||
], | ||
"main": "./out/extension.js", | ||
"main": "./src/main.js", | ||
"capabilities": { | ||
"untrustedWorkspaces": { | ||
"supported": true | ||
|
@@ -115,18 +115,17 @@ | |
} | ||
}, | ||
"scripts": { | ||
"compile": "bait --library -o out/extension.js src", | ||
"test": "pnpm run convert-yaml && pnpm run test-vba && pnpm run test-wwb", | ||
"test-vba": "vscode-tmgrammar-test -g ./out/vba.json \"syntaxes/tests/vba/*.bas\"", | ||
"test-wwb": "vscode-tmgrammar-test -g ./out/wwb.json \"syntaxes/tests/other/*.wwd\"", | ||
"install-dev-ext": "vsce package -o ./out/vscode-vba-dev.vsix && code --install-extension ./out/vscode-vba-dev.vsix --force", | ||
"package": "vsce package", | ||
"convert-yaml": "yaml2json language-configuration.yml \"syntaxes/*.yaml-tmlanguage\" \"snippets/*.yml\"", | ||
"vscode:prepublish": "pnpm run compile && pnpm run convert-yaml" | ||
"vscode:prepublish": "pnpm run convert-yaml" | ||
}, | ||
"devDependencies": { | ||
"@serkonda7/yaml2json": "^0.9.0", | ||
"@vscode/vsce": "~2.24.0", | ||
"@vscode/vsce": "~2.30.0", | ||
"vscode-tmgrammar-test": "~0.1.3" | ||
} | ||
} |
Oops, something went wrong.