@batijs/cli 0.0.637 → 0.0.639
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/{asset-package.json-DpOKYCFR.js → asset-package.json-O5c9ENBK.js} +2 -2
- package/dist/boilerplates/@batijs/aws/files/$package.json.js +1 -1
- package/dist/boilerplates/@batijs/aws/files/asset-package.json.mjs +2 -2
- package/dist/boilerplates/@batijs/shared/files/vite.config.ts +0 -2
- package/dist/index.js +2 -2
- package/package.json +5 -5
|
@@ -24,12 +24,12 @@ var package_default = {
|
|
|
24
24
|
"cdk": "^2.1125.0",
|
|
25
25
|
"constructs": "^10.6.0",
|
|
26
26
|
"esbuild": "^0.28.0",
|
|
27
|
-
"npm-run-all2": "^
|
|
27
|
+
"npm-run-all2": "^9.0.1",
|
|
28
28
|
"source-map-support": "^0.5.21",
|
|
29
29
|
"tsx": "^4.22.4",
|
|
30
30
|
"typescript": "^6.0.3",
|
|
31
31
|
"vitest": "^4.1.8",
|
|
32
|
-
"which": "^
|
|
32
|
+
"which": "^7.0.0"
|
|
33
33
|
},
|
|
34
34
|
files: ["dist/"],
|
|
35
35
|
exports: {
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
import { loadPackageJson } from "@batijs/core";
|
|
4
4
|
//#region ../../boilerplates/aws/dist/files/$package.json.mjs
|
|
5
5
|
async function getPackageJson(props) {
|
|
6
|
-
return (await loadPackageJson(props, await import("../../../../asset-package.json-
|
|
6
|
+
return (await loadPackageJson(props, await import("../../../../asset-package.json-O5c9ENBK.js").then((x) => x.default))).setScript("test", {
|
|
7
7
|
value: "vitest",
|
|
8
8
|
precedence: 0
|
|
9
9
|
}).setScript("deploy:cdk-deploy-all", {
|
|
@@ -22,12 +22,12 @@ var package_default = {
|
|
|
22
22
|
"cdk": "^2.1125.0",
|
|
23
23
|
"constructs": "^10.6.0",
|
|
24
24
|
"esbuild": "^0.28.0",
|
|
25
|
-
"npm-run-all2": "^
|
|
25
|
+
"npm-run-all2": "^9.0.1",
|
|
26
26
|
"source-map-support": "^0.5.21",
|
|
27
27
|
"tsx": "^4.22.4",
|
|
28
28
|
"typescript": "^6.0.3",
|
|
29
29
|
"vitest": "^4.1.8",
|
|
30
|
-
"which": "^
|
|
30
|
+
"which": "^7.0.0"
|
|
31
31
|
},
|
|
32
32
|
files: ["dist/"],
|
|
33
33
|
exports: {
|
package/dist/index.js
CHANGED
|
@@ -2637,7 +2637,7 @@ function kebabCase(str, joiner) {
|
|
|
2637
2637
|
//#endregion
|
|
2638
2638
|
//#region package.json
|
|
2639
2639
|
var name = "@batijs/cli";
|
|
2640
|
-
var version = "0.0.
|
|
2640
|
+
var version = "0.0.639";
|
|
2641
2641
|
var description = "Next-gen scaffolder. Get started with fully-functional apps, and choose any tool you want";
|
|
2642
2642
|
//#endregion
|
|
2643
2643
|
//#region rules.ts
|
|
@@ -2724,7 +2724,7 @@ async function generateKnipConfig(dist, boilerplates) {
|
|
|
2724
2724
|
if (scriptsValues.some((s) => s.includes("cross-env "))) aggregated.ignoreDependencies.push("cross-env");
|
|
2725
2725
|
} catch {}
|
|
2726
2726
|
await writeFile(join(dist, "knip.json"), JSON.stringify({
|
|
2727
|
-
$schema: "https://unpkg.com/knip@
|
|
2727
|
+
$schema: "https://unpkg.com/knip@6/schema.json",
|
|
2728
2728
|
entry: aggregated.entry,
|
|
2729
2729
|
ignore: aggregated.ignore,
|
|
2730
2730
|
ignoreDependencies: aggregated.ignoreDependencies,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@batijs/cli",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.639",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"check-types": "tsc --noEmit",
|
|
@@ -13,8 +13,8 @@
|
|
|
13
13
|
"repository": "https://github.com/vikejs/bati",
|
|
14
14
|
"license": "MIT",
|
|
15
15
|
"devDependencies": {
|
|
16
|
-
"@batijs/build": "0.0.
|
|
17
|
-
"@batijs/compile": "0.0.
|
|
16
|
+
"@batijs/build": "0.0.639",
|
|
17
|
+
"@batijs/compile": "0.0.639",
|
|
18
18
|
"@inquirer/prompts": "^8.5.2",
|
|
19
19
|
"@types/node": "^20.19.37",
|
|
20
20
|
"@types/which": "^3.0.4",
|
|
@@ -30,8 +30,8 @@
|
|
|
30
30
|
"vite": "^8.0.16"
|
|
31
31
|
},
|
|
32
32
|
"dependencies": {
|
|
33
|
-
"@batijs/core": "0.0.
|
|
34
|
-
"@batijs/features": "0.0.
|
|
33
|
+
"@batijs/core": "0.0.639",
|
|
34
|
+
"@batijs/features": "0.0.639"
|
|
35
35
|
},
|
|
36
36
|
"bin": "./cli.js",
|
|
37
37
|
"exports": {
|