alexanderGugel/ied

ied should create scripts in node_modules/.bin on Windows

开放

#119 创建于 2016年4月30日

 (1 条评论) (0 个反应) (0 位负责人)JavaScript (51 个派生)batch import
help wantedwindows

仓库指标

星标
 (1,990 个星标)
PR 合并指标
 (30 天内没有已合并 PR)

描述

Currently ied creates directory junctions for the .bin symlinks on Windows (PR #95) - as junctions work only for directories, this does not work. As discussed in #95, symlinks require additional permissions on Windows, so it's a bad idea to use them.

ied should continue using directory junctions for the package directories, but for the .bin tools, it should follow what npm does on Windows - for each tool it creates 2 scripts:

  1. - a wrapper script for Cygwin/MSYS contexts
  2. .cmd - a wrapper script for native/any other context

贡献者指南