Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/PowerShell-Completion/yarn-completion
A @yarnpkg tab completion for @PowerShell.
https://github.com/PowerShell-Completion/yarn-completion
completion hacktoberfest posh powershell tab-completion tabcompletion yarn yarnpkg
Last synced: about 1 month ago
JSON representation
A @yarnpkg tab completion for @PowerShell.
- Host: GitHub
- URL: https://github.com/PowerShell-Completion/yarn-completion
- Owner: PowerShell-Completion
- License: apache-2.0
- Created: 2018-03-16T10:12:56.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2022-05-04T16:04:53.000Z (over 2 years ago)
- Last Synced: 2024-05-23T00:30:24.354Z (8 months ago)
- Topics: completion, hacktoberfest, posh, powershell, tab-completion, tabcompletion, yarn, yarnpkg
- Language: PowerShell
- Homepage: https://www.powershellgallery.com/packages/yarn-completion/
- Size: 75.2 KB
- Stars: 21
- Watchers: 2
- Forks: 4
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- jimsghstars - PowerShell-Completion/yarn-completion - A @yarnpkg tab completion for @PowerShell. (PowerShell)
README
# posh-yarn-completion
[![license](https://img.shields.io/github/license/gluons/posh-yarn-completion.svg?style=flat-square)](./LICENSE)
[![PowerShell Gallery](https://img.shields.io/powershellgallery/v/yarn-completion.svg?style=flat-square)](https://www.powershellgallery.com/packages/yarn-completion/)
[![PowerShell Gallery](https://img.shields.io/powershellgallery/dt/yarn-completion.svg?style=flat-square)](https://www.powershellgallery.com/packages/yarn-completion/)A [Yarn](https://yarnpkg.com/) tab completion for [PowerShell](https://microsoft.com/powershell).
## ⚙️ Installation
Install from [PowerShell Gallery](https://www.powershellgallery.com/)
```powershell
Install-Module yarn-completion -Scope CurrentUser
```---
⚠️ If you haven't allowed script execution policy, set your script execution policy to `RemoteSigned` or `Unrestricted`.
```powershell
Set-ExecutionPolicy RemoteSigned -Scope CurrentUser
```## 🛂 Usage
You have to import the module to use `yarn-completion`.
Add below command into your PowerShell profile.
```powershell
Import-Module yarn-completion
```Then restart your PowerShell.
Now you can use tab completion with **Yarn**.---
⚠️ If you don't have PowerShell profile yet, create it with below command!
```powershell
New-Item -ItemType File $profile
```