Skip to content

Commit

Permalink
feat: add unit test and README
Browse files Browse the repository at this point in the history
  • Loading branch information
jiangtao.yang committed Feb 25, 2025
1 parent 950cadb commit 4a04e83
Show file tree
Hide file tree
Showing 10 changed files with 7,357 additions and 80 deletions.
11 changes: 11 additions & 0 deletions README.MD
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# Data Structure Visualization

> Limited Structures, Unlimited Algorithms
Demo: https://youngwinds.github.io/data-structure-visualization/

## Develop

```shell
pnpm install && pnpm dev
```
8 changes: 6 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,16 @@
"scripts": {
"dev": "concurrently \"pnpm --filter=./packages/* --parallel dev \" \"pnpm --filter dsv dev\" ",
"build": "pnpm -r build",
"test": "echo \"Error: no test specified\" && exit 1"
"test": "pnpm --filter=./packages/* --parallel test",
"test:coverage": "pnpm --filter=./packages/* --parallel test:coverage"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"concurrently": "^9.1.0"
"concurrently": "^9.1.0",
"jest": "^29.0.0",
"@types/jest": "^29.0.0",
"ts-jest": "^29.0.0"
}
}
Loading

0 comments on commit 4a04e83

Please sign in to comment.