We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Unfortunately our client decided to trust a third company that sold them tablets with a chromium 46 on them. So we need to support that old engine.
When I try to run your lib on the browser the following error appears
Uncaught SyntaxError: Block-scoped declarations (let, const, function, class) not yet supported outside strict mode./node_modules/mqtt-packet/parser.js @ app.js:8170 webpack_require @ app.js:770 fn @ app.js:130 (anonymous function) @ mqtt.js?3409:1 ./node_modules/mqtt-packet/mqtt.js @ app.js:8115 webpack_require @ app.js:770 fn @ app.js:130 .......
That file points to your Parser
/*!********************************************!*\ !*** ./node_modules/mqtt-packet/parser.js ***! \********************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { eval("const bl = __webpack_require__(/*! bl */ \"./node_modules/bl/bl.js\")\nconst EventEmitter = __webpack_require__......... /***/ }), const bl = require('bl') const EventEmitter = require('events') const Packet = require('./packet') const constants = require('./constants') const debug = require('debug')('mqtt-packet:parser') class Parser extends EventEmitter {
But that's of course not legit on old browsers. Would it be possible to run your lib through babel and convert it propperly?
The text was updated successfully, but these errors were encountered:
You can run it through babel yourself in your webpack config.
Sorry, something went wrong.
Thanks for your fast reply. Could you eventually tell me how? I'm not that familiar with it
It really depends on your webpack config and I have not time at the moment to debug it :(.
No branches or pull requests
Unfortunately our client decided to trust a third company that sold them tablets with a chromium 46 on them. So we need to support that old engine.
When I try to run your lib on the browser the following error appears
That file points to your Parser
But that's of course not legit on old browsers.
Would it be possible to run your lib through babel and convert it propperly?
The text was updated successfully, but these errors were encountered: