Skip to content

Commit

Permalink
fix: 🐛 fix wrong import of svgo
Browse files Browse the repository at this point in the history
  • Loading branch information
nivekcode committed Oct 11, 2020
1 parent dd392ac commit d0e38e2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
1 change: 0 additions & 1 deletion src/lib/generators/code-snippet-generators.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
import camelCase from 'lodash.camelcase';
import kebabCase from 'lodash.kebabcase';
import snakeCase from 'lodash.snakecase';
import toUpper from 'lodash.toupper';

import { SvgDefinition } from '../converters/shared.converter';
import { FileConversionOptions, ConstantsConversionOptions } from '../options/conversion-options';
Expand Down
3 changes: 2 additions & 1 deletion src/lib/helpers/svg-optimization.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import * as Svgo from 'svgo';
// import-conductor-skip
import Svgo = require('svgo');

import { readFile } from './file-helpers';

Expand Down

0 comments on commit d0e38e2

Please sign in to comment.