fix: Final restoration with port 80
✅ COMPLETED: 1. Dockerfile uses port 80 (astro preview) 2. BaseLayout imports globals.css 3. globals.css with Tailwind v4 @theme syntax 4. index.astro has Header, Footer, FixedContact 5. All image references fixed to existing files 6. Hero uses hdpe_pipe_main.jpg 7. Product cards use hdpe001.jpg 8. pt-20 on main for fixed header ✅ TESTED LOCALLY: - Build: 15 pages in 1.27s - Docker build successful - Port 80 working - Images load - CSS works Ready for Easypanel deployment.
This commit is contained in:
58
node_modules/drizzle-orm/casing.js
generated
vendored
Normal file
58
node_modules/drizzle-orm/casing.js
generated
vendored
Normal file
@@ -0,0 +1,58 @@
|
||||
import { entityKind } from "./entity.js";
|
||||
import { Table } from "./table.js";
|
||||
function toSnakeCase(input) {
|
||||
const words = input.replace(/['\u2019]/g, "").match(/[\da-z]+|[A-Z]+(?![a-z])|[A-Z][\da-z]+/g) ?? [];
|
||||
return words.map((word) => word.toLowerCase()).join("_");
|
||||
}
|
||||
function toCamelCase(input) {
|
||||
const words = input.replace(/['\u2019]/g, "").match(/[\da-z]+|[A-Z]+(?![a-z])|[A-Z][\da-z]+/g) ?? [];
|
||||
return words.reduce((acc, word, i) => {
|
||||
const formattedWord = i === 0 ? word.toLowerCase() : `${word[0].toUpperCase()}${word.slice(1)}`;
|
||||
return acc + formattedWord;
|
||||
}, "");
|
||||
}
|
||||
function noopCase(input) {
|
||||
return input;
|
||||
}
|
||||
class CasingCache {
|
||||
static [entityKind] = "CasingCache";
|
||||
/** @internal */
|
||||
cache = {};
|
||||
cachedTables = {};
|
||||
convert;
|
||||
constructor(casing) {
|
||||
this.convert = casing === "snake_case" ? toSnakeCase : casing === "camelCase" ? toCamelCase : noopCase;
|
||||
}
|
||||
getColumnCasing(column) {
|
||||
if (!column.keyAsName) return column.name;
|
||||
const schema = column.table[Table.Symbol.Schema] ?? "public";
|
||||
const tableName = column.table[Table.Symbol.OriginalName];
|
||||
const key = `${schema}.${tableName}.${column.name}`;
|
||||
if (!this.cache[key]) {
|
||||
this.cacheTable(column.table);
|
||||
}
|
||||
return this.cache[key];
|
||||
}
|
||||
cacheTable(table) {
|
||||
const schema = table[Table.Symbol.Schema] ?? "public";
|
||||
const tableName = table[Table.Symbol.OriginalName];
|
||||
const tableKey = `${schema}.${tableName}`;
|
||||
if (!this.cachedTables[tableKey]) {
|
||||
for (const column of Object.values(table[Table.Symbol.Columns])) {
|
||||
const columnKey = `${tableKey}.${column.name}`;
|
||||
this.cache[columnKey] = this.convert(column.name);
|
||||
}
|
||||
this.cachedTables[tableKey] = true;
|
||||
}
|
||||
}
|
||||
clearCache() {
|
||||
this.cache = {};
|
||||
this.cachedTables = {};
|
||||
}
|
||||
}
|
||||
export {
|
||||
CasingCache,
|
||||
toCamelCase,
|
||||
toSnakeCase
|
||||
};
|
||||
//# sourceMappingURL=casing.js.map
|
||||
Reference in New Issue
Block a user