Lines Matching full:bin
14 bin: 'cwd', property
24 bin: 'cwd', property
36 const aBinFile = resolve(path, 'node_modules/.bin/a')
37 const bBinFile = resolve(path, 'node_modules/.bin/b')
66 bin: 'index.js', property
74 bin: 'index.js', property
81 const aBinFile = resolve(path, 'node_modules/.bin/a')
82 const bBinFile = resolve(path, 'node_modules/.bin/b')
88 t.throws(() => fs.statSync(aBinFile), 'should not link a bin')
89 t.ok(() => fs.statSync(bBinFile), 'should link filtered pkg bin')
101 bin: 'index.js', property
109 bin: 'index.js', property
119 bin: 'index.js', property
126 const bBinFile = resolve(path, 'node_modules/.bin/b')
127 const nestedBinFile = resolve(path, 'node_modules/a/node_modules/.bin/b')
131 t.throws(() => fs.statSync(bBinFile), 'should not link b bin')
132 t.ok(() => fs.statSync(nestedBinFile), 'should link filtered pkg bin')
144 bin: 'index.js', property
152 bin: 'index.js', property
159 const aBinFile = resolve(path, 'node_modules/.bin/a')
160 const bBinFile = resolve(path, 'node_modules/.bin/b')
166 t.throws(() => fs.statSync(aBinFile), 'should not link a bin')
167 t.ok(() => fs.statSync(bBinFile), 'should link filtered pkg bin')
192 bin: 'index.js', property
200 t.ok(() => fs.statSync(resolve(globalPrefix, 'lib/node_modules/.bin/a')))