(module)
| 107 | }); |
| 108 | |
| 109 | const getGlobalName = (module) => |
| 110 | 'TinyBase' + |
| 111 | (module == '' |
| 112 | ? '' |
| 113 | : basename(module) |
| 114 | .split('-') |
| 115 | .map((part) => part[0].toUpperCase() + part.slice(1).toLowerCase()) |
| 116 | .join('')); |
| 117 | |
| 118 | const getPrettierConfig = async () => ({ |
| 119 | ...JSON.parse(await promises.readFile('.prettierrc', UTF8)), |
no outgoing calls
no test coverage detected
searching dependent graphs…