Skip to content

Commit

Permalink
assets.build
Browse files Browse the repository at this point in the history
  • Loading branch information
leandrocp committed Sep 19, 2024
1 parent 3d835a5 commit 857bc87
Showing 1 changed file with 0 additions and 59 deletions.
59 changes: 0 additions & 59 deletions priv/tailwind.config.bundle.js
Original file line number Diff line number Diff line change
Expand Up @@ -8239,65 +8239,6 @@ var tailwind_config_default = {
plugin(({ addVariant }) => addVariant("phx-click-loading", [".phx-click-loading&", ".phx-click-loading &"])),
plugin(({ addVariant }) => addVariant("phx-submit-loading", [".phx-submit-loading&", ".phx-submit-loading &"])),
plugin(({ addVariant }) => addVariant("phx-change-loading", [".phx-change-loading&", ".phx-change-loading &"]))
// Embeds Heroicons (https://heroicons.com) into your app.css bundle
// See your `CoreComponents.icon/1` for more information.
//
// plugin(function ({ matchComponents, theme }) {
// let values = {}
// let iconsDir = null
// // Copy from host app deps.
// let hostIconsDir = path.join(__dirname, "../../heroicons/optimized")
// // Copy from release.
// // Adjust for Umbrella apps. See the Heroicons guide for more info.
// let releaseIconsDir = path.join(__dirname, "../../../vendor/heroicons/optimized")
// if (fs.existsSync(hostIconsDir)) {
// iconsDir = hostIconsDir
// } else if (fs.existsSync(releaseIconsDir)) {
// iconsDir = releaseIconsDir
// } else {
// return matchComponents({ hero: ({ _name, _fullPath }) => {} }, { values })
// }
// let icons = [
// ["", "/24/outline"],
// ["-solid", "/24/solid"],
// ["-mini", "/20/solid"],
// ["-micro", "/16/solid"],
// ]
// icons.forEach(([suffix, dir]) => {
// fs.readdirSync(path.join(iconsDir, dir)).forEach((file) => {
// let name = path.basename(file, ".svg") + suffix
// values[name] = { name, fullPath: path.join(iconsDir, dir, file) }
// })
// })
// matchComponents(
// {
// hero: ({ name, fullPath }) => {
// let content = fs
// .readFileSync(fullPath)
// .toString()
// .replace(/\r?\n|\r/g, "")
// let size = theme("spacing.6")
// if (name.endsWith("-mini")) {
// size = theme("spacing.5")
// } else if (name.endsWith("-micro")) {
// size = theme("spacing.4")
// }
// return {
// [`--hero-${name}`]: `url('data:image/svg+xml;utf8,${content}')`,
// "-webkit-mask": `var(--hero-${name})`,
// mask: `var(--hero-${name})`,
// "mask-repeat": "no-repeat",
// "background-color": "currentColor",
// "vertical-align": "middle",
// display: "inline-block",
// width: size,
// height: size,
// }
// },
// },
// { values },
// )
// }),
]
};
export {
Expand Down

0 comments on commit 857bc87

Please sign in to comment.