Skip to content

Commit

Permalink
deps: Upgrade dependencies to latest versions
Browse files Browse the repository at this point in the history
  • Loading branch information
angelmadames committed Feb 16, 2024
1 parent f42761b commit 620f953
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 5 deletions.
Binary file modified bun.lockb
Binary file not shown.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@
"typescript": "^5.0.0"
},
"dependencies": {
"@inquirer/prompts": "^3.3.0",
"@inquirer/prompts": "^4.0.0",
"chalk": "^5.3.0",
"commander": "^11.1.0"
"commander": "^12.0.0"
}
}
1 change: 0 additions & 1 deletion src/commands/setup/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@ export const setupCommand = () => {
'setup at every repository specified.',
)
.option('-p, --project-name [project-name]', 'Set project name')
.option('-o, --repos-root-path [root-path]', 'Repositories root path')
.option('-e, --dot-env [path]', 'Project config dot env file')
.option('-d, --dockerfile [dockerfile]', 'Dockerfile needed for dev')
.addOption(sharedOptions.repos())
Expand Down
3 changes: 1 addition & 2 deletions test/commands/config.current-project.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ describe("Command: 'config current-project'", () => {
});

test('is set by environment variable', () => {
const result = spawnSync(['bun', './cli.ts', 'config', 'current-project'], {
const result = spawnSync(['./cli.ts', 'config', 'current-project'], {
env: { ...process.env, DEMS_CURRENT_PROJECT: 'dev' },
});
expect(result.stdout.toString()).toContain('dev');
Expand All @@ -48,7 +48,6 @@ describe("Command: 'config current-project'", () => {
const command = currentProjectCommand();
expect(command.getOptionValue('set')).toBeUndefined();
const result = spawnSync([
'bun',
'./cli.ts',
'config',
'current-project',
Expand Down

0 comments on commit 620f953

Please sign in to comment.