@valbuild/cli 0.52.0 → 0.54.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,7 +1,7 @@
1
1
  {
2
2
  "name": "@valbuild/cli",
3
3
  "private": false,
4
- "version": "0.52.0",
4
+ "version": "0.54.0",
5
5
  "description": "Val CLI tools",
6
6
  "bin": {
7
7
  "val": "./bin.js"
@@ -18,8 +18,8 @@
18
18
  "typecheck": "tsc --noEmit"
19
19
  },
20
20
  "dependencies": {
21
- "@valbuild/server": "~0.52.0",
22
- "@valbuild/eslint-plugin": "~0.52.0",
21
+ "@valbuild/server": "~0.54.0",
22
+ "@valbuild/eslint-plugin": "~0.54.0",
23
23
  "eslint": "^8.31.0",
24
24
  "@inquirer/confirm": "^2.0.15",
25
25
  "@inquirer/prompts": "^3.0.2",
@@ -1,20 +0,0 @@
1
- // this will probably change
2
- const fileContent = `
3
- import { createRequestListener } from "@valbuild/server";
4
- import { NextApiHandler } from "next";
5
-
6
- const handler: NextApiHandler = createRequestListener("/api/val", {
7
- valConfigPath: "./val.config",
8
- mode: "proxy",
9
- });
10
-
11
- export default handler;
12
-
13
- export const config = {
14
- api: {
15
- bodyParser: false,
16
- externalResolver: true,
17
- },
18
- };
19
- `;
20
- export default fileContent;