vannakam 1.0.4 → 1.0.6

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 +9 -9
  2. package/index.js +1 -1
  3. package/package.json +2 -2
package/README.md CHANGED
@@ -1,10 +1,10 @@
1
- # Vannakam 👋
2
-
3
- A simple test npm package created to learn and test the npm publishing workflow.
4
-
5
- ## Installation
6
-
7
- Install the package using npm:
8
-
9
- ```bash
1
+ # Vannakam 👋
2
+
3
+ A simple test npm package created to learn and test the npm publishing workflow.
4
+
5
+ ## Installation
6
+
7
+ Install the package using npm:
8
+
9
+ ```bash
10
10
  npm install vannakam
package/index.js CHANGED
@@ -9,4 +9,4 @@
9
9
 
10
10
  const { version } = require("./package.json");
11
11
 
12
- console.log(`Vanakkam from CLI! (vannakam v${version})`);
12
+ console.log(`Vanakkam from CLI!@@! (vannakam v${version})`);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vannakam",
3
- "version": "1.0.4",
3
+ "version": "1.0.6",
4
4
  "description": "Testing the npm publish/install workflow",
5
5
  "main": "index.js",
6
6
  "bin": {
@@ -14,7 +14,7 @@
14
14
  "node": ">=18.0.0"
15
15
  },
16
16
  "scripts": {
17
- "test": "echo \"Error: no test specified\" && exit 1"
17
+ "test": "node test/smoke.test.js"
18
18
  },
19
19
  "keywords": [],
20
20
  "author": "Susenthiran",