Skip to content

Commit 6178ea7

Browse files
authored
Merge pull request #24 from garaemon/2023.01.03-update
Hotfix for failure to find commands
2 parents 002e00c + 0b07cbc commit 6178ea7

File tree

5 files changed

+8
-11
lines changed

5 files changed

+8
-11
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,4 @@ out
22
node_modules
33
.vscode-test/
44
.vsix
5+
*.vsix

.vscodeignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
.gitignore
44
.vscode-test/**
55
.vscode/**
6-
node_modules/**
6+
# node_modules/**
77
out/**/*.map
88
out/test/**
99
src/**

package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "vscode-emacs-tab",
33
"displayName": "vscode-emacs-tab",
44
"description": "emacs like tab behavior",
5-
"version": "0.0.11",
5+
"version": "0.0.17",
66
"publisher": "garaemon",
77
"repository": {
88
"type": "git",
@@ -18,7 +18,7 @@
1818
"onCommand:emacs-tab.reindentCurrentLine",
1919
"onCommand:emacs-tab.debugEstimateIndentLevel"
2020
],
21-
"main": "./out/extension",
21+
"main": "./out/extension.js",
2222
"contributes": {
2323
"commands": [
2424
{

tsconfig.json

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,12 @@
11
{
22
"compilerOptions": {
33
"module": "commonjs",
4-
"target": "es6",
4+
"target": "ES2020",
55
"outDir": "out",
66
"lib": [
7-
"es6"
7+
"ES2020"
88
],
99
"sourceMap": true,
1010
"rootDir": "src"
11-
},
12-
"exclude": [
13-
"node_modules",
14-
".vscode-test"
15-
]
11+
}
1612
}

0 commit comments

Comments
 (0)