trangpackage 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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/readme.md +12 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "trangpackage",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "description": "NPM package for exercise 1",
5
5
  "main": "index.js",
6
6
  "scripts": {
package/readme.md CHANGED
@@ -1,4 +1,15 @@
1
1
  # Trang Package
2
2
 
3
- This package is created for MAD9124 Exercise 1. It has two properties and one method. It uses ES Modules, which means that you will need to `import` the default package to access it.
3
+ This package is created for **MAD9124 Exercise 1**.
4
+ It has **two properties** and **one method**.
5
+ It uses **ES Modules**, which means you must `import` the default package to access it.
4
6
 
7
+ ---
8
+
9
+ ## 📦 How to Install
10
+
11
+ After cloning or downloading this project, install dependencies (if required):
12
+
13
+ ```bash
14
+ npm install
15
+ ```