summaryrefslogtreecommitdiff
path: root/packages/astro-parser/src/parse/utils/features.ts
diff options
context:
space:
mode:
authorGravatar Matthew Phillips <matthew@matthewphillips.info> 2021-07-01 08:42:07 -0400
committerGravatar GitHub <noreply@github.com> 2021-07-01 08:42:07 -0400
commit6a660f1b08430fe6e8f0e0939220511827cb0bc0 (patch)
tree7955f2046acf6614a2763bda5bdb8a2ff9cbb5b2 /packages/astro-parser/src/parse/utils/features.ts
parent81ea010906ef81eee0ab84d7bdeff96644744113 (diff)
downloadastro-6a660f1b08430fe6e8f0e0939220511827cb0bc0.tar.gz
astro-6a660f1b08430fe6e8f0e0939220511827cb0bc0.tar.zst
astro-6a660f1b08430fe6e8f0e0939220511827cb0bc0.zip
Implements low-level custom element support (#587)
* Implements low-level custom element support * Changes based on self review * Adds a changeset * Polyfills are added even when not hydrating * Remove hydrationMethod option Punting on this idea until it's really needed.
Diffstat (limited to 'packages/astro-parser/src/parse/utils/features.ts')
-rw-r--r--packages/astro-parser/src/parse/utils/features.ts2
1 files changed, 2 insertions, 0 deletions
diff --git a/packages/astro-parser/src/parse/utils/features.ts b/packages/astro-parser/src/parse/utils/features.ts
new file mode 100644
index 000000000..629e436d2
--- /dev/null
+++ b/packages/astro-parser/src/parse/utils/features.ts
@@ -0,0 +1,2 @@
+
+export const FEATURE_CUSTOM_ELEMENT = 1 << 0; \ No newline at end of file