Skip to content

Commit

Permalink
0.0.5
Browse files Browse the repository at this point in the history
  • Loading branch information
suchipi committed Sep 5, 2022
1 parent da0529c commit 57245c1
Show file tree
Hide file tree
Showing 9 changed files with 8 additions and 8 deletions.
Binary file modified bin/darwin-arm/yavascript
Binary file not shown.
Binary file modified bin/darwin/yavascript
Binary file not shown.
Binary file modified bin/linux/yavascript
Binary file not shown.
Binary file modified bin/windows/yavascript.exe
Binary file not shown.
2 changes: 1 addition & 1 deletion npm/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "yavascript",
"version": "0.0.4",
"version": "0.0.5",
"main": "lib/index.js",
"bin": "lib/cli.js",
"types": "yavascript.d.ts",
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "yavascript",
"version": "0.0.4",
"version": "0.0.5",
"main": "dist/index.js",
"author": "Lily Scott <me@suchipi.com>",
"license": "MIT",
Expand Down
2 changes: 1 addition & 1 deletion scripts/set-package-version.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/usr/bin/env yavascript
/// <reference path="../dist/yavascript.d.ts" />
/// <reference path="../yavascript.d.ts" />
import "./lib/set-rootdir.js";

const currentVersion = JSON.parse(readFile("./package.json")).version;
Expand Down
6 changes: 3 additions & 3 deletions yavascript.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -383,7 +383,7 @@ declare function ensureDir(path: string): string;
/**
* Options for {@link copy}.
*/
export type CopyOptions = {
declare type CopyOptions = {
/**
* What to do when attempting to copy something into a location where
* something else already exists.
Expand Down Expand Up @@ -411,7 +411,7 @@ export type CopyOptions = {
*
* Provides the same functionality as the command `cp -R`.
*/
export function copy(from: string, to: string, options?: CopyOptions): void;
declare function copy(from: string, to: string, options?: CopyOptions): void;

// ------------
// --- glob ---
Expand All @@ -420,7 +420,7 @@ export function copy(from: string, to: string, options?: CopyOptions): void;
/**
* Options for {@link glob}.
*/
export type GlobOptions = {
declare type GlobOptions = {
/**
* Whether to treat symlinks to directories as if they themselves were
* directories, traversing into them.
Expand Down

0 comments on commit 57245c1

Please sign in to comment.