@quilted/rollup 0.2.20 → 0.2.21

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.
@@ -1,48 +0,0 @@
1
- import type {OutputOptions} from 'rollup';
2
-
3
- import type {RollupNodePluginOptions} from './rollup.ts';
4
-
5
- export interface ServerRuntime {
6
- /**
7
- * A string that will be inlined directly as code to reference a runtime constant
8
- * that contains environment variables.
9
- */
10
- env?: string;
11
-
12
- /**
13
- * Overrides to the output options for this server.
14
- */
15
- output?: Pick<RollupNodePluginOptions, 'bundle'> & {
16
- /**
17
- * What module format to use for the server output.
18
- *
19
- * @default 'module'
20
- */
21
- format?:
22
- | 'module'
23
- | 'modules'
24
- | 'esmodules'
25
- | 'esm'
26
- | 'es'
27
- | 'commonjs'
28
- | 'cjs';
29
-
30
- /**
31
- * The directory to output the server to.
32
- */
33
- directory?: string;
34
-
35
- /**
36
- * Overrides to the Rollup output options.
37
- */
38
- options?: OutputOptions;
39
- };
40
-
41
- /**
42
- * The content to use as the entry point when the server uses the `request-router`
43
- * format for their server. This file should import the request router instance for
44
- * this app from 'quilt:module/request-router', and create a server that is appropriate
45
- * for this runtime.
46
- */
47
- requestRouter?(): string;
48
- }