Skip to content

Commit f09db2f

Browse files
committed
Meta tweaks
1 parent 95e355e commit f09db2f

File tree

4 files changed

+5
-11
lines changed

4 files changed

+5
-11
lines changed

.travis.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
language: node_js
22
node_js:
3+
- '14'
34
- '12'
45
- '10'
56
- '8'

license

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)
3+
Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com)
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
66

package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,11 @@
44
"description": "Convert an absolute path to a tilde path: `/Users/sindresorhus/dev` → `~/dev`",
55
"license": "MIT",
66
"repository": "sindresorhus/tildify",
7+
"funding": "https://github.com/sponsors/sindresorhus",
78
"author": {
89
"name": "Sindre Sorhus",
910
"email": "sindresorhus@gmail.com",
10-
"url": "sindresorhus.com"
11+
"url": "https://sindresorhus.com"
1112
},
1213
"engines": {
1314
"node": ">=8"

readme.md

Lines changed: 1 addition & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,13 @@
1-
# tildify [![Build Status](https://travis-ci.org/sindresorhus/tildify.svg?branch=master)](https://travis-ci.org/sindresorhus/tildify)
1+
# tildify [![Build Status](https://travis-ci.com/sindresorhus/tildify.svg?branch=master)](https://travis-ci.com/github/sindresorhus/tildify)
22

33
> Convert an absolute path to a tilde path: `/Users/sindresorhus/dev``~/dev`
44
5-
65
## Install
76

87
```
98
$ npm install tildify
109
```
1110

12-
1311
## Usage
1412

1513
```js
@@ -19,12 +17,6 @@ tildify('/Users/sindresorhus/dev');
1917
//=> '~/dev'
2018
```
2119

22-
2320
## Related
2421

2522
See [untildify](https://github.com/sindresorhus/untildify) for the inverse.
26-
27-
28-
## License
29-
30-
MIT © [Sindre Sorhus](https://sindresorhus.com)

0 commit comments

Comments
 (0)