@untestutils/next 0.5.0 → 0.5.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/dist/index.d.mts +1 -2
- package/dist/index.d.ts +1 -2
- package/dist/index.d.ts.map +1 -1
- package/dist/index.mjs +1 -2
- package/package.json +16 -16
package/dist/index.d.mts
CHANGED
|
@@ -1,5 +1,4 @@
|
|
|
1
|
-
import { type FrameworkBaseOptions } from "@untestutils/core";
|
|
2
|
-
import { type Recipe } from "@untestutils/core";
|
|
1
|
+
import { type FrameworkBaseOptions, type Recipe } from "@untestutils/core";
|
|
3
2
|
export type NextRun = "server" | "dev" | "static";
|
|
4
3
|
export interface NextOptions extends FrameworkBaseOptions {
|
|
5
4
|
run?: NextRun;
|
package/dist/index.d.ts
CHANGED
|
@@ -1,5 +1,4 @@
|
|
|
1
|
-
import { type FrameworkBaseOptions } from '@untestutils/core';
|
|
2
|
-
import { type Recipe } from '@untestutils/core';
|
|
1
|
+
import { type FrameworkBaseOptions, type Recipe } from '@untestutils/core';
|
|
3
2
|
export type NextRun = 'server' | 'dev' | 'static';
|
|
4
3
|
export interface NextOptions extends FrameworkBaseOptions {
|
|
5
4
|
run?: NextRun;
|
package/dist/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAEA,OAAO,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAEA,OAAO,EAQL,KAAK,oBAAoB,EACzB,KAAK,MAAM,EACZ,MAAM,mBAAmB,CAAC;AAE3B,MAAM,MAAM,OAAO,GAAG,QAAQ,GAAG,KAAK,GAAG,QAAQ,CAAC;AAElD,MAAM,WAAW,WAAY,SAAQ,oBAAoB;IACvD,GAAG,CAAC,EAAE,OAAO,CAAC;CACf;AAYD;;;;;GAKG;AACH,wBAAgB,IAAI,CAAC,IAAI,EAAE,WAAW,GAAG,MAAM,CAsF9C;AAED,eAAe,IAAI,CAAC"}
|
package/dist/index.mjs
CHANGED
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
import { existsSync } from "node:fs";
|
|
2
2
|
import { join, resolve } from "pathe";
|
|
3
|
-
import { assertAppRoot, cliFrameworkRecipe, frameworkRoots, resolveBin, staticDir } from "@untestutils/core";
|
|
4
|
-
import { defineRecipe, runCommand } from "@untestutils/core";
|
|
3
|
+
import { assertAppRoot, cliFrameworkRecipe, defineRecipe, frameworkRoots, resolveBin, runCommand, staticDir } from "@untestutils/core";
|
|
5
4
|
function resolveNextBin(root) {
|
|
6
5
|
return resolveBin({
|
|
7
6
|
label: "next",
|
package/package.json
CHANGED
|
@@ -1,11 +1,20 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@untestutils/next",
|
|
3
|
-
"version": "0.5.
|
|
3
|
+
"version": "0.5.2",
|
|
4
|
+
"homepage": "https://s00d.github.io/untestutils/",
|
|
5
|
+
"license": "MIT",
|
|
6
|
+
"repository": {
|
|
7
|
+
"type": "git",
|
|
8
|
+
"url": "git+https://github.com/s00d/untestutils.git",
|
|
9
|
+
"directory": "packages/next"
|
|
10
|
+
},
|
|
4
11
|
"files": [
|
|
5
12
|
"dist"
|
|
6
13
|
],
|
|
7
14
|
"type": "module",
|
|
8
15
|
"sideEffects": false,
|
|
16
|
+
"main": "./dist/index.mjs",
|
|
17
|
+
"types": "./dist/index.d.ts",
|
|
9
18
|
"exports": {
|
|
10
19
|
".": {
|
|
11
20
|
"types": "./dist/index.d.ts",
|
|
@@ -14,15 +23,18 @@
|
|
|
14
23
|
},
|
|
15
24
|
"./package.json": "./package.json"
|
|
16
25
|
},
|
|
26
|
+
"publishConfig": {
|
|
27
|
+
"access": "public"
|
|
28
|
+
},
|
|
17
29
|
"dependencies": {
|
|
18
30
|
"pathe": "^2.0.3",
|
|
19
|
-
"@untestutils/core": "0.5.
|
|
31
|
+
"@untestutils/core": "0.5.2"
|
|
20
32
|
},
|
|
21
33
|
"devDependencies": {
|
|
22
34
|
"@types/node": "^26.6.1",
|
|
35
|
+
"obuild": "^0.4.40",
|
|
23
36
|
"publint": "^0.3.24",
|
|
24
|
-
"typescript": "^6.0.3"
|
|
25
|
-
"obuild": "^0.4.40"
|
|
37
|
+
"typescript": "^6.0.3"
|
|
26
38
|
},
|
|
27
39
|
"peerDependencies": {
|
|
28
40
|
"next": "*",
|
|
@@ -43,18 +55,6 @@
|
|
|
43
55
|
"engines": {
|
|
44
56
|
"node": ">=20"
|
|
45
57
|
},
|
|
46
|
-
"license": "MIT",
|
|
47
|
-
"homepage": "https://s00d.github.io/untestutils/",
|
|
48
|
-
"repository": {
|
|
49
|
-
"type": "git",
|
|
50
|
-
"url": "git+https://github.com/s00d/untestutils.git",
|
|
51
|
-
"directory": "packages/next"
|
|
52
|
-
},
|
|
53
|
-
"main": "./dist/index.mjs",
|
|
54
|
-
"types": "./dist/index.d.ts",
|
|
55
|
-
"publishConfig": {
|
|
56
|
-
"access": "public"
|
|
57
|
-
},
|
|
58
58
|
"scripts": {
|
|
59
59
|
"build": "obuild && tsc -p tsconfig.build.json",
|
|
60
60
|
"publint": "publint --strict"
|