浏览代码

Remove broken link and move npmg alias position

Xavier Haniquaut 8 年之前
父节点
当前提交
f9c16f940e
共有 1 个文件被更改,包括 2 次插入4 次删除
  1. 2 4
      plugins/npm/npm.plugin.zsh

+ 2 - 4
plugins/npm/npm.plugin.zsh

@@ -1,13 +1,11 @@
 eval "$(npm completion 2>/dev/null)"
 
+# Install dependencies globally
+alias npmg="npm i -g "
 
 # npm package names are lowercase
-# - https://twitter.com/substack/status/23122603153150361
 # Thus, we've used camelCase for the following aliases:
 
-# Install dependencies globally
-alias npmg="npm i -g "
-
 # Install and save to dependencies in your package.json
 # npms is used by https://www.npmjs.com/package/npms
 alias npmS="npm i -S "