Skip to content

Commit

Permalink
Update scripts/utils.js
Browse files Browse the repository at this point in the history
Co-authored-by: SanD <[email protected]>
  • Loading branch information
tristen and AlexanderBelokon authored Jan 3, 2025
1 parent 3034703 commit 45bdaef
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/utils.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
const { promises: fs } = require('fs');
const path = require('path');
const xml2js = require('xml2js');
const mkdirp = require('mkdirp');
const mkdirp = dir => fs.mkdir(dir, { recursive: true });

const builder = new xml2js.Builder({
rootName: 'svg',
Expand Down

0 comments on commit 45bdaef

Please sign in to comment.