https://github.com/vanillaes/jqkill
Locate all references to jQuery for easy removal
https://github.com/vanillaes/jqkill
cli developer-tools jquery nodejs
Last synced: 5 months ago
JSON representation
Locate all references to jQuery for easy removal
- Host: GitHub
- URL: https://github.com/vanillaes/jqkill
- Owner: vanillaes
- License: mit
- Created: 2019-12-14T06:27:11.000Z (over 6 years ago)
- Default Branch: main
- Last Pushed: 2021-11-12T17:58:51.000Z (over 4 years ago)
- Last Synced: 2025-10-29T19:57:08.567Z (8 months ago)
- Topics: cli, developer-tools, jquery, nodejs
- Language: JavaScript
- Homepage:
- Size: 82 KB
- Stars: 7
- Watchers: 1
- Forks: 1
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
Awesome Lists containing this project
README
JQKill
Quickly target, locate, and report each-and-every call to jQuery for elimination. Works like a linter but for jQuery specifically.
## Usage
### Arguments
`jqkill [pattern] -i [pattern] -r [path]`
- `[pattern]` - the file matcher pattern (default `**/*.js`)
- `-i` | `--ignore` - the ignore matcher pattern (default `**/node_modules/**`)
- `-r` | `--root` - the root path to run the tests from (default `process.cwd()`)
### Basic Usage
Use the defaults
```sh
jqkill
```
### Advanced Usage
Specify custom parameters
```sh
jqkill "**/*.js" -i "**/lib/**" -r ../kuma/
```
**Note: In Linux/OSX the matcher patterns must be delimited in quotes.**