Skip to content

Commit 0c1be44

Browse files
committed
add hints
1 parent 6bc8cf2 commit 0c1be44

File tree

2 files changed

+30
-3
lines changed

2 files changed

+30
-3
lines changed

TUTORIAL.md

+15
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,11 @@ One of the most common pieces of information in this file is the `author` field.
3333
Add your name as the `author` of the project in the package.json file.
3434
**Note:** Remember that you’re writing JSON, so all field names must use double-quotes (") and be separated with a comma (,).
3535

36+
#### HINTS
37+
38+
- Edit the file `package.json`
39+
- Add a property of "author" to the object
40+
3641
## 3. Description
3742

3843
> Package.json description
@@ -54,6 +59,11 @@ Add a `description` to the package.json file of your project.
5459

5560
**Note:** Remember to use double-quotes for field-names (") and commas (,) to separate fields.
5661

62+
#### HINTS
63+
64+
- Edit the file `package.json`
65+
- Add a property of "description" to the object
66+
5767
## 4. Keywords
5868

5969
> Package.json keywords
@@ -74,6 +84,11 @@ Add an array of suitable strings to the `keywords` field in the package.json fil
7484

7585
One of the keywords should be "freecodecamp".
7686

87+
#### HINTS
88+
89+
- Edit the file `package.json`
90+
- "keywords" should be an array including the string "freecodecamp"
91+
7792
## 5. License
7893

7994
> Package.json license

tutorial.json

+15-3
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,11 @@
6868
"46794cae9d036c50b673b47363e9429ae331eaf6"
6969
]
7070
},
71-
"content": "Add your name as the `author` of the project in the package.json file.\n**Note:** Remember that you’re writing JSON, so all field names must use double-quotes (\") and be separated with a comma (,)."
71+
"content": "Add your name as the `author` of the project in the package.json file.\n**Note:** Remember that you’re writing JSON, so all field names must use double-quotes (\") and be separated with a comma (,).",
72+
"hints": [
73+
"Edit the file `package.json`",
74+
"Add a property of \"author\" to the object"
75+
]
7276
}
7377
]
7478
},
@@ -96,7 +100,11 @@
96100
"ee7a7af1c92693d239528832f2a69859371a147a"
97101
]
98102
},
99-
"content": "Add a `description` to the package.json file of your project.\n\n**Note:** Remember to use double-quotes for field-names (\") and commas (,) to separate fields."
103+
"content": "Add a `description` to the package.json file of your project.\n\n**Note:** Remember to use double-quotes for field-names (\") and commas (,) to separate fields.",
104+
"hints": [
105+
"Edit the file `package.json`",
106+
"Add a property of \"description\" to the object"
107+
]
100108
}
101109
]
102110
},
@@ -124,7 +132,11 @@
124132
"b0d6dc4a4dd6b510fcd0b9d803e301049ee574d3"
125133
]
126134
},
127-
"content": "Add an array of suitable strings to the `keywords` field in the package.json file of your project.\n\nOne of the keywords should be \"freecodecamp\"."
135+
"content": "Add an array of suitable strings to the `keywords` field in the package.json file of your project.\n\nOne of the keywords should be \"freecodecamp\".",
136+
"hints": [
137+
"Edit the file `package.json`",
138+
"\"keywords\" should be an array including the string \"freecodecamp\""
139+
]
128140
}
129141
]
130142
},

0 commit comments

Comments
 (0)