Skip to content

Commit

Permalink
maint/dist ~ update
Browse files Browse the repository at this point in the history
  • Loading branch information
rivy committed Jan 11, 2021
1 parent dc5656b commit f5c8354
Show file tree
Hide file tree
Showing 9 changed files with 74 additions and 7 deletions.
8 changes: 4 additions & 4 deletions dist/cjs/index.js

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

6 changes: 3 additions & 3 deletions dist/cjs/lib/OSPaths.js

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

3 changes: 3 additions & 0 deletions dist/cjs/platform-adapters/_base.js

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

2 changes: 2 additions & 0 deletions dist/cjs/platform-adapters/browser.js

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

39 changes: 39 additions & 0 deletions dist/cjs/platform-adapters/node.js

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

Binary file modified dist/os-paths.tgz
Binary file not shown.
21 changes: 21 additions & 0 deletions dist/types/platform-adapters/_base.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
export declare namespace Platform {
type Adapter = {
readonly env: {
readonly get: (_: string) => string | undefined;
};
readonly meta: {
readonly mainFilename: string;
};
readonly os: {
readonly homedir?: () => string;
readonly tmpdir?: () => string;
};
readonly path: {
readonly join: (..._: readonly string[]) => string;
readonly normalize: (_: string) => string;
};
readonly process: {
readonly platform: string;
};
};
}
Empty file.
2 changes: 2 additions & 0 deletions dist/types/platform-adapters/node.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
import { Platform } from './_base';
export declare const adapter: Platform.Adapter;

0 comments on commit f5c8354

Please sign in to comment.