Skip to content

Commit 5fa43be

Browse files
author
Ryan Watts
authored
Merge pull request #1 from JohnstonCode/master
merge upstream
2 parents 518d736 + 4125972 commit 5fa43be

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

57 files changed

+7431
-329
lines changed

.eslintrc.json

Lines changed: 0 additions & 23 deletions
This file was deleted.

.github/issue_template.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
- VSCode Version:
2+
- OS Version:
3+
- Extension Version:
4+
- System Language:
5+
6+
Steps to Reproduce:
7+
8+
1.
9+
2.

.gitignore

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,4 @@
1-
node_modules
1+
node_modules
2+
out
3+
/.vscode-test
4+
/coverage

.travis.yml

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
sudo: false
2+
3+
language: node_js
4+
5+
node_js:
6+
- "node"
7+
8+
os:
9+
- linux
10+
- osx
11+
12+
cache:
13+
directories:
14+
- "node_modules"
15+
16+
before_install:
17+
- if [ $TRAVIS_OS_NAME == "linux" ]; then
18+
export CXX="g++-4.9" CC="gcc-4.9" DISPLAY=:99.0;
19+
sh -e /etc/init.d/xvfb start;
20+
sleep 3;
21+
fi
22+
23+
install:
24+
- npm install
25+
#- npm run prettier
26+
- npm run vscode:prepublish
27+
28+
script:
29+
- npm test --silent
30+
31+
after_success:
32+
- bash <(curl -s https://codecov.io/bash)

.vscode/launch.json

Lines changed: 27 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,29 @@
11
// A launch configuration that launches the extension inside a new window
22
{
3-
"version": "0.1.0",
4-
"configurations": [
5-
{
6-
"name": "Launch Extension",
7-
"type": "extensionHost",
8-
"request": "launch",
9-
"runtimeExecutable": "${execPath}",
10-
"args": ["--extensionDevelopmentPath=${workspaceRoot}" ],
11-
"stopOnEntry": false
12-
},
13-
{
14-
"name": "Launch Tests",
15-
"type": "extensionHost",
16-
"request": "launch",
17-
"runtimeExecutable": "${execPath}",
18-
"args": ["--extensionDevelopmentPath=${workspaceRoot}", "--extensionTestsPath=${workspaceRoot}/test" ],
19-
"stopOnEntry": false
20-
}
21-
]
22-
}
3+
"version": "0.2.0",
4+
"configurations": [
5+
{
6+
"name": "Launch Extension",
7+
"type": "extensionHost",
8+
"request": "launch",
9+
"runtimeExecutable": "${execPath}",
10+
"args": ["--extensionDevelopmentPath=${workspaceRoot}"],
11+
"stopOnEntry": false,
12+
"sourceMaps": true,
13+
"outFiles": ["${workspaceRoot}/out/**/*.js"]
14+
},
15+
{
16+
"name": "Launch Tests",
17+
"type": "extensionHost",
18+
"request": "launch",
19+
"runtimeExecutable": "${execPath}",
20+
"args": [
21+
"--extensionDevelopmentPath=${workspaceRoot}",
22+
"--extensionTestsPath=${workspaceRoot}/out/test"
23+
],
24+
"stopOnEntry": false,
25+
"sourceMaps": true,
26+
"outFiles": [ "${workspaceRoot}/out/test/**/*.js" ]
27+
}
28+
]
29+
}

.vscodeignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
11
.vscode/**
22
.vscode-test/**
3+
out/test/**
34
test/**
45
.gitignore
56
jsconfig.json
67
vsc-extension-quickstart.md
78
.eslintrc.json
9+
src/**

0 commit comments

Comments
 (0)