yavascript 0.0.4 → 0.0.5
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/bin/darwin/yavascript
CHANGED
|
Binary file
|
|
Binary file
|
package/bin/linux/yavascript
CHANGED
|
Binary file
|
|
Binary file
|
package/package.json
CHANGED
package/yavascript.d.ts
CHANGED
|
@@ -378,7 +378,7 @@ declare function ensureDir(path: string): string;
|
|
|
378
378
|
/**
|
|
379
379
|
* Options for {@link copy}.
|
|
380
380
|
*/
|
|
381
|
-
|
|
381
|
+
declare type CopyOptions = {
|
|
382
382
|
/**
|
|
383
383
|
* What to do when attempting to copy something into a location where
|
|
384
384
|
* something else already exists.
|
|
@@ -406,7 +406,7 @@ export type CopyOptions = {
|
|
|
406
406
|
*
|
|
407
407
|
* Provides the same functionality as the command `cp -R`.
|
|
408
408
|
*/
|
|
409
|
-
|
|
409
|
+
declare function copy(from: string, to: string, options?: CopyOptions): void;
|
|
410
410
|
|
|
411
411
|
// ------------
|
|
412
412
|
// --- glob ---
|
|
@@ -415,7 +415,7 @@ export function copy(from: string, to: string, options?: CopyOptions): void;
|
|
|
415
415
|
/**
|
|
416
416
|
* Options for {@link glob}.
|
|
417
417
|
*/
|
|
418
|
-
|
|
418
|
+
declare type GlobOptions = {
|
|
419
419
|
/**
|
|
420
420
|
* Whether to treat symlinks to directories as if they themselves were
|
|
421
421
|
* directories, traversing into them.
|