Skip to content

Commit

Permalink
feat(deps): dependency update (#25)
Browse files Browse the repository at this point in the history
BREAKING CHANGE: Output is now es2017. Drop support for node < 8.
  • Loading branch information
nicojs authored Dec 29, 2019
1 parent 8479535 commit 8e46851
Show file tree
Hide file tree
Showing 26 changed files with 1,257 additions and 1,153 deletions.
1 change: 1 addition & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,4 @@ node_js:
- "node"
- "lts/*"
install: npm install
script: npm run all
46 changes: 8 additions & 38 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,53 +4,23 @@
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"type": "node",
"request": "launch",
"name": "Launch Program",
"program": "${workspaceRoot}/bin/install-local",
"args": [
"--target-siblings"
],
"cwd": "${workspaceRoot}/../../stryker-mutator/stryker/packages/stryker-api",
"outFiles": [
"src/**/*.js",
"test/**/*.js"
],
"sourceMaps": true
},
{
"type": "node",
"request": "launch",
"name": "Launch Stryker",
"program": "${workspaceRoot}/node_modules/stryker/src/stryker-cli",
"args": [
"run"
],
"console": "integratedTerminal",
"sourceMaps": true,
"outFiles": [
"src/**/*.js",
"test/**/*.js"
]
},
{
"type": "node",
"request": "launch",
"name": "All Tests",
"program": "${workspaceRoot}/node_modules/mocha/bin/_mocha",
"args": [
"-u",
"tdd",
"--timeout",
"999999",
"--no-timeout",
"--colors",
"${workspaceRoot}/test/**/*.js"
],
"internalConsoleOptions": "openOnSessionStart",
"outFiles": [
"src/**/*.js",
"test/**/*.js"
],
"skipFiles": [
"<node_internals>/**"
]
},
{
Expand All @@ -59,10 +29,7 @@
"name": "Unit Tests",
"program": "${workspaceRoot}/node_modules/mocha/bin/_mocha",
"args": [
"-u",
"tdd",
"--timeout",
"999999",
"--no-timeout",
"--colors",
"${workspaceRoot}/test/helpers",
"${workspaceRoot}/test/unit"
Expand All @@ -71,6 +38,9 @@
"outFiles": [
"src/**/*.js",
"test/**/*.js"
],
"skipFiles": [
"<node_internals>/**"
]
}
]
Expand Down
22 changes: 15 additions & 7 deletions .vscode/tasks.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,19 @@
{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "0.1.0",
"command": "npm",
"isShellCommand": true,
"args": ["start"],
"showOutput": "silent",
"isBackground": true,
"problemMatcher": "$tsc-watch"
"version": "2.0.0",
"tasks": [
{
"label": "tsc -w",
"type": "shell",
"command": "npm",
"args": ["start"],
"problemMatcher": "$tsc-watch",
"isBackground": true,
"group": {
"isDefault": true,
"kind": "build"
}
}
]
}
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[![Mutation testing badge](https://img.shields.io/endpoint?style=flat&url=https%3A%2F%2Fbadge-api.stryker-mutator.io%2Fgithub.com%2Fnicojs%2Fnode-install-local%2Fmaster)](https://dashboard.stryker-mutator.io/reports/github.com/nicojs/node-install-local/master)
[![Build Status](https://travis-ci.org/nicojs/node-install-local.svg?branch=master)](https://travis-ci.org/nicojs/node-install-local)
[![Stryker report](https://badge.stryker-mutator.io/github.com/nicojs/node-install-local/master)](https://dashboard.stryker-mutator.io/)

# Install local

Expand Down
Loading

0 comments on commit 8e46851

Please sign in to comment.