Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Restoring some order and ownership #23

Closed
wants to merge 16 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,5 +18,9 @@ module.exports = {
'singleline': 'never',
'multiline': 'always'
}]
}
},
"parserOptions": {
"ecmaVersion": "latest",
"sourceType": "module",
},
}
17 changes: 9 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,10 @@ Debug your Livewire component state from within your browser.

### Installation

This extension does not yet have a stable version publicly available.
You can download the [pre-release](https://github.com/beyondcode/livewire-devtools/releases) version and manually install it.
- For Chromium-based browsers (Chrome, Edge, Chromium etc.): https://chrome.google.com/webstore/detail/livewire-devtools/dnociedgpnpfnbkafoiilldfhpcjmikd
- For Firefox: https://addons.mozilla.org/ru/firefox/addon/livewire-devtools/


### Manual Installation
### Manual Installation (Chrome)

1. Clone this repo
2. `npm install` (Or `yarn install` if you are using yarn as the package manager)
Expand All @@ -24,9 +23,9 @@ You can download the [pre-release](https://github.com/beyondcode/livewire-devtoo
1. Clone this repo
2. `npm install`
3. `npm run dev`
4. A plain shell with a test app will be available at `localhost:8080`.
4. A plain shell with a test app will be available at `localhost:8100`.

### Testing as Firefox addon
### Manual Installation (Firefox)

1. Install `web-ext`

Expand All @@ -49,11 +48,13 @@ You can download the [pre-release](https://github.com/beyondcode/livewire-devtoo
2. Build and run in Firefox

~~~~
$ npm run build
$ npm run run:firefox
$ npm run build:ff
$ npm run zip:ff
~~~~

When using Yarn, just replace `npm` with `yarn`.

3. Open "about:addons" in Firefox browser, then click "Install from file" and select built zip-folder.


### License
Expand Down
Loading