@vercel/cervel 0.0.9 → 0.0.10
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.d.mts +2 -1
- package/package.json +2 -2
package/dist/index.d.mts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/// <reference types="node" resolution-mode="require"/>
|
|
2
|
-
import {
|
|
2
|
+
import { ParseArgsConfig } from "util";
|
|
3
3
|
|
|
4
4
|
//#region src/find-entrypoint.d.ts
|
|
5
5
|
declare const findEntrypoint: (cwd: string, options?: {
|
|
@@ -7,6 +7,7 @@ declare const findEntrypoint: (cwd: string, options?: {
|
|
|
7
7
|
}) => Promise<string>;
|
|
8
8
|
//#endregion
|
|
9
9
|
//#region src/index.d.ts
|
|
10
|
+
type ParseArgsOptionsConfig = NonNullable<ParseArgsConfig['options']>;
|
|
10
11
|
declare const getBuildSummary: (outputDir: string) => Promise<any>;
|
|
11
12
|
declare const build: (args: {
|
|
12
13
|
entrypoint?: string;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vercel/cervel",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.10",
|
|
4
4
|
"license": "Apache-2.0",
|
|
5
5
|
"homepage": "https://vercel.com/docs",
|
|
6
6
|
"publishConfig": {
|
|
@@ -37,7 +37,7 @@
|
|
|
37
37
|
"typescript": "^4.0.0 || ^5.0.0"
|
|
38
38
|
},
|
|
39
39
|
"devDependencies": {
|
|
40
|
-
"@types/node": "
|
|
40
|
+
"@types/node": "20.11.0",
|
|
41
41
|
"typescript": "4.9.5",
|
|
42
42
|
"tsdown": "0.16.3",
|
|
43
43
|
"vitest": "^2.0.1"
|