Skip to content

Commit

Permalink
docs: mark use-web-observer as internal
Browse files Browse the repository at this point in the history
  • Loading branch information
vikiboss committed Aug 19, 2024
1 parent ce28ea8 commit 833bc1c
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
7 changes: 7 additions & 0 deletions docs/docs/zh-cn/roadmap/index.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# 后期规划(Roadmap)



## V1(当前版本)


2 changes: 1 addition & 1 deletion docs/scripts/generate-hooks-data.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ const __filename = fileURLToPath(import.meta.url)
const __dirname = dirname(__filename)

const hooksSrc = resolve(__dirname, '../../src')
const ignoredDirs = ['utils', 'use-track-ref-state', 'use-versioned-action']
const ignoredDirs = ['utils', 'use-track-ref-state', 'use-versioned-action', 'use-web-observer']

const dirents = await fs.readdir(hooksSrc, { withFileTypes: true })
const hooksDirents = dirents.filter((d) => d.isDirectory() && ignoredDirs.every((e) => e !== d.name))
Expand Down

0 comments on commit 833bc1c

Please sign in to comment.