@vuecast/astro-module 1.0.1 → 1.0.2

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/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # @vuecast/astro-module
2
2
 
3
- Write Vue Single File Components (`.vue` files) in your Astro projects.
3
+ Write Vue SFC Pages (`.vue` pages) in your Astro projects.
4
4
 
5
5
  ## Features
6
6
 
package/dist/index.d.mts CHANGED
@@ -1,8 +1,5 @@
1
1
  import { AstroIntegration } from 'astro';
2
2
 
3
- interface VuecastAstroPluginOptions {
4
- }
5
-
6
- declare function vuecastAstroIntegration(options: VuecastAstroPluginOptions): AstroIntegration;
3
+ declare function vuecastAstroIntegration(): AstroIntegration;
7
4
 
8
5
  export { vuecastAstroIntegration as VuecastAstro, vuecastAstroIntegration as default };
package/dist/index.d.ts CHANGED
@@ -1,8 +1,5 @@
1
1
  import { AstroIntegration } from 'astro';
2
2
 
3
- interface VuecastAstroPluginOptions {
4
- }
5
-
6
- declare function vuecastAstroIntegration(options: VuecastAstroPluginOptions): AstroIntegration;
3
+ declare function vuecastAstroIntegration(): AstroIntegration;
7
4
 
8
5
  export { vuecastAstroIntegration as VuecastAstro, vuecastAstroIntegration as default };
package/dist/index.mjs CHANGED
@@ -1,4 +1,4 @@
1
- function vuecastAstroIntegration(options) {
1
+ function vuecastAstroIntegration() {
2
2
  return {
3
3
  name: "@vuecast/astro",
4
4
  hooks: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vuecast/astro-module",
3
- "version": "1.0.1",
3
+ "version": "1.0.2",
4
4
  "type": "module",
5
5
  "description": "Astro integration for Vue SFC pages",
6
6
  "main": "./dist/index.mjs",