aboutsummaryrefslogtreecommitdiffstats
path: root/src/_yarn
Commit message (Collapse)AuthorAgeFilesLines
* Update yarn completion to version 4.11.0Shohei YOSHIDA2025-12-161-374/+793
|
* fix(yarn): use builtin cd in yarn completionjoél hawkins torres2024-04-131-5/+5
| | | | Signed-off-by: joél hawkins torres <joel@joel.fm>
* Fix script completion which contains colonsShohei YOSHIDA2022-01-061-2/+2
|
* Fix perl one liner bugShohei YOSHIDA2021-12-301-1/+1
| | | | | decode_json returns hash reference, so scalar variable should be used instead of hash variable.
* Fix issue when package.json is not in current directoryShohei YOSHIDA2021-12-211-4/+32
|
* Fix no node_modules caseShohei YOSHIDA2021-12-091-11/+13
|
* Don't use yarn run --json for newer yarnShohei YOSHIDA2021-12-091-14/+15
|
* Support both older and newer versionsShohei YOSHIDA2021-12-081-1/+7
|
* Update collect workspaces commandShohei YOSHIDA2021-12-071-1/+1
|
* Fix typosDimitris Apostolou2021-11-121-1/+1
|
* Don't use sed gnu extension, use POSIX syntaxShohei YOSHIDA2020-05-091-1/+1
|
* Fix run subcommand --cwd issueShohei YOSHIDA2020-05-091-2/+9
| | | | opt_args cannot be read from 2nd completion
* Update subcommand flagsShohei YOSHIDA2020-05-091-12/+29
|
* Improve completion when '--cwd' is specifiedShohei YOSHIDA2020-05-091-2/+11
|
* Update subcommand completionShohei YOSHIDA2020-05-091-1/+43
|
* Set description for all optionsShohei YOSHIDA2020-05-081-4/+4
|
* Update yarn command line optionsShohei YOSHIDA2020-05-081-23/+37
|
* Fix typosDimitris Apostolou2020-04-091-1/+1
|
* Complete local file 'yarn add'Shohei YOSHIDA2020-03-251-1/+8
| | | | Complete local file if 'file:' or 'link:' is specified
* Yarn | cross-platform sed replacement pattern newline solution (#666)Maxim Devoir2020-01-171-3/+5
| | | Some sed utilities (e.g. Mac OS / BSD) don't interpret `\n` in a replacement pattern as a newline.
* _yarn: fix parsing of yarn run on scripts containing } (#668)Marc Cornellà2020-01-171-1/+1
| | | Fixes #667
* Merge pull request #653 from MaximDevoir/feat/improve-yarn-suggestionsnicoulaj2019-10-081-3/+15
|\ | | | | YARN | Improve suggestions for `yarn run` command
| * revert: suggest binaries on `yarn`Maxim Devoir2019-10-071-1/+1
| | | | | | | | This behavior is the same as before c6bdbc69e168b4dbdd25e6e32e02d049d2a456ef
| * Parse script commands without `jq`Marc Cornellà2019-10-021-21/+13
| | | | | | | | Source from https://github.com/robbyrussell/oh-my-zsh/pull/8118#issuecomment-537484017
| * Separate project scripts from binary packagesMaxim Devoir2019-10-021-3/+23
| | | | | | | | | | | | | | | | If `jq` utility is installed: - Suggests script names from `package.json` and their associated script Following [this feedback](https://github.com/robbyrussell/oh-my-zsh/pull/8118#issuecomment-537148142), binaries will always be suggested.
* | Add --latest flag for yarn upgrade-interactiveBond2019-10-031-1/+6
|/
* Improve _yarn changesJordan Rastrick2019-10-011-3/+2
| | | Use `_default` instead of `_files` and don't unnecessarily wrap with `_arguments`
* fall back to file completion for yarn scriptsJordan Rastrick2019-09-261-1/+7
|
* yarn: rename clean to autoclean, add description for certain commandsSerge Bibauw2018-05-021-9/+9
| | | | - `clean` has been renamed to `autoclean` (https://github.com/yarnpkg/rfcs/pull/52) - added description (from `yarn help [command]`) to `cache`, `import` and `versions`
* yarn: escape colons when getting scripts from package.jsonSimon Wachter2017-11-061-2/+2
|
* Replace character with newline using `tr`Chayoung You2017-06-091-2/+2
| | | | BSD sed don't print newline for `\n` in replacement string.
* Use `sed -E` instead of `-r`Akinori MUSHA2017-05-151-2/+2
| | | | | | | | | | `-E` is more widely supported, including GNU sed. - [GNU sed](https://www.gnu.org/software/sed/manual/sed.html) - [macOS](https://developer.apple.com/legacy/library/documentation/Darwin/Reference/ManPages/man1/sed.1.html) - [FreeBSD](https://man.freebsd.org/sed/) - [NetBSD](http://netbsd.gw.com/cgi-bin/man-cgi?sed) - [OpenBSD](http://man.openbsd.org/sed.1)
* Added completion for yarnMassimiliano Torromeo2017-05-061-0/+345