Compare commits

..

2 Commits

Author SHA1 Message Date
宇天 359b8a782a 更新依赖版本 2018-05-25 18:55:49 +08:00
宇天 f8f98f0194 fixed 2018-05-15 21:41:03 +08:00
3 changed files with 13 additions and 4 deletions

View File

@ -3,7 +3,17 @@
# bash-ip # bash-ip
> `bash-ip` 类似于linux下的简单版的ip命令工具. 目前只实现了几个用法, 后续会慢慢完善。 > `bash-ip` 类似于linux下的简单版的ip命令工具. 目前只实现了几个用法, 后续会慢慢完善。
## versions
## 安装
```bash
npm i bash-ip -g
```
## 版本更新信息
- 0.0.2 (2018/05/15)
* 删除多余的测试模块
- 0.0.1 (2018/05/15) - 0.0.1 (2018/05/15)
* 发布0.0.1版 * 发布0.0.1版

View File

@ -3,7 +3,6 @@
require('es.shim') require('es.shim')
const os = require('os') const os = require('os')
const path = require('path') const path = require('path')
const pg = require('progress')
const cp = require('child_process') const cp = require('child_process')
const chalk = require('chalk') const chalk = require('chalk')

View File

@ -1,6 +1,6 @@
{ {
"name": "bash-ip", "name": "bash-ip",
"version": "0.0.1", "version": "0.0.3",
"description": "类似于linux下的简单版的ip命令工具", "description": "类似于linux下的简单版的ip命令工具",
"main": "index.js", "main": "index.js",
"bin": { "bin": {
@ -8,7 +8,7 @@
}, },
"keywords": ["ip", "iproute2"], "keywords": ["ip", "iproute2"],
"dependencies": { "dependencies": {
"es.shim": "0.0.2", "es.shim": "^1.0.1",
"chalk": "^2.4.1" "chalk": "^2.4.1"
}, },
"engines": { "engines": {