tailwindcss 0.0.0-oxide-insiders.eadd6e5 → 0.0.0-oxide-insiders.f1473f5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -975,6 +975,10 @@ function registerPlugins(plugins, context) {
|
|
|
975
975
|
output.push(util);
|
|
976
976
|
}
|
|
977
977
|
}
|
|
978
|
+
// Exclude utilities that are known non-classes (e.g. from the blocklist)
|
|
979
|
+
if (context.notClassCache.size > 0) {
|
|
980
|
+
output = output.filter((cls)=>!context.notClassCache.has(cls));
|
|
981
|
+
}
|
|
978
982
|
return output;
|
|
979
983
|
};
|
|
980
984
|
// Generate a list of available variants with meta information of the type of variant.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "tailwindcss",
|
|
3
|
-
"version": "0.0.0-oxide-insiders.
|
|
3
|
+
"version": "0.0.0-oxide-insiders.f1473f5",
|
|
4
4
|
"description": "A utility-first CSS framework for rapidly building custom user interfaces.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"main": "lib/index.js",
|
|
@@ -70,7 +70,7 @@
|
|
|
70
70
|
"postcss": "^8.0.9"
|
|
71
71
|
},
|
|
72
72
|
"dependencies": {
|
|
73
|
-
"@tailwindcss/oxide": "0.0.0-oxide-insiders.
|
|
73
|
+
"@tailwindcss/oxide": "0.0.0-oxide-insiders.f1473f5",
|
|
74
74
|
"arg": "^5.0.2",
|
|
75
75
|
"browserslist": "^4.21.5",
|
|
76
76
|
"chokidar": "^3.5.3",
|
|
@@ -1007,6 +1007,11 @@ function registerPlugins(plugins, context) {
|
|
|
1007
1007
|
}
|
|
1008
1008
|
}
|
|
1009
1009
|
|
|
1010
|
+
// Exclude utilities that are known non-classes (e.g. from the blocklist)
|
|
1011
|
+
if (context.notClassCache.size > 0) {
|
|
1012
|
+
output = output.filter((cls) => !context.notClassCache.has(cls))
|
|
1013
|
+
}
|
|
1014
|
+
|
|
1010
1015
|
return output
|
|
1011
1016
|
}
|
|
1012
1017
|
|