@editframe/vite-plugin 0.23.8-beta.0 → 0.25.0-beta.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.
@@ -0,0 +1,10 @@
1
+ import { defineConfig } from "tsdown";
2
+
3
+ import { createTsdownConfig } from "../tsdown.config.base.ts";
4
+
5
+ export default defineConfig(
6
+ createTsdownConfig({
7
+ platform: "node",
8
+ dts: false, // Using tsc instead due to vite type complexity
9
+ }),
10
+ );
@@ -1,2 +0,0 @@
1
- import { IncomingMessage } from 'connect';
2
- export declare const forbidRelativePaths: (req: IncomingMessage) => void;
package/dist/index.d.ts DELETED
@@ -1,9 +0,0 @@
1
- interface VitePluginEditframeOptions {
2
- root: string;
3
- cacheRoot: string;
4
- }
5
- export declare const vitePluginEditframe: (options: VitePluginEditframeOptions) => {
6
- name: string;
7
- configureServer(this: import('rolldown-vite').MinimalPluginContextWithoutEnvironment, server: import('rolldown-vite').ViteDevServer): void;
8
- };
9
- export {};
@@ -1,9 +0,0 @@
1
- interface VitePluginEditframeOptions {
2
- root: string;
3
- cacheRoot: string;
4
- }
5
- export declare const vitePluginEditframe: (options: VitePluginEditframeOptions) => {
6
- name: string;
7
- configureServer(this: import('vite').MinimalPluginContextWithoutEnvironment, server: import('vite').ViteDevServer): void;
8
- };
9
- export {};
@@ -1,3 +0,0 @@
1
- import { IncomingMessage, ServerResponse } from 'node:http';
2
- import { TaskResult } from '../../assets/src/index.ts';
3
- export declare const sendTaskResult: (req: IncomingMessage, res: ServerResponse<IncomingMessage>, taskResult: TaskResult) => ServerResponse<IncomingMessage> | undefined;