Skip to content
This repository was archived by the owner on Jun 29, 2022. It is now read-only.

Commit 5128653

Browse files
committed
Renamed envClient to EnvClient
1 parent 6541c21 commit 5128653

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

main.js

+4-4
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ function entry({
44
StatusBarItem,
55
ContextMenu,
66
RunningConfig,
7-
envClient
7+
EnvClient
88
}){
99
let flutterDevices = [
1010
{
@@ -38,7 +38,7 @@ function entry({
3838
return {
3939
label: folder.path,
4040
action(){
41-
runApp(flutterApp,folder,selectedDevice,envClient,RunningConfig)
41+
runApp(flutterApp,folder,selectedDevice,EnvClient,RunningConfig)
4242
}
4343
}
4444
})
@@ -84,13 +84,13 @@ function entry({
8484
})
8585
}
8686

87-
function runApp(flutterApp,folder,selectedDevice,envClient,RunningConfig){
87+
function runApp(flutterApp,folder,selectedDevice,EnvClient,RunningConfig){
8888
if( !selectedDevice ) return
8989
flutterApp = new Flutter.app({
9090
path: folder.path,
9191
deviceId: selectedDevice.id
9292
})
93-
const flutterEnv = new envClient({
93+
const flutterEnv = new EnvClient({
9494
name: 'Flutter'
9595
})
9696
flutterEnv.on('start',()=>{

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "FlutterPlugin",
33
"id": "flutter-plugin",
4-
"version": "0.1.5",
4+
"version": "0.1.6",
55
"main": "main.js",
66
"mainSrc": "main.js",
77
"mainDev": "dist/main.js",

0 commit comments

Comments
 (0)