@batijs/cli 0.0.180 → 0.0.181
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.js
CHANGED
|
@@ -183,7 +183,7 @@ Please report this issue to https://github.com/batijs/bati`
|
|
|
183
183
|
|
|
184
184
|
// index.ts
|
|
185
185
|
import { withIcon } from "@batijs/core";
|
|
186
|
-
import {
|
|
186
|
+
import { cliFlags, features } from "@batijs/features";
|
|
187
187
|
import { execRules } from "@batijs/features/rules";
|
|
188
188
|
|
|
189
189
|
// ../../node_modules/.pnpm/citty@0.1.6/node_modules/citty/dist/index.mjs
|
|
@@ -1537,7 +1537,7 @@ var createDefaultQueryTester = function(query, options) {
|
|
|
1537
1537
|
// package.json
|
|
1538
1538
|
var package_default = {
|
|
1539
1539
|
name: "@batijs/cli",
|
|
1540
|
-
version: "0.0.
|
|
1540
|
+
version: "0.0.181",
|
|
1541
1541
|
type: "module",
|
|
1542
1542
|
scripts: {
|
|
1543
1543
|
"check-types": "tsc --noEmit",
|
|
@@ -1779,7 +1779,7 @@ async function run() {
|
|
|
1779
1779
|
version: package_default.version,
|
|
1780
1780
|
description: package_default.description
|
|
1781
1781
|
},
|
|
1782
|
-
args: Object.assign({}, defaultDef, ...
|
|
1782
|
+
args: Object.assign({}, defaultDef, ...cliFlags.map((k) => toArg(k, findDescription(k)))),
|
|
1783
1783
|
async run({ args }) {
|
|
1784
1784
|
await checkArguments(args);
|
|
1785
1785
|
const sources = [];
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@batijs/cli",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.181",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"keywords": [],
|
|
6
6
|
"description": "Next-gen scaffolder. Get started with fully-functional apps, and choose any tool you want",
|
|
@@ -19,12 +19,12 @@
|
|
|
19
19
|
"tsup": "^8.0.2",
|
|
20
20
|
"typescript": "^5.4.5",
|
|
21
21
|
"vite": "^5.2.10",
|
|
22
|
-
"@batijs/
|
|
23
|
-
"@batijs/
|
|
22
|
+
"@batijs/compile": "0.0.181",
|
|
23
|
+
"@batijs/build": "0.0.181"
|
|
24
24
|
},
|
|
25
25
|
"dependencies": {
|
|
26
|
-
"@batijs/
|
|
27
|
-
"@batijs/
|
|
26
|
+
"@batijs/core": "0.0.181",
|
|
27
|
+
"@batijs/features": "0.0.181"
|
|
28
28
|
},
|
|
29
29
|
"bin": "./dist/index.js",
|
|
30
30
|
"exports": {
|