UNPKG

gerald-react-scripts-fork

Version:

Gerald's fork of the configuration and scripts for Create React App.

11 lines (8 loc) 221 B
'use strict'; var findUp = require('find-up'); module.exports = function (cwd) { return findUp('package.json', {cwd: cwd}); }; module.exports.sync = function (cwd) { return findUp.sync('package.json', {cwd: cwd}); };