+
diff --git a/packages/default-theme/cms/sections/CmsSectionSidebar.vue b/packages/default-theme/cms/sections/CmsSectionSidebar.vue
index 00341714d..38783c67d 100644
--- a/packages/default-theme/cms/sections/CmsSectionSidebar.vue
+++ b/packages/default-theme/cms/sections/CmsSectionSidebar.vue
@@ -54,7 +54,7 @@ export default {
display: flex;
flex-direction: column;
- @include desktop-size;
+ @include sizing-mode-boxed;
@include for-desktop() {
flex-direction: row;
diff --git a/packages/default-theme/cms/settings.scss b/packages/default-theme/cms/settings.scss
index 5d4bd85f9..5ddcf61c1 100644
--- a/packages/default-theme/cms/settings.scss
+++ b/packages/default-theme/cms/settings.scss
@@ -1,6 +1,6 @@
@import '~@storefront-ui/vue/styles.scss';
-@mixin desktop-size {
+@mixin sizing-mode-boxed {
@include for-desktop {
max-width: 1320px;
margin: 0 auto;
diff --git a/scripts/updateDependencies.js b/scripts/updateDependencies.js
index 60cd5eb84..a5a24610d 100644
--- a/scripts/updateDependencies.js
+++ b/scripts/updateDependencies.js
@@ -11,15 +11,15 @@ async function run() {
const packagesDirPath = path.join(rootDirPath, "packages");
const list = fs
.list(packagesDirPath)
- .map((filename) => path.join(packagesDirPath, filename))
- .filter((file) => fs.exists(file) === "dir");
+ .map(filename => path.join(packagesDirPath, filename))
+ .filter(file => fs.exists(file) === "dir");
list.push(rootDirPath);
try {
for (let index = 0; index < list.length; index++) {
await execa("ncu", ["-i"], {
stdio: "inherit",
- cwd: list[index],
+ cwd: list[index]
});
}
// This case will be used in future with -u flag
@@ -34,7 +34,7 @@ async function run() {
await execa("yarn", [], {
stdio: "inherit",
- cwd: rootDirPath,
+ cwd: rootDirPath
});
} catch (e) {
console.error(