Skip to content
This repository has been archived by the owner on Aug 17, 2023. It is now read-only.

Commit

Permalink
update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
zensh committed Mar 24, 2020
1 parent 89a1dae commit ab957bf
Show file tree
Hide file tree
Showing 14 changed files with 2,594 additions and 2,011 deletions.
3 changes: 2 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
language: node_js
node_js:
- "6"
- "8"
- "10"
- "12"
- "13"
sudo: false
script: "npm run test-cov"
after_script: "npm install coveralls@2 && cat ./coverage/lcov.info | coveralls"
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
The MIT License (MIT)

Copyright (c) 2016-2019 thunks
Copyright (c) 2016-2020 thunks

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -543,7 +543,7 @@ Use `--require` option:

### License
T-man is licensed under the [MIT](https://github.com/thunks/tman/blob/master/LICENSE) license.
Copyright © 2016-2019 thunks.
Copyright © 2016-2020 thunks.

[npm-url]: https://npmjs.org/package/tman
[npm-image]: http://img.shields.io/npm/v/tman.svg
Expand Down
4 changes: 2 additions & 2 deletions bin/options.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@
const fs = require('fs')

module.exports = function () {
let optsPath = process.argv.indexOf('--opts') !== -1
const optsPath = process.argv.indexOf('--opts') !== -1
? process.argv[process.argv.indexOf('--opts') + 1] : 'test/tman.opts'

try {
let opts = fs.readFileSync(optsPath, 'utf8')
const opts = fs.readFileSync(optsPath, 'utf8')
.replace(/\\\s/g, '%20')
.split(/\s/)
.filter(Boolean)
Expand Down
Loading

0 comments on commit ab957bf

Please sign in to comment.