Skip to content

Commit 3dbd1a9

Browse files
committed
fix: Rename package to be able to publish package on npm
1 parent 64b8a3a commit 3dbd1a9

File tree

4 files changed

+16
-16
lines changed

4 files changed

+16
-16
lines changed

CONTRIBUTING.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,15 +3,15 @@
33
Please note that this project is released with a [Contributor Code of Conduct](CODE_OF_CONDUCT.md).
44
By participating in this project you agree to abide by its terms.
55

6-
We appreciate you taking the time to contribute to `octoherd-script-download-files`. Especially as a new contributor, you have a valuable perspective that we lost a long time ago: you will find things confusing and run into problems that no longer occur to us. Please share them with us, so we can make the experience for future contributors the best it could be.
6+
We appreciate you taking the time to contribute to `octoherd-script-get-files`. Especially as a new contributor, you have a valuable perspective that we lost a long time ago: you will find things confusing and run into problems that no longer occur to us. Please share them with us, so we can make the experience for future contributors the best it could be.
77

88
Thank you 💖
99

1010
## Creating an Issue
1111

1212
Before you create a new Issue:
1313

14-
1. Please make sure there is no [open issue](https://github.com/stefanbuck/octoherd-script-download-files/issues?utf8=%E2%9C%93&q=is%3Aissue) yet.
14+
1. Please make sure there is no [open issue](https://github.com/stefanbuck/octoherd-script-get-files/issues?utf8=%E2%9C%93&q=is%3Aissue) yet.
1515
2. If it is a bug report, include the steps to reproduce the issue
1616
3. If it is a feature request, please share the motivation for the new feature, what alternatives you tried, and how you would implement it.
1717

@@ -22,8 +22,8 @@ First, fork the repository.
2222
Setup the repository locally. Replace `<your account name>` with the name of the account you forked to.
2323

2424
```shell
25-
git clone https://github.com/<your account name>/octoherd-script-download-files.git
26-
cd octoherd-script-download-files
25+
git clone https://github.com/<your account name>/octoherd-script-get-files.git
26+
cd octoherd-script-get-files
2727
npm install
2828
```
2929

@@ -37,7 +37,7 @@ npm test
3737

3838
- Create a new branch locally.
3939
- Make your changes in that branch and push them to your fork
40-
- Submit a pull request from your topic branch to the main branch on the `stefanbuck/octoherd-script-download-files` repository.
40+
- Submit a pull request from your topic branch to the main branch on the `stefanbuck/octoherd-script-get-files` repository.
4141
- Be sure to tag any issues your pull request is taking care of / contributing to. Adding "Closes #123" to a pull request description will automatically close the issue once the pull request is merged in.
4242

4343
## Maintainers only

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,24 @@
1-
# octoherd-script-download-files
1+
# octoherd-script-get-files
22

33
> An Octoherd script to download files from repositories
44
5-
[![@latest](https://img.shields.io/npm/v/octoherd-script-download-files.svg)](https://www.npmjs.com/package/octoherd-script-download-files)
6-
[![Build Status](https://github.com/stefanbuck/octoherd-script-download-files/workflows/Test/badge.svg)](https://github.com/stefanbuck/octoherd-script-download-files/actions?query=workflow%3ATest+branch%3Amain)
5+
[![@latest](https://img.shields.io/npm/v/octoherd-script-get-files.svg)](https://www.npmjs.com/package/octoherd-script-get-files)
6+
[![Build Status](https://github.com/stefanbuck/octoherd-script-get-files/workflows/Test/badge.svg)](https://github.com/stefanbuck/octoherd-script-get-files/actions?query=workflow%3ATest+branch%3Amain)
77

88
## Usage
99

1010
Minimal usage
1111

1212
```js
13-
npx octoherd-script-download-files \
13+
npx octoherd-script-get-files \
1414
--source README.md \
1515
--target ./out
1616
```
1717

1818
Pass all options as CLI flags to avoid user prompts
1919

2020
```js
21-
npx octoherd-script-download-files \
21+
npx octoherd-script-get-files \
2222
-T ghp_0123456789abcdefghjklmnopqrstuvwxyzA \
2323
-R "stefanbuck/*" \
2424
--source README.md \

package-lock.json

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
11
{
2-
"name": "octoherd-script-download-files",
2+
"name": "octoherd-script-get-files",
33
"version": "0.0.0-development",
44
"type": "module",
55
"exports": "./script.js",
66
"bin": {
7-
"octoherd-script-download-files": "./cli.js"
7+
"octoherd-script-get-files": "./cli.js"
88
},
99
"description": "An Octoherd script to download files from repositories",
1010
"scripts": {
1111
"start": "node cli.js",
1212
"test": "node script.js"
1313
},
14-
"repository": "https://github.com/stefanbuck/octoherd-script-download-files",
14+
"repository": "https://github.com/stefanbuck/octoherd-script-get-files",
1515
"keywords": [
1616
"octoherd-script"
1717
],

0 commit comments

Comments
 (0)