Skip to content

Commit 0fe35aa

Browse files
Numbered list counter (#18)
* delete unnecesary components * fix numbered list counter * numbered list counter fix
1 parent 7e681b9 commit 0fe35aa

File tree

9 files changed

+2830
-92
lines changed

9 files changed

+2830
-92
lines changed

typescript/README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -261,6 +261,8 @@ MIT
261261
"**/generated/**",
262262
"src/serialization/**",
263263
```
264+
- [] add counter for numbered lists
264265
- [] setup up bumpp: https://www.npmjs.com/package/bumpp
265266
- [] migrate test runner to vitest
266267
- [] move vite app to typescript root examples dir
268+
- [] setup monorepo tooling

typescript/package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,8 @@
88
"scripts": {
99
"clean": "rm -rf dist",
1010
"build": "tsup",
11-
"dev": "concurrently \"tsup --watch\" \"npm run lint:watch\" \"npm run type-check:watch\"",
11+
"build:watch": "tsup --watch",
12+
"dev": "concurrently \"npm run build:watch\" \"npm run lint:watch\" \"npm run type-check:watch\"",
1213
"type-check:watch": "tsc --noEmit --watch --pretty",
1314
"lint:watch": "eslint src --ext .ts,.tsx --cache",
1415
"dev:example": "vite --config vite.dev.config.ts",

typescript/src/examples/index.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,8 @@ const App = () => {
1515
padding: "20px",
1616
maxWidth: "800px",
1717
margin: "0 auto",
18-
background: "black",
18+
background: "oklch(20.5% 0 0)",
19+
color: "oklch(90% 0 0)",
1920
}}
2021
>
2122
<h1>JSON-DOC Renderer Development</h1>

0 commit comments

Comments
 (0)