thecore-auth 0.0.7 → 0.0.8
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.
package/package.json
CHANGED
|
@@ -78,12 +78,12 @@ const modifyTailwindConfig = () => {
|
|
|
78
78
|
if (!configContent.includes("content:")) {
|
|
79
79
|
// Trova il punto giusto per inserire la configurazione content
|
|
80
80
|
const updatedConfigContent = configContent.replace(
|
|
81
|
-
|
|
81
|
+
/module\.exports\s*=\s*{/,
|
|
82
82
|
`module.exports = {
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
83
|
+
content: [
|
|
84
|
+
"./src/**/*.{js,jsx,ts,tsx}",
|
|
85
|
+
"./public/index.html",
|
|
86
|
+
],`
|
|
87
87
|
);
|
|
88
88
|
|
|
89
89
|
fs.writeFileSync(tailwindConfigPath, updatedConfigContent);
|