You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Inside the NPM package, there's no un-minified version of the compiled source, so when an issue comes up, it's impossible to figure out what's breaking.
This screenshot is from trying to define a new KeyCombo using 'cmd':
const searchAction = new Action('searchText', KeyCombo.fromString('cmd f'));
EDIT: I see that the issue with 'cmd' not being defined is due to my not having manually run KeyContainer.init('Mac', ''), but I only got that from looking at tests—it's not mentioned in the docs anywhere
The text was updated successfully, but these errors were encountered:
Source maps are generated on this package, which should give the source code logging in the devtools... isn't that happening? Have you tried rebuilding this package with devtool: 'source-map on the webpack config?
Inside the NPM package, there's no un-minified version of the compiled source, so when an issue comes up, it's impossible to figure out what's breaking.
This screenshot is from trying to define a new
KeyCombo
using'cmd'
:const searchAction = new Action('searchText', KeyCombo.fromString('cmd f'));
EDIT: I see that the issue with
'cmd'
not being defined is due to my not having manually runKeyContainer.init('Mac', '')
, but I only got that from looking at tests—it's not mentioned in the docs anywhereThe text was updated successfully, but these errors were encountered: