Skip to content

Commit 5e64cd1

Browse files
committed
Update README.md and package.json
1 parent 45f75f1 commit 5e64cd1

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -15,12 +15,12 @@ Create a `db.json` file or run `json-server db.json` to create one with some def
1515
```json
1616
{
1717
"posts": [
18-
{ "id": "1", "title": "string" },
19-
{ "id": "2", "title": "some post" }
18+
{ "id": "1", "title": "a title" },
19+
{ "id": "2", "title": "another title" }
2020
],
2121
"comments": [
22-
{ "id": "1", "text": "some text", "postId": "1" },
23-
{ "id": "2", "text": "some text", "postId": "1" }
22+
{ "id": "1", "text": "a comment about post 1", "postId": "1" },
23+
{ "id": "2", "text": "another comment about post 1", "postId": "1" }
2424
]
2525
}
2626
```

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
"watch-css": "npm run css -- --watch",
1616
"dev": "concurrently npm:watch-*",
1717
"build": "rm -rf lib && tsc && npm run css",
18-
"test": "node --import tsx/esm --test src/**/*.test.ts",
18+
"test": "npm run css && node --import tsx/esm --test src/*.test.ts",
1919
"lint": "eslint src --ext .ts --ignore-path .gitignore",
2020
"prepare": "husky install",
2121
"prepublishOnly": "npm run build"

0 commit comments

Comments
 (0)