♻️ Restructure: Move Astro to repository root
BREAKING CHANGE: Astro project is now at repository root - Removed dealplustech-astro subdirectory - Moved all Astro files to root - Updated PostCSS config to .cjs - Removed old Next.js files ✅ 11 pages built successfully ✅ Cookie consent banner included ✅ Privacy/Terms links in footer ✅ Ready for Easypanel deployment (no root dir needed) Migration path: - Old structure: /dealplustech-astro/ - New structure: / (root)
This commit is contained in:
20
dealplustech-astro/node_modules/parse5/dist/common/token.js
generated
vendored
20
dealplustech-astro/node_modules/parse5/dist/common/token.js
generated
vendored
@@ -1,20 +0,0 @@
|
||||
export var TokenType;
|
||||
(function (TokenType) {
|
||||
TokenType[TokenType["CHARACTER"] = 0] = "CHARACTER";
|
||||
TokenType[TokenType["NULL_CHARACTER"] = 1] = "NULL_CHARACTER";
|
||||
TokenType[TokenType["WHITESPACE_CHARACTER"] = 2] = "WHITESPACE_CHARACTER";
|
||||
TokenType[TokenType["START_TAG"] = 3] = "START_TAG";
|
||||
TokenType[TokenType["END_TAG"] = 4] = "END_TAG";
|
||||
TokenType[TokenType["COMMENT"] = 5] = "COMMENT";
|
||||
TokenType[TokenType["DOCTYPE"] = 6] = "DOCTYPE";
|
||||
TokenType[TokenType["EOF"] = 7] = "EOF";
|
||||
TokenType[TokenType["HIBERNATION"] = 8] = "HIBERNATION";
|
||||
})(TokenType || (TokenType = {}));
|
||||
export function getTokenAttr(token, attrName) {
|
||||
for (let i = token.attrs.length - 1; i >= 0; i--) {
|
||||
if (token.attrs[i].name === attrName) {
|
||||
return token.attrs[i].value;
|
||||
}
|
||||
}
|
||||
return null;
|
||||
}
|
||||
Reference in New Issue
Block a user