From 1abb8e5611c44b3538a3ee0275573fcd71511f83 Mon Sep 17 00:00:00 2001 From: programmingwithmalik Date: Fri, 22 Dec 2023 22:39:41 -0500 Subject: [PATCH] Commit message --- hello.js | 2 +- package-lock.json | 5 +++++ package.json | 2 +- 3 files changed, 7 insertions(+), 2 deletions(-) create mode 100644 package-lock.json diff --git a/hello.js b/hello.js index f88f2b5..5dc257e 100644 --- a/hello.js +++ b/hello.js @@ -1,6 +1,6 @@ function hello() { // TODO: change this string so that your program prints "Hello world!" - return "Hello!"; + return "Hello world!"; } module.exports = hello; diff --git a/package-lock.json b/package-lock.json new file mode 100644 index 0000000..49af86b --- /dev/null +++ b/package-lock.json @@ -0,0 +1,5 @@ +{ + "name": "Assignment#0 Hello world!", + "version": "2.0.0", + "lockfileVersion": 1 +} diff --git a/package.json b/package.json index 057da5f..5252381 100644 --- a/package.json +++ b/package.json @@ -4,7 +4,7 @@ "description": "Hello world assignment for learners to familiarize themselves with visual studio code, testing, node, and github ", "main": "index.js", "scripts": { - "test": "jest" + "test": "jest" }, "author": "", "license": "ISC",