Skip to content

Commit 40255b4

Browse files
committed
Update for Node.js 14
1 parent 9b8dc81 commit 40255b4

File tree

4 files changed

+6
-12
lines changed

4 files changed

+6
-12
lines changed

.travis.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
language: node_js
22
node_js:
3+
- '14'
34
- '12'
45
- '10'
5-
- '8'

license

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) YOUR NAME <YOUR EMAIL> (YOUR WEBSITE)
3+
Copyright (c) Your Name <[email protected]> (https://yourwebsite.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

+3-3
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
"url": "YOUR WEBSITE"
1111
},
1212
"engines": {
13-
"node": ">=8"
13+
"node": ">=10"
1414
},
1515
"scripts": {
1616
"test": "xo && ava"
@@ -24,7 +24,7 @@
2424
],
2525
"dependencies": {},
2626
"devDependencies": {
27-
"ava": "^2.1.0",
28-
"xo": "^0.24.0"
27+
"ava": "^2.4.0",
28+
"xo": "^0.33.0"
2929
}
3030
}

readme.md

+1-7
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@ This is what I use for [my own modules](https://www.npmjs.com/~sindresorhus).
66

77
Also check out [`node-cli-boilerplate`](https://github.com/sindresorhus/node-cli-boilerplate).
88

9-
109
## Getting started
1110

1211
**Click the "Use this template" button.**
@@ -19,26 +18,22 @@ $ curl -fsSL https://github.com/sindresorhus/node-module-boilerplate/archive/mas
1918

2019
There's also a [Yeoman generator](https://github.com/sindresorhus/generator-nm).
2120

22-
2321
---
2422

2523
**Remove everything from here and above**
2624

2725
---
2826

29-
30-
# unicorn-fun [![Build Status](https://travis-ci.com/YOUR-GITHUB-USERNAME/unicorn-fun.svg?branch=master)](https://travis-ci.com/YOUR-GITHUB-USERNAME/unicorn-fun)
27+
# unicorn-fun [![Build Status](https://travis-ci.com/YOUR-GITHUB-USERNAME/unicorn-fun.svg?branch=master)](https://travis-ci.com/github/YOUR-GITHUB-USERNAME/unicorn-fun)
3128

3229
> My awesome module
3330
34-
3531
## Install
3632

3733
```
3834
$ npm install unicorn-fun
3935
```
4036

41-
4237
## Usage
4338

4439
```js
@@ -48,7 +43,6 @@ unicornFun('unicorns');
4843
//=> 'unicorns & rainbows'
4944
```
5045

51-
5246
## API
5347

5448
### unicornFun(input, options?)

0 commit comments

Comments
 (0)