Skip to content

Commit

Permalink
feat: new devtools for VueJS 3 (#183)
Browse files Browse the repository at this point in the history
* feat(feature): new devtools for VueJS 3

* feat(fix): fixes devtools name
  • Loading branch information
barisbora committed Apr 18, 2021
1 parent 19fd4dd commit 31bf863
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ import installExtension, {
EMBER_INSPECTOR, REACT_DEVELOPER_TOOLS,
BACKBONE_DEBUGGER, JQUERY_DEBUGGER,
ANGULARJS_BATARANG, VUEJS_DEVTOOLS,
REDUX_DEVTOOLS,
VUEJS3_DEVTOOLS, REDUX_DEVTOOLS,
CYCLEJS_DEVTOOL, MOBX_DEVTOOLS,
APOLLO_DEVELOPER_TOOLS,
} from 'electron-devtools-installer';
Expand Down
4 changes: 4 additions & 0 deletions src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -165,6 +165,10 @@ export const VUEJS_DEVTOOLS: ExtensionReference = {
id: 'nhdogjmejiglipccpnnnanhbledajbpd',
electron: '>=1.2.1',
};
export const VUEJS3_DEVTOOLS: ExtensionReference = {
id: 'ljjemllljcmogpfapbkkighbhhppjdbg',
electron: '>=1.2.1',
};
export const REDUX_DEVTOOLS: ExtensionReference = {
id: 'lmhkpmbekcpmknklioeibfkpmmfibljd',
electron: '>=1.2.1',
Expand Down
5 changes: 5 additions & 0 deletions test/testdata/knownExtensions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ import {
JQUERY_DEBUGGER,
ANGULARJS_BATARANG,
VUEJS_DEVTOOLS,
VUEJS3_DEVTOOLS,
REDUX_DEVTOOLS,
CYCLEJS_DEVTOOL,
APOLLO_DEVELOPER_TOOLS,
Expand Down Expand Up @@ -36,6 +37,10 @@ const knownExtensions = [
...VUEJS_DEVTOOLS,
description: 'Vue.js devtools',
},
{
...VUEJS3_DEVTOOLS,
description: 'Vue.js devtools',
},
{
...REDUX_DEVTOOLS,
description: 'Redux DevTools',
Expand Down

0 comments on commit 31bf863

Please sign in to comment.