Skip to content

Commit

Permalink
use rwp exports from webrecorder/replayweb.page#336
Browse files Browse the repository at this point in the history
  • Loading branch information
emma-sg committed Jun 18, 2024
1 parent 13afdb1 commit 9d09bc5
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 13 deletions.
2 changes: 1 addition & 1 deletion src/electron/rec-window.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import {
css,
wrapCss,
clickOnSpacebarPress,
} from "replaywebpage/src/misc";
} from "replaywebpage/misc";

import fasRefresh from "@fortawesome/fontawesome-free/svgs/solid/redo-alt.svg";
//import fasFullscreen from '@fortawesome/fontawesome-free/svgs/solid/desktop.svg';
Expand Down
2 changes: 1 addition & 1 deletion src/ui/app.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { html, css, wrapCss, IS_APP, apiPrefix } from "replaywebpage/src/misc";
import { html, css, wrapCss, IS_APP, apiPrefix } from "replaywebpage/misc";

// replaywebpage imports
import { ReplayWebApp, Embed, Loader } from "replaywebpage";
Expand Down
2 changes: 1 addition & 1 deletion src/ui/coll-index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { ItemIndex } from "replaywebpage";
import type { PropertyValues } from "lit";
import { property } from "lit/decorators.js";

import { html } from "replaywebpage/src/misc";
import { html } from "replaywebpage/misc";

import prettyBytes from "pretty-bytes";
import { type WrRecCollInfo } from "./coll-info";
Expand Down
2 changes: 1 addition & 1 deletion src/ui/coll-info.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { html, css, wrapCss, apiPrefix } from "replaywebpage/src/misc";
import { html, css, wrapCss, apiPrefix } from "replaywebpage/misc";

import prettyBytes from "pretty-bytes";

Expand Down
2 changes: 1 addition & 1 deletion src/ui/coll.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import {
wrapCss,
clickOnSpacebarPress,
apiPrefix,
} from "replaywebpage/src/misc";
} from "replaywebpage/misc";

import fasDownload from "@fortawesome/fontawesome-free/svgs/solid/download.svg";

Expand Down
8 changes: 1 addition & 7 deletions src/ui/upload.ts
Original file line number Diff line number Diff line change
@@ -1,10 +1,4 @@
import {
html,
css,
wrapCss,
apiPrefix,
LitElement,
} from "replaywebpage/src/misc";
import { html, css, wrapCss, apiPrefix, LitElement } from "replaywebpage/misc";
import prettyBytes from "pretty-bytes";

import fasSync from "@fortawesome/fontawesome-free/svgs/solid/sync-alt.svg";
Expand Down
2 changes: 1 addition & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"outDir": "./dist/",
"module": "esnext",
"target": "es6",
"moduleResolution": "node",
"moduleResolution": "Bundler",
"allowJs": true,
"strict": true,
"checkJs": true,
Expand Down

0 comments on commit 9d09bc5

Please sign in to comment.