We have dependency code like: ```js var STYLESHEET = fs.readFileSync(path.join(__dirname, '/public/style.css'), 'utf8') var TEMPLATE = fs.readFileSync(path.join(__dirname, '/public/error.html'), ``` where we could infer some combination of - `fs.read*` - `path.*` - `__dirname` Indicates reading a non-JS-imported file.
We have dependency code like:
where we could infer some combination of
fs.read*path.*__dirnameIndicates reading a non-JS-imported file.