Skip to content

Commit d0e38e2

Browse files
committed
fix: 🐛 fix wrong import of svgo
1 parent dd392ac commit d0e38e2

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/lib/generators/code-snippet-generators.ts

-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
import camelCase from 'lodash.camelcase';
22
import kebabCase from 'lodash.kebabcase';
33
import snakeCase from 'lodash.snakecase';
4-
import toUpper from 'lodash.toupper';
54

65
import { SvgDefinition } from '../converters/shared.converter';
76
import { FileConversionOptions, ConstantsConversionOptions } from '../options/conversion-options';

src/lib/helpers/svg-optimization.ts

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
import * as Svgo from 'svgo';
1+
// import-conductor-skip
2+
import Svgo = require('svgo');
23

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

0 commit comments

Comments
 (0)