Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/malikov0216/get-lerna-changed
https://github.com/malikov0216/get-lerna-changed
Last synced: 4 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/malikov0216/get-lerna-changed
- Owner: malikov0216
- Created: 2019-06-12T08:47:23.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2019-06-12T09:05:51.000Z (over 5 years ago)
- Last Synced: 2024-11-08T00:27:44.523Z (about 2 months ago)
- Language: Go
- Size: 3.91 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Get lerna changed
This library helps to get changed lerna bundle. Actually, it runs:
```bash
lerna changed
```
And gets changed project name
## InstallationUse the "go get".
```bash
go get github.com/malikov0216/get-lerna-changed
```## Usage
```go
import (
"fmt"
getChanged "github.com/malikov0216/get-lerna-changed"
)func main () {
projectName, err := getChanged.ExecuteLerna()
if err != nil {
fmt.Println(err)
}
fmt.Println(projectName)
}
```## License
[MIT](https://choosealicense.com/licenses/mit/)