Skip to content
This repository has been archived by the owner on Nov 26, 2024. It is now read-only.

Commit

Permalink
giMerge branch 'develop'
Browse files Browse the repository at this point in the history
  • Loading branch information
guillemcordoba committed Dec 9, 2021
2 parents b5eb9e7 + 944648f commit febc1fe
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ To reset the launcher, you can execute a factory reset in the `Holochain Admin`

### Logs

Logs can be found at `$DATA_DIR/holochain/logs/launcher.log`. When reporting issues, please attach the contents of this file.
Logs can be found at `$DATA_DIR/holochain-launcher/launcher.log`. When reporting issues, please attach the contents of this file.

## Developer Setup

Expand Down
14 changes: 14 additions & 0 deletions package-lock.json

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

1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@
"@material/mwc-textfield": "^0.25.1",
"@msgpack/msgpack": "^2.7.1",
"@tauri-apps/api": "1.0.0-beta.8",
"array-flat-polyfill": "^1.0.1",
"blob-polyfill": "^5.0.20210201",
"core-js": "^3.6.5",
"js-base64": "^3.7.2",
Expand Down
3 changes: 2 additions & 1 deletion src/main.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
import "array-flat-polyfill";
import "blob-polyfill";
import { createApp } from "vue";
import "@material/mwc-textfield";
import "@material/mwc-textarea";
Expand All @@ -9,7 +11,6 @@ import "@material/mwc-snackbar";
import { AdminWebsocket, AppWebsocket } from "@holochain/conductor-api";
import HcAdminPlugin from "@holochain/admin-ui";
import { invoke } from "@tauri-apps/api/tauri";
import "blob-polyfill";

import App from "./App.vue";
import createStore from "./store";
Expand Down

0 comments on commit febc1fe

Please sign in to comment.