Skip to content

Commit

Permalink
Merge pull request #24 from garaemon/2023.01.03-update
Browse files Browse the repository at this point in the history
Hotfix for failure to find commands
  • Loading branch information
garaemon authored Jan 3, 2023
2 parents 002e00c + 0b07cbc commit 6178ea7
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 11 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,4 @@ out
node_modules
.vscode-test/
.vsix
*.vsix
2 changes: 1 addition & 1 deletion .vscodeignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
.gitignore
.vscode-test/**
.vscode/**
node_modules/**
# node_modules/**
out/**/*.map
out/test/**
src/**
Expand Down
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "vscode-emacs-tab",
"displayName": "vscode-emacs-tab",
"description": "emacs like tab behavior",
"version": "0.0.11",
"version": "0.0.17",
"publisher": "garaemon",
"repository": {
"type": "git",
Expand All @@ -18,7 +18,7 @@
"onCommand:emacs-tab.reindentCurrentLine",
"onCommand:emacs-tab.debugEstimateIndentLevel"
],
"main": "./out/extension",
"main": "./out/extension.js",
"contributes": {
"commands": [
{
Expand Down
10 changes: 3 additions & 7 deletions tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,16 +1,12 @@
{
"compilerOptions": {
"module": "commonjs",
"target": "es6",
"target": "ES2020",
"outDir": "out",
"lib": [
"es6"
"ES2020"
],
"sourceMap": true,
"rootDir": "src"
},
"exclude": [
"node_modules",
".vscode-test"
]
}
}

0 comments on commit 6178ea7

Please sign in to comment.