Skip to content

Commit

Permalink
remove rlp
Browse files Browse the repository at this point in the history
  • Loading branch information
Denis2626 authored and rileystephens28 committed Apr 16, 2024
1 parent f699600 commit a4e6880
Show file tree
Hide file tree
Showing 763 changed files with 46,259 additions and 118 deletions.
16 changes: 16 additions & 0 deletions lib.commonjs/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
CommonJS Files
==============

The contents of this folder are for using `require` in CommonJS
projects.


Notes
-----

The contents are generated via the `npm run build-commonjs` target
using `tsc` and the `/tsconfig.commonjs.json` configuration.

Do not modify the files in this folder. They are deleted on `build-clean`.

To modify this `README.md`, see the `/output/post-build/lib.commonjs`.
12 changes: 12 additions & 0 deletions lib.commonjs/package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
{
"browser": {
"./crypto/crypto.js": "./crypto/crypto-browser.js",
"./providers/provider-ipcsocket.js": "./providers/provider-ipcsocket-browser.js",
"./providers/ws.js": "./providers/ws-browser.js",
"./utils/base64.js": "./utils/base64-browser.js",
"./utils/geturl.js": "./utils/geturl-browser.js",
"./wordlists/wordlists.js": "./wordlists/wordlists-browser.js"
},
"sideEffects": false,
"type": "commonjs"
}
16 changes: 16 additions & 0 deletions lib.esm/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
ESM Files
=========

The contents of this folder are for using `import` in ESM
projects.


Notes
-----

The contents are generated via the `npm run build` target
using `tsc` and the `/tsconfig.esm.json` configuration.

Do not modify the files in this folder. They are deleted on `build-clean`.

To modify this `README.md`, see the `/output/post-build/lib.esm`.
2 changes: 2 additions & 0 deletions lib.esm/_admin/create-release.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
export {};
//# sourceMappingURL=create-release.d.ts.map
1 change: 1 addition & 0 deletions lib.esm/_admin/create-release.d.ts.map

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

38 changes: 38 additions & 0 deletions lib.esm/_admin/create-release.js

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

1 change: 1 addition & 0 deletions lib.esm/_admin/create-release.js.map

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

2 changes: 2 additions & 0 deletions lib.esm/_admin/generate-diffs.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
export {};
//# sourceMappingURL=generate-diffs.d.ts.map
1 change: 1 addition & 0 deletions lib.esm/_admin/generate-diffs.d.ts.map

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

25 changes: 25 additions & 0 deletions lib.esm/_admin/generate-diffs.js

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

1 change: 1 addition & 0 deletions lib.esm/_admin/generate-diffs.js.map

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

32 changes: 32 additions & 0 deletions lib.esm/_admin/test-browser.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
/**
*
*
* Paths
* /index.js => dist/quais.js
* /tests/utils.js => in-memory hijack
* /static/* => output/*
* - index.html
* - assert.js
* /tests/* => lib.esm/_tests/*
*/
/// <reference types="node" />
import { WebSocket } from "ws";
import { Server } from "http";
export declare function getMime(filename: string): string;
export declare class CDPSession {
#private;
readonly websocket: WebSocket;
constructor(url: string);
get target(): string;
get ready(): Promise<void>;
get done(): Promise<number>;
send(method: string, params: any): Promise<any>;
_send(method: string, params: any): Promise<any>;
navigate(url: string): Promise<void>;
}
export type Options = {
port?: number;
redirects?: Record<string, string>;
};
export declare function start(_root: string, options: Options): Promise<Server>;
//# sourceMappingURL=test-browser.d.ts.map
1 change: 1 addition & 0 deletions lib.esm/_admin/test-browser.d.ts.map

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

Loading

0 comments on commit a4e6880

Please sign in to comment.