Notes to self: fs.existsSync should probably be replaced with functions that test for the presence of a folder, not files. Similarly, fs.existsSync("cache/props.generated.json") should test for the presence of a file, not a folder (maybe we add existsFolder and existsFile helpers to utils.
Not yet documented.
Notes to self:
fs.existsSync
should probably be replaced with functions that test for the presence of a folder, not files. Similarly,fs.existsSync("cache/props.generated.json")
should test for the presence of a file, not a folder (maybe we addexistsFolder
andexistsFile
helpers to utils.