这是一个创建于 3255 天前的主题,其中的信息可能已经有所发展或是发生改变。
windows 下 某些文件路径太长了 想要压缩打包传给别人怎么办?
npm 安装的包,一层套着一层 node_modules。
想要把整个目录压缩起来弄到另一台电脑上。。。直接压缩会错误 该怎么办~~
2 条回复 • 2016-03-21 07:23:52 +08:00
![shyling](https://cdn.v2ex.com/avatar/c129/6c1a/142212_normal.png?m=1455339718) |
|
1
shyling 2016-03-21 07:19:16 +08:00
- npm3 的 node_modules 下的目录是平级的 - 正确的做法是不打包 node_modules ,根据 package.json 用 npm install 安装
|