mirror of
https://github.com/scratchfoundation/scratch-l10n.git
synced 2025-01-08 13:42:11 -05:00
fix: fix mkdirp import
This commit is contained in:
parent
b501bddc6b
commit
cfd31fda71
1 changed files with 2 additions and 2 deletions
|
@ -40,12 +40,12 @@ Missing locales are ignored, react-intl will use the default messages for them.
|
|||
*/
|
||||
import * as fs from 'fs';
|
||||
import * as path from 'path';
|
||||
import {sync as mkdirpSync} from 'mkdirp';
|
||||
import mkdirp from 'mkdirp';
|
||||
import defaultsDeep from 'lodash.defaultsdeep';
|
||||
import locales from '../src/supported-locales.mjs';
|
||||
|
||||
const MSGS_DIR = './locales/';
|
||||
mkdirpSync(MSGS_DIR);
|
||||
mkdirp.sync(MSGS_DIR);
|
||||
let missingLocales = [];
|
||||
|
||||
const combineJson = (component) => {
|
||||
|
|
Loading…
Reference in a new issue