(dir = DIST_DIR)
| 125 | const allDefinitions = (cb) => allOf(ALL_DEFINITIONS, cb); |
| 126 | |
| 127 | const clearDir = async (dir = DIST_DIR) => { |
| 128 | try { |
| 129 | await removeDir(dir); |
| 130 | } catch {} |
| 131 | await makeDir(dir); |
| 132 | }; |
| 133 | |
| 134 | const makeDir = async (dir) => { |
| 135 | try { |
searching dependent graphs…