Ooops, turns out prettier-plugin-organize-imports was not added

This commit is contained in:
Lea Verou
2024-12-13 04:16:32 -05:00
parent e9377cf746
commit 6b9f064aeb
2 changed files with 4 additions and 1 deletions

View File

@@ -118,6 +118,7 @@
"playwright": "^1.46.1",
"plop": "^4.0.0",
"prettier": "^3.0.3",
"prettier-plugin-organize-imports": "^4.1.0",
"prismjs": "^1.29.0",
"react": "^18.2.0",
"recursive-copy": "^2.0.14",

View File

@@ -111,7 +111,9 @@ async function generateStyles() {
await copy(join(rootDir, 'src/themes/default.css'), join(cdnDir, 'themes/default.css'), { overwrite: true });
await copy(join(rootDir, 'src/themes/forms.css'), join(cdnDir, 'themes/forms.css'), { overwrite: true });
await copy(join(rootDir, 'src/themes/layout.css'), join(cdnDir, 'themes/layout.css'), { overwrite: true });
await copy(join(rootDir, 'src/themes/utilities.css'), join(cdnDir, 'themes/utilities.css'), { overwrite: true });
await copy(join(rootDir, 'src/themes/utilities/index.css'), join(cdnDir, 'themes/utilities/index.css'), {
overwrite: true
});
} else {
await copy(join(rootDir, 'src/themes'), join(cdnDir, 'themes'), { overwrite: true });
}