@thiagodp/hello 0.1.0 → 0.2.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.
Files changed (3) hide show
  1. package/README.md +17 -0
  2. package/index.js +2 -2
  3. package/package.json +1 -1
package/README.md ADDED
@@ -0,0 +1,17 @@
1
+ # hello
2
+
3
+ > Just say hello
4
+
5
+ ## Instalação
6
+
7
+ ```bash
8
+ pnpm i @thiagodp/hello
9
+ ```
10
+
11
+ ## API
12
+
13
+ ## Utilização
14
+
15
+ ## Licença
16
+
17
+ [MIT](LICENSE) ©️ [Thiago Delgado Pinto](https://github.com/thiagodp)
package/index.js CHANGED
@@ -1,5 +1,5 @@
1
- function hello( name ) {
2
- console.log( name );
1
+ function hello( name = '' ) {
2
+ console.log( 'Hello', name );
3
3
  }
4
4
 
5
5
  module.exports = { hello };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@thiagodp/hello",
3
- "version": "0.1.0",
3
+ "version": "0.2.1",
4
4
  "description": "Just say hello",
5
5
  "main": "index.js",
6
6
  "keywords": [