@cedgetec-utils/astro-components 1.3.0 → 1.4.0

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/package.json CHANGED
@@ -1,9 +1,10 @@
1
1
  {
2
2
  "name": "@cedgetec-utils/astro-components",
3
- "version": "1.3.0",
3
+ "version": "1.4.0",
4
4
  "type": "module",
5
5
  "exports": {
6
- ".": "./index.ts"
6
+ ".": "./src/components/index.ts",
7
+ "./libs": "./src/libs/index.ts"
7
8
  },
8
9
  "files": [
9
10
  "src",
@@ -0,0 +1,7 @@
1
+ // Do not write code directly here, instead use the `src` folder!
2
+ // Then, use this file to export everything you want your user to access.
3
+
4
+ export { default as DirectusImage } from "./DirectusImage.astro";
5
+ export type { DirectusImageData } from "./DirectusImage.astro";
6
+ export { default as Head } from "./Head.astro";
7
+ export { default as Matomo } from "./Matomo.astro";
@@ -0,0 +1,4 @@
1
+ // Do not write code directly here, instead use the `src` folder!
2
+ // Then, use this file to export everything you want your user to access.
3
+
4
+ export { Directus } from "./directus"
package/index.ts DELETED
@@ -1,7 +0,0 @@
1
- // Do not write code directly here, instead use the `src` folder!
2
- // Then, use this file to export everything you want your user to access.
3
-
4
- export { default as DirectusImage } from "./src/DirectusImage.astro";
5
- export type { DirectusImageData } from "./src/DirectusImage.astro";
6
- export { default as Head } from "./src/Head.astro";
7
- export { default as Matomo } from "./src/Matomo.astro";
File without changes
File without changes
File without changes