https://github.com/activeguild/vite-plugin-hit-word
Lists files containing the specified word(s). Say goodbye to the disappointment of todo on the code.
https://github.com/activeguild/vite-plugin-hit-word
list plugin search todo vite word
Last synced: 6 months ago
JSON representation
Lists files containing the specified word(s). Say goodbye to the disappointment of todo on the code.
- Host: GitHub
- URL: https://github.com/activeguild/vite-plugin-hit-word
- Owner: activeguild
- License: mit
- Created: 2022-05-31T01:25:02.000Z (almost 4 years ago)
- Default Branch: master
- Last Pushed: 2023-03-02T12:51:17.000Z (about 3 years ago)
- Last Synced: 2025-03-27T08:55:17.125Z (about 1 year ago)
- Topics: list, plugin, search, todo, vite, word
- Language: TypeScript
- Homepage:
- Size: 142 KB
- Stars: 1
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Contributing: .github/CONTRIBUTING.md
- License: LICENSE
Awesome Lists containing this project
README
vite-plugin-hit-word ⚡ Welcome 😀
# vite-plugin-hit-word
Lists files containing the specified word(s).
Say goodbye to the disappointment of todo on the code.
## Motivation
People often forget that there is a `todo` left on the code. By including `todo` checks in your builds, you provide an opportunity to ensure that `todo` is noticed.
Of course, it is also possible to search for words other than `todo`.
If a line matching the word has a date set, it is compared to the current date and highlighted.
## Install
```bash
npm i -D vite-plugin-hit-word
```
## Options
If `hasLimitDate` is set, compares the current date to the date set on the line where the matched word exists. If the current date is newer, the text on the console is printed in red.
| Parameter | Type | Description |
| ------------------------------ | ------------------------------------------------------------------------------------- | ------------------------------------------------------------- |
| includes | string \| RegExp \| Array | Set the target path. |
| exclude | string \| RegExp \| Array | Set the paths you want to exclude. |
| word.value | string \| RegExp \| Array | Set the words you want to search for on the code. |
| word.hasLimitDate | boolean | Check with the current date.(default false) |
| word.thrownDeadlineExceeded | boolean | Throws an exceedance and terminates the build.(default false) |
| word.deadlineExceededFonrColor | 'black'\| 'red'\| 'green'\| 'yellow'\| 'blue'\| 'magenta'\| 'cyan'\| 'white'\| 'gray' | Output log font color.(default yellow) |
| word.replacement | string \|(word: string \| RegExp, fileText: string) => string | Replace matched words. |
| word.logFontColor | 'black'\| 'red'\| 'green'\| 'yellow'\| 'blue'\| 'magenta'\| 'cyan'\| 'white'\| 'gray' | Output log font color.(default yellow) |
## Add it to vite.config.ts
```ts
import { defineConfig } from 'vite'
import hitWord from 'vite-plugin-hit-word'
// https://vitejs.dev/config/
export default defineConfig({
plugins: [
hitWord({
include: ['src/*'],
exclude: ['node_modules'],
word: { value: ['[todo]:'], hasLimitDate: true },
}),
],
})
```
#### e.g.
The following files are available.
```tsx
import styles from './App.module.css'
function App() {
// [todo]: [2022/05/22] issue #765
return (
)
}
export default App
```
At build time, output to the terminal as follows.
You can jump to the corresponding code from the path.
```bash
/Users/XXXXXX/projects/Sample/src/App.tsx(4) :>> // [todo]: [2022/05/22] issue #765
```
## Principles of conduct
Please see [the principles of conduct](https://github.com/activeguild/vite-plugin-hit-word/blob/master/.github/CONTRIBUTING.md) when building a site.
## License
This library is licensed under the [MIT license](https://github.com/activeguild/vite-plugin-hit-word/blob/master/LICENSE).