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 20, 2023
1 parent 4b663a6 commit e392268
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 6 deletions.
2 changes: 1 addition & 1 deletion packages/cli/src/commands/test.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { Flags, Args, ux } from '@oclif/core'
import * as indentString from 'indent-string'
import indentString from 'indent-string'
import { isCI } from 'ci-info'
import * as api from '../rest/api'
import config from '../services/config'
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,5 +1,5 @@
import * as chalk from 'chalk'
import * as indentString from 'indent-string'
import indentString from 'indent-string'

import { Reporter } from './reporter'
import { CheckStatus, formatCheckTitle, getTestSessionUrl, printLn } from './util'
Expand Down
2 changes: 1 addition & 1 deletion packages/cli/src/reporters/ci.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import * as indentString from 'indent-string'
import indentString from 'indent-string'

import AbstractListReporter from './abstract-list'
import { formatCheckTitle, formatCheckResult, CheckStatus, 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,4 +1,4 @@
import * as indentString from 'indent-string'
import indentString from 'indent-string'
import * as chalk from 'chalk'

import AbstractListReporter from './abstract-list'
Expand Down
4 changes: 2 additions & 2 deletions packages/cli/src/reporters/util.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import * as chalk from 'chalk'
import * as indentString from 'indent-string'
import chalk from 'chalk'
import indentString from 'indent-string'
import { DateTime } from 'luxon'
import * as logSymbols from 'log-symbols'

Expand Down
1 change: 1 addition & 0 deletions packages/cli/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
"declaration": true,
"importHelpers": false,
"module": "node16",
"esModuleInterop": true,
"outDir": "dist",
"rootDirs": ["src", "e2e"],
"strict": true,
Expand Down

0 comments on commit e392268

Please sign in to comment.