Skip to content

Commit

Permalink
refactor: change from default imports to wildcard imports
Browse files Browse the repository at this point in the history
  • Loading branch information
bxt committed May 10, 2022
1 parent a948d41 commit 2047880
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/analyse/adapt-dependencies.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import semver from 'semver';
import * as semver from 'semver';

import { clone } from 'ramda';

Expand Down
2 changes: 1 addition & 1 deletion src/analyse/determine-version.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { clone } from 'ramda';
import semver from 'semver';
import * as semver from 'semver';
import { green, red, yellow, white } from 'chalk';

import { logger } from '../helpers/logger';
Expand Down
2 changes: 1 addition & 1 deletion src/analyse/spec/adapt-dependencies.spec.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/* eslint-env node, jest */
import semver from 'semver';
import * as semver from 'semver';

import { clone } from 'ramda';

Expand Down

0 comments on commit 2047880

Please sign in to comment.