@junobuild/cli-tools 0.1.1 → 0.1.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.
@@ -0,0 +1,11 @@
1
+ import { SpawnOptions } from 'child_process';
2
+ /**
3
+ * This code is adapted from `nano-spawn`.
4
+ * Source: https://github.com/sindresorhus/nano-spawn
5
+ *
6
+ * It includes logic to ensure proper command execution across platforms,
7
+ * particularly handling shell requirements on Windows.
8
+ *
9
+ * If updating, consider checking for upstream changes in `nano-spawn`.
10
+ */
11
+ export declare const applyForceShell: <Options extends SpawnOptions>(file: string, commandArguments: readonly string[], options: Options) => Promise<[string, readonly string[], Options]>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@junobuild/cli-tools",
3
- "version": "0.1.1",
3
+ "version": "0.1.2",
4
4
  "description": "A collection of tools for Juno CLIs and Plugins.",
5
5
  "author": "David Dal Busco (https://daviddalbusco.com)",
6
6
  "license": "MIT",
@@ -57,7 +57,7 @@
57
57
  "@junobuild/config": "*"
58
58
  },
59
59
  "dependencies": {
60
- "file-type": "^20.0.0",
60
+ "file-type": "^20.1.0",
61
61
  "listr": "^0.14.3",
62
62
  "mime-types": "^2.1.35",
63
63
  "minimatch": "^10.0.1"