Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/kokororin/yarn-lock-cli
CLI tool for transforming registry in yarn.lock
https://github.com/kokororin/yarn-lock-cli
yarn yarn-cli yarnpkg
Last synced: 17 days ago
JSON representation
CLI tool for transforming registry in yarn.lock
- Host: GitHub
- URL: https://github.com/kokororin/yarn-lock-cli
- Owner: kokororin
- Created: 2017-10-28T09:22:22.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2023-10-25T12:28:58.000Z (about 1 year ago)
- Last Synced: 2024-10-23T23:49:27.494Z (22 days ago)
- Topics: yarn, yarn-cli, yarnpkg
- Language: TypeScript
- Size: 50.8 KB
- Stars: 5
- Watchers: 2
- Forks: 0
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# yarn-lock-cli
[![npm](https://img.shields.io/npm/v/yarn-lock-cli.svg?style=flat)](https://www.npmjs.com/package/yarn-lock-cli)
CLI tool for transforming registry in yarn.lock
## Feature
You can transform among the following registry
* registry.npm.taobao.org
* registry.npmmirror.com
* registry.npmjs.org
* registry.yarnpkg.com## Example
**In**
```yaml
# THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY.
# yarn lockfile v1react@^15.6.1:
version "15.6.2"
resolved "http://registry.npm.taobao.org/react/download/react-15.6.2.tgz#dba0434ab439cfe82f108f0f511663908179aa72"
```**Out**
```yaml
# THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY.
# yarn lockfile v1react@^15.6.1:
version "15.6.2"
resolved "https://registry.npmjs.org/react/-/react-15.6.2.tgz#dba0434ab439cfe82f108f0f511663908179aa72"
```## Installation
```bash
$ npm install -g yarn-lock-cli
```## Usage
```bash
$ yarn-lock
```## License
The MIT License (MIT).