Skip to content

Commit

Permalink
chore(release): release v0.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
karlsbeard committed Aug 22, 2024
1 parent 1425c33 commit 45c872d
Show file tree
Hide file tree
Showing 5 changed files with 54 additions and 5 deletions.
4 changes: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,6 @@ dist-ssr
*.ntvs*
*.njsproj
*.sln
*.sw?
*.sw?

src/*.js
15 changes: 15 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,20 @@


## 0.0.2 (2024-08-22)


### Bug Fixes

* add the ci & release flow ([043d64a](https://github.com/karlsbeard/ts-tree-tools/commit/043d64ac9a4d5ba1a00ce6a3d9f1a8ab6d6d4fbf))
* change the release yml ([0f03f1f](https://github.com/karlsbeard/ts-tree-tools/commit/0f03f1f00610f853d5327eafb684e59cb6563c73))


### Features

* add the basic toTree function ([622deaa](https://github.com/karlsbeard/ts-tree-tools/commit/622deaa1a87776f2a6cac1858c61296f6b1594a3))
* add the typecheck ([68461c8](https://github.com/karlsbeard/ts-tree-tools/commit/68461c819d45dfc3e8b5014f6bc686beaea5e0c6))
* initial commit ([0e1ae2c](https://github.com/karlsbeard/ts-tree-tools/commit/0e1ae2c72ca54436277b56687c85a92c24918435))

## 0.0.1 (2024-07-24)


Expand Down
30 changes: 27 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,29 @@
# Vue 3 + TypeScript + Vite
# TS Tools for processing tree structure

This template should help get you started developing with Vue 3 and TypeScript in Vite. The template uses Vue 3 `<script setup>` SFCs, check out the [script setup docs](https://v3.vuejs.org/api/sfc-script-setup.html#sfc-script-setup) to learn more.
## Introduction

Learn more about the recommended Project Setup and IDE Support in the [Vue Docs TypeScript Guide](https://vuejs.org/guide/typescript/overview.html#project-setup).
Ts-Tree-Tools(TTs) is based on [tree-tool](https://github.com/wintc23/js-tree-tool), with no dependencies and small size.

## How to install

```bash
# 使用pnpm
pnpm install ts-tree-tools

# 使用npm
npm install ts-tree-tools

# 使用yarn
yarn install ts-tree-tools
```

## How to use

### Import

```js
// commonjs
const TTs = require('ts-tree-tools')

//
```
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "ts-tree-tools",
"type": "module",
"version": "0.0.1",
"version": "0.0.2",
"packageManager": "[email protected]",
"description": "the tools for tree",
"author": "Karl <[email protected]>",
Expand All @@ -21,6 +21,7 @@
"release": "release-it"
},
"dependencies": {
"tree-tool": "^1.1.8",
"vue": "^3.4.31"
},
"devDependencies": {
Expand Down
7 changes: 7 additions & 0 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 45c872d

Please sign in to comment.