From 52a9076f14a1b2a801ed08c1b96e2e6434e7a640 Mon Sep 17 00:00:00 2001 From: coderaiser Date: Sun, 29 Mar 2026 14:01:56 +0000 Subject: [PATCH] =?UTF-8?q?chore:=20cloudcmd:=20actions:=20lint=20?= =?UTF-8?q?=E2=98=98=EF=B8=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- bin/cloudcmd.spec.js | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/bin/cloudcmd.spec.js b/bin/cloudcmd.spec.js index 286ddb95..d09541b9 100644 --- a/bin/cloudcmd.spec.js +++ b/bin/cloudcmd.spec.js @@ -1,13 +1,12 @@ import {spawnSync} from 'node:child_process'; import {test} from 'supertape'; - -const cliPath = new URL('cloudcmd.js', import.meta.url).pathname; import info from '../package.json' with { type: 'json', -} +}; + +const cliPath = new URL('cloudcmd.js', import.meta.url).pathname; test('cloudcmd: bin: cli: -h', (t) => { - const {version} = info; const {stdout} = spawnSync(cliPath, ['-h'], { encoding: 'utf8', });