Alexander Ruliov

Results 17 comments of Alexander Ruliov

> Are there any suggestions on how to figure out the chunk IDs from module ID inside the webpack runtime? That would help implement the hot reloading reliably. It is...

Implemented: #146 , ready for your feedback.

> Has this been deployed yet? No, not merged/deployed yet.

> Thank You for your prompt reply Alexander. I'll be waiting and eagerly looking forward to test this. 🙏️ If you only want to test it, you can try `@sesuritu_bot`,...

Oh, accidentally deleted branch.

If someone will merge it into own forks, there is two other useful commits: https://github.com/Rulexec/shieldy/commit/ce58be6858006d49a922bd3644ec83a798e7ccca (multiple answers support) https://github.com/Rulexec/shieldy/commit/44e1f5b9227ae286dd42d7b07a2c8b51310a32c2 (bug fix)

Same issue. I added logging here: ``` if C.EVP_DecryptFinal_ex(ctx, buf + out_len[0], tmp_len) == 0 then ngx.log(ngx.STDERR, "aes3: " .. inspect(ffi_str(buf, 32))) return nil end ``` And looks like `buf`...

I have the same issue. Added `console.log` to `node_modules/webpack/lib/JavascriptModulesPlugin.js`: ```javascript for (const m of chunk.modulesIterable) { if (typeof m.source === "function") { console.log(m.resource, m.hash); console.log(m._source._value.length < 1000 ? m._source._value :...

Hello. I like this proposal. To achieve similar effect I rely on volatiles and specific structure of my root store/substores. Which is a bit weird and I'm looking for a...

Same problem. I have strings `count: 0` and `count: 0\n`, receiving `distance = 1` and: ``` [ Same( "count: 0\n", ), ] ``` UPD: solved it by following hack: ```...