Skip to content

Commit 88d78f8

Browse files
committed
Change repo structure
1 parent d5451c9 commit 88d78f8

File tree

15 files changed

+12
-14
lines changed

15 files changed

+12
-14
lines changed

.vscode/launch.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
"${workspaceFolder}/testworkspace",
2424
"--disable-extensions",
2525
"--extensionDevelopmentPath=${workspaceFolder}",
26-
"--extensionTestsPath=${workspaceFolder}/out/test/suite/index"
26+
"--extensionTestsPath=${workspaceFolder}/out/test/index"
2727
],
2828
"outFiles": ["${workspaceFolder}/out/test/**/*.js"],
2929
"preLaunchTask": "npm: test-compile"

.vscodeignore

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
.vscode/**
22
.vscode-test/**
3-
out/test/**
43
src/**
4+
test/**
5+
out/**
56
.gitignore
67
vsc-extension-quickstart.md
78
**/tsconfig.json
@@ -11,7 +12,4 @@ vsc-extension-quickstart.md
1112

1213
# Webpack related
1314
node_modules
14-
out/
15-
src/
16-
tsconfig.json
1715
webpack.config.json

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
Provides type hint auto-completion for Python, with completion items for built-in types, classes and the typing module.
44

55

6-
![](static/demo.gif)
6+
![](images/demo.gif)
77

88
## Features
99

File renamed without changes.
File renamed without changes.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"version": "1.0.0",
55
"publisher": "njqdev",
66
"description": "Type hint completion for Python.",
7-
"icon": "static/icon.png",
7+
"icon": "images/icon.png",
88
"repository": {
99
"type": "git",
1010
"url": "https://github.com/njqdev/vscode-python-typehint"
File renamed without changes.
File renamed without changes.
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,11 @@ async function main() {
66
try {
77
// The folder containing the Extension Manifest package.json
88
// Passed to `--extensionDevelopmentPath`
9-
const extensionDevelopmentPath = path.resolve(__dirname, '../../');
9+
const extensionDevelopmentPath = path.resolve(__dirname, '../../src/');
1010

1111
// The path to test runner
1212
// Passed to --extensionTestsPath
13-
const extensionTestsPath = path.resolve(__dirname, './suite/index');
13+
const extensionTestsPath = path.resolve(__dirname, './index');
1414

1515
// Download VS Code, unzip it and run the integration test
1616
await runTests({ extensionDevelopmentPath, extensionTestsPath });

0 commit comments

Comments
 (0)