astro-tractstack 2.0.0-rc.17 → 2.0.0-rc.18

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.js CHANGED
@@ -29,6 +29,10 @@ async function w(t, e, c) {
29
29
  src: t("../templates/env.example"),
30
30
  dest: "env.example"
31
31
  },
32
+ {
33
+ src: t("../.prettierignore"),
34
+ dest: ".prettierignore"
35
+ },
32
36
  {
33
37
  src: t("../templates/.gitignore"),
34
38
  dest: ".gitignore"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "astro-tractstack",
3
- "version": "2.0.0-rc.17",
3
+ "version": "2.0.0-rc.18",
4
4
  "description": "Astro integration for TractStack - redeeming the web from boring experiences",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -209,7 +209,7 @@ for (const [key, value] of Astro.url.searchParams) {
209
209
  <div class="pointer-events-auto">
210
210
  <SettingsPanel
211
211
  config={brandConfig}
212
- availableCodeHooks={['featured-content', 'list-content', 'bunny-video']}
212
+ availableCodeHooks={Object.keys(codeHookComponents)}
213
213
  client:only="react"
214
214
  />
215
215
  </div>
@@ -200,7 +200,7 @@ for (const [key, value] of Astro.url.searchParams) {
200
200
  <div class="pointer-events-auto">
201
201
  <SettingsPanel
202
202
  config={brandConfig}
203
- availableCodeHooks={['featured-content', 'list-content', 'bunny-video']}
203
+ availableCodeHooks={Object.keys(codeHookComponents)}
204
204
  client:only="react"
205
205
  />
206
206
  </div>
@@ -28,6 +28,10 @@ export async function injectTemplateFiles(
28
28
  src: resolve('../templates/env.example'),
29
29
  dest: 'env.example',
30
30
  },
31
+ {
32
+ src: resolve('../.prettierignore'),
33
+ dest: '.prettierignore',
34
+ },
31
35
  {
32
36
  src: resolve('../templates/.gitignore'),
33
37
  dest: '.gitignore',