Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
out
dist
node_modules
.vscode-test/**
.vscode-test/**
*.vsix
2 changes: 2 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,9 @@ cache:
- "node_modules"

script:
- npm run vscode:prepublish
- npm test
- npm run lint

notifications:
email: false
8 changes: 4 additions & 4 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,23 +6,23 @@
"version": "0.2.0",
"configurations": [
{
"name": "Launch Extension",
"type": "extensionHost",
"request": "launch",
"name": "Launch Extension",
"runtimeExecutable": "${execPath}",
"args": [
"--extensionDevelopmentPath=${workspaceFolder}"
],
"outFiles": [
"${workspaceFolder}/out/**/*.js"
"${workspaceFolder}/dist/**/*.js"
],
"smartStep": true,
"preLaunchTask": "npm: compile"
},
{
"name": "Launch Tests",
"type": "extensionHost",
"request": "launch",
"name": "Launch Tests",
"runtimeExecutable": "${execPath}",
"args": [
"${workspaceRoot}/out/test",
Expand All @@ -32,7 +32,7 @@
"outFiles": [
"${workspaceFolder}/out/test/**/*.js"
],
"preLaunchTask": "npm: compile"
"preLaunchTask": "npm: test-compile"
}
]
}
2 changes: 1 addition & 1 deletion .vscode/tasks.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"tasks": [
{
"type": "npm",
"script": "watch",
"script": "compile:watch",
"problemMatcher": "$tsc-watch",
"isBackground": true,
"presentation": {
Expand Down
4 changes: 2 additions & 2 deletions .vscodeignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
.vscode/**
out/test/**
test/**
out/**
src/**
**/*.map
.gitignore
Expand All @@ -13,3 +12,4 @@ images/**
logo.svg
.travis.yml
appveyor.yml
webpack.config.js
5 changes: 3 additions & 2 deletions appveyor.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
environment:
ELECTRON_RUN_AS_NODE: 1
VSCODE_BUILD_VERBOSE: true
NODE_VERSION: "9"
NODE_VERSION: "10"

cache:
- node_modules
Expand All @@ -21,4 +21,5 @@ build: off
test_script:
- node --version
- npm --version
- npm test
- npm test
- npm run lint
Loading