update version + versions
This commit is contained in:
Родитель
a125f266bf
Коммит
6702a90969
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "ibex-dashboard",
|
||||
"version": "1.2.0",
|
||||
"version": "1.2.1",
|
||||
"private": true,
|
||||
"dependencies": {
|
||||
"npm-run-all": "^4.0.2"
|
||||
|
|
|
@ -81,7 +81,15 @@ const ensureCustomFoldersExists = () => {
|
|||
}
|
||||
|
||||
if (!fs.existsSync(privateTemplate)) {
|
||||
fs.mkdirSync(privateTemplate);
|
||||
privateTemplate
|
||||
.split(path.sep)
|
||||
.reduce((currentPath, folder) => {
|
||||
currentPath += folder + path.sep;
|
||||
if (!fs.existsSync(currentPath)){
|
||||
fs.mkdirSync(currentPath);
|
||||
}
|
||||
return currentPath;
|
||||
}, '');
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Загрузка…
Ссылка в новой задаче