Skip to content
This repository was archived by the owner on Oct 16, 2019. It is now read-only.

Commit 8325a39

Browse files
committed
fix(lang): #140 - Removed Node4 Support + added launch config
1 parent 22d4014 commit 8325a39

File tree

2 files changed

+27
-1
lines changed

2 files changed

+27
-1
lines changed

.travis.yml

-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@ node_js:
88
- '8'
99
- '7'
1010
- '6'
11-
- '4'
1211
before_install:
1312
- openssl aes-256-cbc -K $encrypted_9413e5187502_key -iv $encrypted_9413e5187502_iv -in id_rsa.enc -out id_rsa -d
1413
before_script:

.vscode/launch.json

+27
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
{
2+
// Use IntelliSense to learn about possible attributes.
3+
// Hover to view descriptions of existing attributes.
4+
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
5+
"version": "0.2.0",
6+
"configurations": [
7+
{
8+
"type": "node",
9+
"request": "launch",
10+
"name": "Launch Program",
11+
"program": "${workspaceFolder}/lib/index.node.js"
12+
},
13+
{
14+
"type": "node",
15+
"request": "launch",
16+
"name": "Run AVA test",
17+
"program": "${workspaceRoot}/node_modules/ava/profile.js",
18+
"args": [
19+
"--serial",
20+
"${file}"
21+
],
22+
"skipFiles": [
23+
"<node_internals>/**/*.js"
24+
]
25+
}
26+
]
27+
}

0 commit comments

Comments
 (0)