File tree Expand file tree Collapse file tree 4 files changed +10
-8
lines changed
Expand file tree Collapse file tree 4 files changed +10
-8
lines changed Original file line number Diff line number Diff line change 11{
22 "name" : " @adobe-fixed-uxp/uxp-devtools-cli" ,
3- "version" : " 1.5.8 " ,
3+ "version" : " 1.5.9 " ,
44 "description" : " Command line interface for rapid UXP plugin development" ,
55 "main" : " src/uxp.js" ,
66 "scripts" : {
2424 "author" : " Adobe Inc" ,
2525 "license" : " Apache-2.0" ,
2626 "dependencies" : {
27- "@adobe-fixed-uxp/uxp-devtools-core" : " ^1.5.0 " ,
27+ "@adobe-fixed-uxp/uxp-devtools-core" : " ^1.5.1 " ,
2828 "@adobe-fixed-uxp/uxp-wdio-automation-template" : " ^1.0.0" ,
2929 "@adobe/uxp-template-default-starter" : " ^1.0.0" ,
3030 "@adobe/uxp-template-default-starter-ps" : " ^1.0.0" ,
4242 },
4343 "devDependencies" : {
4444 "@adobe-fixed-uxp/uxp-inspect-frontend" : " ^1.5.1"
45+ },
46+ "optionalDependencies" : {
47+ "@adobe-fixed-uxp/uxp-inspect-frontend" : " ^1.5.1"
4548 }
4649}
Original file line number Diff line number Diff line change 11{
22 "name" : " @adobe-fixed-uxp/uxp-devtools-core" ,
3- "version" : " 1.5.0 " ,
3+ "version" : " 1.5.1 " ,
44 "description" : " UXP Devtools Core Module" ,
55 "main" : " src/index.js" ,
66 "scripts" : {
2121 "author" : " Adobe Inc" ,
2222 "license" : " Apache-2.0" ,
2323 "dependencies" : {
24- "@adobe-fixed-uxp/uxp-devtools-helper" : " ^1.5.0 " ,
24+ "@adobe-fixed-uxp/uxp-devtools-helper" : " ^1.5.1 " ,
2525 "chalk" : " ^3.0.0" ,
2626 "chokidar" : " ^3.4.2" ,
2727 "express" : " ^4.17.1" ,
Original file line number Diff line number Diff line change 11{
22 "name" : " @adobe-fixed-uxp/uxp-devtools-helper" ,
3- "version" : " 1.5.0 " ,
3+ "version" : " 1.5.1 " ,
44 "description" : " Adobe Devtools helper package used by uxp cli" ,
55 "main" : " src/DevToolsHelper.js" ,
6- "scripts" : {
7- "install" : " node scripts/devtools_setup.js"
8- },
96 "repository" : {
107 "type" : " git" ,
118 "url" : " git@github.com:adobe-uxp/devtools-cli.git" ,
Original file line number Diff line number Diff line change @@ -110,10 +110,12 @@ class DevToolsHelper {
110110 const errorMsg = "Cound not connect to the UXP Developer Service. Start the cli service and try again." ;
111111 this . _devToolsNative . getServicePort ( ( type , data ) => {
112112 try {
113+ console . log ( data ) ;
113114 const payload = JSON . parse ( data . payload ) ;
114115 prom . resolve ( payload . port ) ;
115116 }
116117 catch ( err ) {
118+ console . error ( err )
117119 prom . reject ( new Error ( errorMsg ) ) ;
118120 }
119121 prom . handled = true ;
You can’t perform that action at this time.
0 commit comments