Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/Xainey/PSRequire
https://github.com/Xainey/PSRequire
Last synced: 8 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/Xainey/PSRequire
- Owner: Xainey
- Created: 2016-06-22T14:50:18.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2016-07-08T20:42:03.000Z (over 8 years ago)
- Last Synced: 2024-05-22T22:35:21.390Z (7 months ago)
- Language: PowerShell
- Size: 31.3 KB
- Stars: 31
- Watchers: 5
- Forks: 4
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- jimsghstars - Xainey/PSRequire - (PowerShell)
README
# PSRequire
* This Project is a WIP
## CLI Reference
```powershell
# Init
Invoke-PSRequire -Init
Invoke-PSRequire -Init -Name "build requirements"
Invoke-PSRequire -Init -Name "build requirements" -Path "c:\temp\path_to_folder\require.json"# Require
Invoke-PSRequire -Require "PSGallery/PSake:4.6.*"
Invoke-PSRequire -Require ("PSGallery/A:1.1.1", "PSGallery/B:1.1.1")
Invoke-PSRequire -Require ("PSGallery/A:1.1.1", "PSGallery/B:1.1.1") -Dev# Remove
Invoke-PSRequire -Remove -Package "PSGallery/Psake" -Dev# Install
Invoke-PSRequire -Install
Invoke-PSRequire -Install -Dev
Invoke-PSRequire -Install -Scope CurrentUser -Force
Invoke-PSRequire -Install -Save# Update - not implemented
Invoke-PSRequire -Update# Validate
Invoke-PSRequire -Validate -Path "c:\path_to_folder\require.json"# Get
Invoke-PSRequire -Get
Invoke-PSRequire -Get -Path "c:\path_to_folder\require.json"# Help
Invoke-PSRequire -Helpcd c:\temp\path_to_folder\
Invoke-PSRequire -Init -Name "build requirements"
Invoke-PSRequire -Require ("PSGallery/PSake:4.6.*", "PSGallery/PSDeploy:*")
Invoke-PSRequire -Remove "PSGallery/PSDeploy"
Invoke-PSRequire -Get
Invoke-PSRequire -Validate
Invoke-PSRequire -Install -Verbose
```