Skip to content

Commit b271612

Browse files
committedFeb 27, 2022
Meta tweaks
1 parent 7ee777f commit b271612

File tree

7 files changed

+6
-12
lines changed

7 files changed

+6
-12
lines changed
 

‎.github/funding.yml

-3
This file was deleted.

‎.github/workflows/main.yml

+1-2
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,9 @@ jobs:
1313
- 16
1414
- 14
1515
- 12
16-
1716
steps:
1817
- uses: actions/checkout@v2
19-
- uses: actions/setup-node@v1
18+
- uses: actions/setup-node@v2
2019
with:
2120
node-version: ${{ matrix.node-version }}
2221
- run: npm install

‎cli.js

-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
#!/usr/bin/env node
2-
32
import process from 'node:process';
43
import meow from 'meow';
54
import cpy from 'cpy';
@@ -66,4 +65,3 @@ const cli = meow(`
6665
}
6766
}
6867
})();
69-

‎license

+1-1
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

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
"author": {
99
"name": "Sindre Sorhus",
1010
"email": "sindresorhus@gmail.com",
11-
"url": "sindresorhus.com"
11+
"url": "https://sindresorhus.com"
1212
},
1313
"maintainers": [
1414
{

‎readme.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@
1111

1212
## Install
1313

14-
```
15-
$ npm install --global cpy-cli
14+
```sh
15+
npm install --global cpy-cli
1616
```
1717

1818
## Usage

‎test.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import tempfile from 'tempfile';
55
import {execa} from 'execa';
66
import {pathExistsSync} from 'path-exists';
77

8-
const read = (...args) => fs.readFileSync(path.join(...args), 'utf8');
8+
const read = (...arguments_) => fs.readFileSync(path.join(...arguments_), 'utf8');
99

1010
test.beforeEach(t => {
1111
t.context.tmp = tempfile();

0 commit comments

Comments
 (0)
Please sign in to comment.