Skip to content

Locate all references to jQuery for easy removal

License

Notifications You must be signed in to change notification settings

vanillaes/jqkill

Folders and files

NameName
Last commit message
Last commit date

Latest commit

Nov 12, 2021
ac65383 · Nov 12, 2021
May 17, 2021
Nov 12, 2021
Apr 30, 2021
Apr 30, 2021
Nov 12, 2021
May 25, 2020
Dec 29, 2019
Dec 14, 2019
May 16, 2021
Nov 12, 2021

Repository files navigation

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

jqkill

Advanced Usage

Specify custom parameters

jqkill "**/*.js" -i "**/lib/**" -r ../kuma/

Note: In Linux/OSX the matcher patterns must be delimited in quotes.