Skip to content
This repository has been archived by the owner on Aug 1, 2022. It is now read-only.

Commit

Permalink
Remove luxon dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
alexjg committed May 13, 2021
1 parent 4464fdf commit cc282fc
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 11 deletions.
1 change: 0 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,6 @@
"crypto-browserify": "^3.12.0",
"ethers": "^5.1.4",
"execa": "^5.0.0",
"luxon": "^1.26.0",
"marked": "^2.0.3",
"mnemonist": "^0.38.3",
"pure-svg-code": "^1.0.6",
Expand Down
3 changes: 1 addition & 2 deletions ui/Screen/NetworkDiagnostics/WaitingRoom.svelte
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
<script lang="typescript">
import { DateTime } from "luxon";
import { onDestroy } from "svelte";
import JSONTree from "svelte-json-tree";
Expand Down Expand Up @@ -59,7 +58,7 @@
<td>
<JSONTree value={transition.event} />
</td>
<td>{DateTime.fromMillis(transition.timestamp).toISOTime()}</td>
<td>{new Date(transition.timestamp).toISOString()}</td>
<td>
<StateTable state={transition.state_before} />
</td>
Expand Down
8 changes: 0 additions & 8 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -8806,13 +8806,6 @@ __metadata:
languageName: node
linkType: hard

"luxon@npm:^1.26.0":
version: 1.26.0
resolution: "luxon@npm:1.26.0"
checksum: e12bb8bfdd69707f0f3e57b1b2ff39042c67904bdc437602064519f3eb87d3267497bc56cc0b7611faa40e22019991440a8e8e179d4c6a0440e9f226571fce46
languageName: node
linkType: hard

"make-dir@npm:^3.0.0":
version: 3.1.0
resolution: "make-dir@npm:3.1.0"
Expand Down Expand Up @@ -10524,7 +10517,6 @@ __metadata:
jest: ^26.6.3
lint-staged: ^10.5.4
lodash: ^4.17.21
luxon: ^1.26.0
marked: ^2.0.3
mnemonist: ^0.38.3
multibase: ^4.0.4
Expand Down

0 comments on commit cc282fc

Please sign in to comment.