fix for broken lint pass.
This commit is contained in:
parent
bdc2f68a4d
commit
c4b34b2d5b
|
@ -1,4 +1,3 @@
|
||||||
|
|
||||||
// THIS IS A GENERATED FILE. DO NOT EDIT BY HAND.
|
// THIS IS A GENERATED FILE. DO NOT EDIT BY HAND.
|
||||||
//
|
//
|
||||||
// This file is generated by the build-storybook-import-maps script in the UI's base directory.
|
// This file is generated by the build-storybook-import-maps script in the UI's base directory.
|
||||||
|
@ -75,7 +74,7 @@ type ImportMapType = Record<string, string>;
|
||||||
export const cssImportMaps = cssImportMapsBase.reduce(
|
export const cssImportMaps = cssImportMapsBase.reduce(
|
||||||
(acc: ImportMapType, importLine: string) => ({
|
(acc: ImportMapType, importLine: string) => ({
|
||||||
...acc,
|
...acc,
|
||||||
[importLine]: importLine.replace(/.css/, ".css?inline"),
|
[importLine]: importLine.replace(/\.css/, ".css?inline"),
|
||||||
}),
|
}),
|
||||||
{}
|
{},
|
||||||
);
|
);
|
||||||
|
|
|
@ -82,7 +82,7 @@ type ImportMapType = Record<string, string>;
|
||||||
export const cssImportMaps = cssImportMapsBase.reduce(
|
export const cssImportMaps = cssImportMapsBase.reduce(
|
||||||
(acc: ImportMapType, importLine: string) => ({
|
(acc: ImportMapType, importLine: string) => ({
|
||||||
...acc,
|
...acc,
|
||||||
[importLine]: importLine.replace(/\.css/, ".css?inline"),
|
[importLine]: importLine.replace(/\\.css/, ".css?inline"),
|
||||||
}),
|
}),
|
||||||
{}
|
{}
|
||||||
);
|
);
|
||||||
|
|
Reference in New Issue