prueba-github-cli 1.0.0 → 1.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +23 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,2 +1,24 @@
|
|
|
1
1
|
# prueba-github-cli
|
|
2
|
-
|
|
2
|
+
|
|
3
|
+
## Description
|
|
4
|
+
A simple test package for demonstrating GitHub CLI publishing.
|
|
5
|
+
|
|
6
|
+
## Installation
|
|
7
|
+
```bash
|
|
8
|
+
npm install prueba-github-cli
|
|
9
|
+
```
|
|
10
|
+
|
|
11
|
+
## Usage
|
|
12
|
+
```js
|
|
13
|
+
const prueba = require('prueba-github-cli');
|
|
14
|
+
// Example usage
|
|
15
|
+
prueba.hello("John Due");
|
|
16
|
+
```
|
|
17
|
+
|
|
18
|
+
## Features
|
|
19
|
+
- Easy to install
|
|
20
|
+
- Simple API
|
|
21
|
+
- Suitable for testing npm publish workflows
|
|
22
|
+
|
|
23
|
+
## License
|
|
24
|
+
MIT
|