From e5e15a8115db48d9064bb49de8000a7db06efef8 Mon Sep 17 00:00:00 2001 From: Luna Wei Date: Tue, 19 Dec 2023 10:46:54 -0800 Subject: [PATCH] [LOCAL] Add missing sed import to test script --- scripts/test-e2e-local.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/test-e2e-local.js b/scripts/test-e2e-local.js index 3d23322931c..75fc970d30a 100644 --- a/scripts/test-e2e-local.js +++ b/scripts/test-e2e-local.js @@ -16,7 +16,7 @@ * and to make it more accessible for other devs to play around with. */ -const {exec, pushd, popd, pwd, cd} = require('shelljs'); +const {exec, pushd, popd, pwd, cd, sed} = require('shelljs'); const updateTemplatePackage = require('./update-template-package'); const yargs = require('yargs'); const path = require('path');