Lines Matching refs:files

8     var files = {};
9 files[path.resolve('/foo/bar/baz.js')] = 'beep';
18 cb(null, Object.prototype.hasOwnProperty.call(files, path.resolve(file)));
24 cb(null, files[path.resolve(file)]);
58 var files = {};
59 files[path.resolve('/foo/bar/baz.js')] = 'beep';
68 cb(null, Object.prototype.hasOwnProperty.call(files, file));
75 cb(null, files[file]);
109 var files = {};
110 files[path.resolve('/foo/node_modules/bar/baz.js')] = 'beep';
111 files[path.resolve('/foo/node_modules/bar/package.json')] = JSON.stringify({
123 cb(null, Object.prototype.hasOwnProperty.call(files, path.resolve(file)));
129 cb(null, files[path.resolve(file)]);
147 var files = {};
148 files[path.resolve('/foo/node_modules/bar/baz.js')] = 'beep';
149 files[path.resolve('/foo/node_modules/bar/package.json')] = JSON.stringify({
161 cb(null, Object.prototype.hasOwnProperty.call(files, path.resolve(file)));
168 cb(null, files[path.resolve(file)]);
186 var files = {};
187 files[path.resolve('/foo/bar/baz.js')] = 'beep';
188 files[path.resolve('/foo/bar/symlinked/baz.js')] = 'beep';
199 cb(null, Object.prototype.hasOwnProperty.call(files, path.resolve(file)));
205 cb(null, files[path.resolve(file)]);
244 var files = {};
245 files[path.resolve('/foo/node_modules/bar/something-else.js')] = 'beep';
246 files[path.resolve('/foo/node_modules/bar/package.json')] = JSON.stringify({
249 files[path.resolve('/foo/node_modules/bar/baz.js')] = 'boop';
259 cb(null, Object.prototype.hasOwnProperty.call(files, path.resolve(file)));
266 cb(null, files[path.resolve(file)]);
289 cb(null, JSON.parse(files[path.resolve(file)]));