An open API service indexing awesome lists of open source software.

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

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.


GitHub Release
NPM Release
Latest Status
Release Status

Discord

## 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.**