Commit 8d67731

Jake Champion <me@jakechampion.name>
2022-06-29 16:17:38
Add missing chalk import (#460)
without this, line 60 would throw an error due to chalk being undefined
1 parent ad52d01
Changed files (1)
src/experimental.ts
@@ -13,6 +13,7 @@
 // limitations under the License.
 
 import assert from 'node:assert'
+import chalk from 'chalk'
 import { $, within } from './core.js'
 import { sleep } from './goods.js'
 import { Duration, parseDuration } from './util.js'