Skip to content

Commit

Permalink
Fixed wrong import for 'glob' and 'fs' modules
Browse files Browse the repository at this point in the history
  • Loading branch information
gaui committed Apr 1, 2019
1 parent f517366 commit b86463e
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -318,6 +318,10 @@ Just remember to run the following beforehand:

## Changelog

### 1.2.2

- **fix:** Wrong import for `glob` module.

### 1.2.1

- **feat:** Added the option to convert platform specific variables with the [`convertVariables` option](#convertVariables).
Expand Down
4 changes: 2 additions & 2 deletions src/utils/file.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import * as fs from 'fs';
import * as glob from 'glob';
import fs from 'fs';
import glob from 'glob';
import { IArgumentFileContents, IArgumentFilePatterns } from '../api';
import { IFileUtils } from '../api/utils/file';

Expand Down

0 comments on commit b86463e

Please sign in to comment.