Skip to content

Commit

Permalink
chore: update module to node16 [gh-0]
Browse files Browse the repository at this point in the history
  • Loading branch information
umutuzgur committed Sep 21, 2023
1 parent fc2f63c commit ce409b2
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion packages/cli/src/commands/deploy.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import {
MaintenanceWindow, PrivateLocation, PrivateLocationCheckAssignment, PrivateLocationGroupAssignment,
Project, ProjectData,
} from '../constructs'
import * as chalk from 'chalk'
import chalk from 'chalk'
import { splitConfigFilePath, getGitInformation } from '../services/util'
import commonMessages from '../messages/common-messages'
import { ProjectDeployResponse } from '../rest/projects'
Expand Down
2 changes: 1 addition & 1 deletion packages/cli/src/commands/login.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import open from 'open'
import * as chalk from 'chalk'
import chalk from 'chalk'
import { BaseCommand } from './baseCommand'
import prompts from 'prompts'
import config from '../services/config'
Expand Down
2 changes: 1 addition & 1 deletion packages/cli/src/commands/switch.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import * as chalk from 'chalk'
import chalk from 'chalk'
import { Flags } from '@oclif/core'
import config from '../services/config'
import * as api from '../rest/api'
Expand Down
2 changes: 1 addition & 1 deletion packages/cli/src/reporters/abstract-list.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import * as chalk from 'chalk'
import chalk from 'chalk'
import indentString from 'indent-string'

import { Reporter } from './reporter'
Expand Down
2 changes: 1 addition & 1 deletion packages/cli/src/reporters/dot.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import * as chalk from 'chalk'
import chalk from 'chalk'
import AbstractListReporter from './abstract-list'
import { CheckRunId } from '../services/abstract-check-runner'
import { print, printLn } from './util'
Expand Down
2 changes: 1 addition & 1 deletion packages/cli/src/reporters/list.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import indentString from 'indent-string'
import * as chalk from 'chalk'
import chalk from 'chalk'

import AbstractListReporter from './abstract-list'
import { CheckRunId } from '../services/abstract-check-runner'
Expand Down

0 comments on commit ce409b2

Please sign in to comment.