We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b50a04c commit aa5ecfdCopy full SHA for aa5ecfd
packages/dev-utils/src/utils/styles/combineAllFiles.ts
@@ -11,6 +11,7 @@ import {
11
src,
12
} from "../../constants";
13
import { format } from "../format";
14
+import { list } from "../list";
15
import { getPackages } from "../packages";
16
17
const getFileOrder = (packageName: string): readonly string[] => {
@@ -91,6 +92,10 @@ function assertAllPackages(): void {
91
92
const packages = getPackages("scss");
93
const diff = difference(packages, PACKAGE_ORDER);
94
if (diff.length) {
95
+ log.error(
96
+ "Unkown scss packages were found but have not been included in the `PACKAGE_ORDER`"
97
+ );
98
+ log.error(list(diff));
99
process.exit(1);
100
}
101
0 commit comments