Ambient Hack
Ambient Hack
@mindplay-dk Please, correct me, if I'm mistaking. To my understanding, the situation I described leads to an error, not double write to file. Second thread thinks that there is a...
Same issue. Same fix worked for me.
try to grant custom role as described here http://docs.mongodb.org/manual/reference/command/eval/#access-control
I was able to build mqtt for React following these steps: ### inside of `node_modules/mqtt` create `webpack.config.js`: ``` const webpack = require('webpack') module.exports = { entry: "./lib/connect/index.js", //mode: "development", output:...
**UPDATE**: removed references to Loco Translate Came across the problem of block localization for blocks created using create-guten-block. Haven't localized blocks before, so had to go through trial an error....
@swissspidy had no luck with it, i think because compiled files contain module source code inside strings: ```js (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames__...
It looks like `wp i18n` cannot deal with code packed inside eval'ed strings, as it analyzes abstract code tree. 'eval' modules are produced by webpack in create-guten-block dev mode. If...
I managed (by trial and error) to make it work in webpack 5.87.0 by removing double quotes on [this line](https://github.com/dgvozdenovic-edeja/iconfont-webpack-plugin/blob/main/lib/loader.js#L28): ```js const url = 'data:application/x-font-woff;charset=utf-8;base64,' + result; ``` I'm not...
This works form me, thank you!
It doesn't work in webpack 5.87.0