Skip to content

Commit

Permalink
chore: update cli version (#11)
Browse files Browse the repository at this point in the history
  • Loading branch information
jsalaber authored Jan 26, 2023
1 parent 4235ee8 commit 35722cf
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ function run() {
return;
}
try {
yield (0, exec_1.exec)('npm', ['install', '-g', '@devcycle/[email protected].5']);
yield (0, exec_1.exec)('npm', ['install', '-g', '@devcycle/[email protected].8']);
const output = yield (0, exec_1.getExecOutput)('dvc', ['usages', '--format', 'json']);
const variables = JSON.parse(output.stdout);
yield postCodeUsages(variables);
Expand Down
2 changes: 1 addition & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ async function run() {
}

try {
await exec('npm', ['install', '-g', '@devcycle/[email protected].5'])
await exec('npm', ['install', '-g', '@devcycle/[email protected].8'])

const output = await getExecOutput(
'dvc',
Expand Down

0 comments on commit 35722cf

Please sign in to comment.