Socket
Socket
Sign inDemoInstall

@blockforfun/plugin-git

Package Overview
Dependencies
Maintainers
2
Versions
25
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@blockforfun/plugin-git - npm Package Compare versions

Comparing version 1.1.1 to 1.1.2

11

CHANGELOG.md

@@ -6,2 +6,13 @@ # Change Log

## [1.1.2](https://github.com/blockforfun/cli/compare/@blockforfun/plugin-git@1.1.1...@blockforfun/plugin-git@1.1.2) (2018-11-27)
### Bug Fixes
* Fix README ([73fc0e8](https://github.com/blockforfun/cli/commit/73fc0e8))
## [1.1.1](https://github.com/blockforfun/cli/compare/@blockforfun/plugin-git@1.1.0...@blockforfun/plugin-git@1.1.1) (2018-11-27)

@@ -8,0 +19,0 @@

2

oclif.manifest.json

@@ -1,1 +0,1 @@

{"version":"1.1.1","commands":{"list:json":{"id":"list:json","description":"lists entries in json format from a BlockFor.fun git registry","pluginName":"@blockforfun/plugin-git","pluginType":"core","aliases":["ls:json"],"flags":{"ref":{"name":"ref","type":"option","char":"r","description":"git ref to read from","default":"refs/heads/master"},"spec":{"name":"spec","type":"option","char":"s","description":"git refspec to fetch","default":"refs/heads/*:refs/heads/*"},"fetch":{"name":"fetch","type":"option","char":"f","description":"git fetch repository URL"}},"args":[{"name":"source","description":"git source repository URL or path","required":true},{"name":"target","description":"path to target json file"}]},"list:text":{"id":"list:text","description":"lists entries in text format from a BlockFor.fun git registry","pluginName":"@blockforfun/plugin-git","pluginType":"core","aliases":["ls","ls:text"],"flags":{"ref":{"name":"ref","type":"option","char":"r","description":"git ref to read from","default":"refs/heads/master"},"spec":{"name":"spec","type":"option","char":"s","description":"git refspec to fetch","default":"refs/heads/*:refs/heads/*"},"fetch":{"name":"fetch","type":"option","char":"f","description":"git fetch repository URL"}},"args":[{"name":"source","description":"git source repository URL or path","required":true},{"name":"target","description":"path to target json file"}]}}}
{"version":"1.1.2","commands":{"list:json":{"id":"list:json","description":"lists entries in json format from a BlockFor.fun git registry","pluginName":"@blockforfun/plugin-git","pluginType":"core","aliases":["ls:json"],"flags":{"ref":{"name":"ref","type":"option","char":"r","description":"git ref to read from","default":"refs/heads/master"},"spec":{"name":"spec","type":"option","char":"s","description":"git refspec to fetch","default":"refs/heads/*:refs/heads/*"},"fetch":{"name":"fetch","type":"option","char":"f","description":"git fetch repository URL"}},"args":[{"name":"source","description":"git source repository URL or path","required":true},{"name":"target","description":"path to target json file"}]},"list:text":{"id":"list:text","description":"lists entries in text format from a BlockFor.fun git registry","pluginName":"@blockforfun/plugin-git","pluginType":"core","aliases":["ls","ls:text"],"flags":{"ref":{"name":"ref","type":"option","char":"r","description":"git ref to read from","default":"refs/heads/master"},"spec":{"name":"spec","type":"option","char":"s","description":"git refspec to fetch","default":"refs/heads/*:refs/heads/*"},"fetch":{"name":"fetch","type":"option","char":"f","description":"git fetch repository URL"}},"args":[{"name":"source","description":"git source repository URL or path","required":true},{"name":"target","description":"path to target json file"}]}}}
{
"name": "@blockforfun/plugin-git",
"description": "BlockFor.fun CLI git plugin",
"version": "1.1.1",
"version": "1.1.2",
"author": "Mikael Karon <mikael@karon.se>",

@@ -62,3 +62,3 @@ "bugs": "https://github.com/blockforfun/cli/issues",

},
"gitHead": "70e804b29de87feea2dc569119163b6820d870be"
"gitHead": "26d3c1650f75b1149d2619840f2e2b4ff91891f3"
}

@@ -12,2 +12,5 @@ @blockforfun/plugin-git

<!-- toc -->
* [Usage](#usage)
* [Commands](#commands)
<!-- tocstop -->

@@ -22,2 +25,14 @@ <!-- tocstop -->

$ oclif-example (-v|--version|version)
@blockforfun/plugin-git/1.1.2 win32-x64 node-v10.10.0
$ oclif-example --help [COMMAND]
USAGE
$ oclif-example COMMAND
...
```
<!-- usagestop -->
```sh-session
$ npm install -g @blockforfun/plugin-git
$ oclif-example COMMAND
running command...
$ oclif-example (-v|--version|version)
@blockforfun/plugin-git/1.1.1 win32-x64 node-v10.10.0

@@ -56,2 +71,52 @@ $ oclif-example --help [COMMAND]

_See code: [src\commands\list\json.js](https://github.com/blockforfun/cli/blob/v1.1.2/src\commands\list\json.js)_
## `oclif-example list:text SOURCE [TARGET]`
lists entries in text format from a BlockFor.fun git registry
```
USAGE
$ oclif-example list:text SOURCE [TARGET]
ARGUMENTS
SOURCE git source repository URL or path
TARGET path to target json file
OPTIONS
-f, --fetch=fetch git fetch repository URL
-r, --ref=ref [default: refs/heads/master] git ref to read from
-s, --spec=spec [default: refs/heads/*:refs/heads/*] git refspec to fetch
ALIASES
$ oclif-example ls
$ oclif-example ls:text
```
_See code: [src\commands\list\text.js](https://github.com/blockforfun/cli/blob/v1.1.2/src\commands\list\text.js)_
<!-- commandsstop -->
* [`oclif-example list:json SOURCE [TARGET]`](#oclif-example-listjson-source-target)
* [`oclif-example list:text SOURCE [TARGET]`](#oclif-example-listtext-source-target)
## `oclif-example list:json SOURCE [TARGET]`
lists entries in json format from a BlockFor.fun git registry
```
USAGE
$ oclif-example list:json SOURCE [TARGET]
ARGUMENTS
SOURCE git source repository URL or path
TARGET path to target json file
OPTIONS
-f, --fetch=fetch git fetch repository URL
-r, --ref=ref [default: refs/heads/master] git ref to read from
-s, --spec=spec [default: refs/heads/*:refs/heads/*] git refspec to fetch
ALIASES
$ oclif-example ls:json
```
_See code: [src\commands\list\json.js](https://github.com/blockforfun/cli/blob/v1.1.1/src\commands\list\json.js)_

@@ -58,0 +123,0 @@

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc