Upgrade chrome debugger to 4.12.10

This commit is contained in:
Ben Jackson 2020-09-03 22:09:59 +01:00
commit 3aa949431e
3 changed files with 15 additions and 5 deletions

View file

@ -407,14 +407,14 @@ GADGETS = {
'url': 'https://marketplace.visualstudio.com/_apis/public/gallery/'
'publishers/msjsdiag/vsextensions/'
'debugger-for-chrome/${version}/vspackage',
'target': 'msjsdiag.debugger-for-chrome-4.12.0.vsix.gz',
'target': 'msjsdiag.debugger-for-chrome-4.12.10.vsix.gz',
'format': 'zip.gz',
},
'all': {
'version': '4.12.0',
'file_name': 'msjsdiag.debugger-for-chrome-4.12.0.vsix',
'version': '4.12.10',
'file_name': 'msjsdiag.debugger-for-chrome-4.12.10.vsix',
'checksum':
'0df2fe96d059a002ebb0936b0003e6569e5a5c35260dc3791e1657d27d82ccf5'
''
},
'adapters': {
'chrome': {

3
support/test/chrome/run_server Executable file
View file

@ -0,0 +1,3 @@
#!/usr/bin/env bash
php -S localhost:1234 -t www

View file

@ -6,5 +6,12 @@ $( document ).ready( function() {
return msg;
};
alert( 'test: ' + getMessage() );
var obj = {
test: getMessage(),
toast: function() { return 'egg'; },
spam: 'ham'
};
alert( 'test: ' + obj.test );
alert( 'toast: ' + obj.toast() );
} );