@warp-ds/uno
Advanced tools
Comparing version 1.0.0-alpha.51 to 1.0.0-alpha.52
{ | ||
"name": "@warp-ds/uno", | ||
"repository": "git@github.com:warp-ds/drive.git", | ||
"version": "1.0.0-alpha.51", | ||
"version": "1.0.0-alpha.52", | ||
"type": "module", | ||
@@ -6,0 +6,0 @@ "exports": { |
@@ -1,6 +0,13 @@ | ||
const reset = (await fetch('https://assets.finn.no/pkg/@warp-ds/css/v1/resets.min.css')).text(); | ||
let reset; | ||
async function getReset() { | ||
if (reset) return reset; | ||
else { | ||
reset = (await fetch('https://assets.finn.no/pkg/@warp-ds/css/v1/resets.min.css')).text(); | ||
return reset; | ||
} | ||
} | ||
export const resets = { | ||
layer: 'preflights', | ||
getCSS: () => reset, | ||
getCSS: getReset, | ||
}; |
Sorry, the diff of this file is too big to display
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
191265
5073