From 3658ca550af2573a7abb729591f3645ec8b48d54 Mon Sep 17 00:00:00 2001 From: Whymarrh Whitby Date: Mon, 17 Dec 2018 17:46:57 -0330 Subject: Remove outdated ui dev and ui mock docs --- docs/README.md | 2 -- docs/ui-dev-mode.md | 6 ------ docs/ui-mock-mode.md | 8 -------- 3 files changed, 16 deletions(-) delete mode 100644 docs/ui-dev-mode.md delete mode 100644 docs/ui-mock-mode.md (limited to 'docs') diff --git a/docs/README.md b/docs/README.md index fd26b0c20..c6e7dae6c 100644 --- a/docs/README.md +++ b/docs/README.md @@ -12,9 +12,7 @@ To learn how to develop MetaMask-compatible applications, visit our [Developer D - [How to add custom build to Chrome](./add-to-chrome.md) - [How to add custom build to Firefox](./add-to-firefox.md) -- [How to develop a live-reloading UI](./ui-dev-mode.md) - [Publishing Guide](./publishing.md) -- [How to develop an in-browser mocked UI](./ui-mock-mode.md) - [How to live reload on local dependency changes](./developing-on-deps.md) - [How to add new networks to the Provider Menu](./adding-new-networks.md) - [How to manage notices that appear when the app starts up](./notices.md) diff --git a/docs/ui-dev-mode.md b/docs/ui-dev-mode.md deleted file mode 100644 index df49d8b04..000000000 --- a/docs/ui-dev-mode.md +++ /dev/null @@ -1,6 +0,0 @@ -# Running UI Dev Mode - -You can run `npm run ui`, and your browser should open a live-reloading demo version of the plugin UI. - -Some actions will crash the app, so this is only for tuning aesthetics, but it allows live-reloading styles, which is a much faster feedback loop than reloading the full extension. - diff --git a/docs/ui-mock-mode.md b/docs/ui-mock-mode.md deleted file mode 100644 index bb54dc471..000000000 --- a/docs/ui-mock-mode.md +++ /dev/null @@ -1,8 +0,0 @@ -### Developing on UI with Mocked Background Process - -You can run `npm run mock` and your browser should open a live-reloading demo version of the plugin UI, just like the `npm run ui`, except that it tries to actually perform all normal operations. - -It does not yet connect to a real blockchain (this could be a good test feature later, connecting to a test blockchain), so only local operations work. - -You can reset the mock ui at any time with the `Reset` button at the top of the screen. - -- cgit