♻️ 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:
21
dealplustech-astro/node_modules/micromark-util-normalize-identifier/dev/index.d.ts
generated
vendored
21
dealplustech-astro/node_modules/micromark-util-normalize-identifier/dev/index.d.ts
generated
vendored
@@ -1,21 +0,0 @@
|
||||
/**
|
||||
* Normalize an identifier (as found in references, definitions).
|
||||
*
|
||||
* Collapses markdown whitespace, trim, and then lower- and uppercase.
|
||||
*
|
||||
* Some characters are considered “uppercase”, such as U+03F4 (`ϴ`), but if their
|
||||
* lowercase counterpart (U+03B8 (`θ`)) is uppercased will result in a different
|
||||
* uppercase character (U+0398 (`Θ`)).
|
||||
* So, to get a canonical form, we perform both lower- and uppercase.
|
||||
*
|
||||
* Using uppercase last makes sure keys will never interact with default
|
||||
* prototypal values (such as `constructor`): nothing in the prototype of
|
||||
* `Object` is uppercase.
|
||||
*
|
||||
* @param {string} value
|
||||
* Identifier to normalize.
|
||||
* @returns {string}
|
||||
* Normalized identifier.
|
||||
*/
|
||||
export function normalizeIdentifier(value: string): string;
|
||||
//# sourceMappingURL=index.d.ts.map
|
||||
@@ -1 +0,0 @@
|
||||
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["index.js"],"names":[],"mappings":"AAEA;;;;;;;;;;;;;;;;;;GAkBG;AACH,2CALW,MAAM,GAEJ,MAAM,CAmBlB"}
|
||||
38
dealplustech-astro/node_modules/micromark-util-normalize-identifier/dev/index.js
generated
vendored
38
dealplustech-astro/node_modules/micromark-util-normalize-identifier/dev/index.js
generated
vendored
@@ -1,38 +0,0 @@
|
||||
import {values} from 'micromark-util-symbol'
|
||||
|
||||
/**
|
||||
* Normalize an identifier (as found in references, definitions).
|
||||
*
|
||||
* Collapses markdown whitespace, trim, and then lower- and uppercase.
|
||||
*
|
||||
* Some characters are considered “uppercase”, such as U+03F4 (`ϴ`), but if their
|
||||
* lowercase counterpart (U+03B8 (`θ`)) is uppercased will result in a different
|
||||
* uppercase character (U+0398 (`Θ`)).
|
||||
* So, to get a canonical form, we perform both lower- and uppercase.
|
||||
*
|
||||
* Using uppercase last makes sure keys will never interact with default
|
||||
* prototypal values (such as `constructor`): nothing in the prototype of
|
||||
* `Object` is uppercase.
|
||||
*
|
||||
* @param {string} value
|
||||
* Identifier to normalize.
|
||||
* @returns {string}
|
||||
* Normalized identifier.
|
||||
*/
|
||||
export function normalizeIdentifier(value) {
|
||||
return (
|
||||
value
|
||||
// Collapse markdown whitespace.
|
||||
.replace(/[\t\n\r ]+/g, values.space)
|
||||
// Trim.
|
||||
.replace(/^ | $/g, '')
|
||||
// Some characters are considered “uppercase”, but if their lowercase
|
||||
// counterpart is uppercased will result in a different uppercase
|
||||
// character.
|
||||
// Hence, to get that form, we perform both lower- and uppercase.
|
||||
// Upper case makes sure keys will not interact with default prototypal
|
||||
// methods: no method is uppercase.
|
||||
.toLowerCase()
|
||||
.toUpperCase()
|
||||
)
|
||||
}
|
||||
Reference in New Issue
Block a user