Franck Freiburger
Franck Freiburger
Like serve-static, express-static-gzip should also be able to serve a single file. eg: `expressApp.use('/service-worker.js', expressStaticGzip('service-worker.js'));` Currently, the error is: ``` Error: ENOTDIR: not a directory, scandir 'C:\test\dist\service-worker.js' at Object.fs.readdirSync (fs.js:909:18)...
I have a component factory that use JSX. ``` export default userOptions => { ... return { functional: true, render: function(h, { data, props }) { return
## Detailed Description Since code split creates multiple independent chunks, prepack can only apply optimizations to chunk "shells", not modules contained in these chunks (maybe except for entry chunk). I...
### Element UI version 2.3.5 ### OS/Browsers version win7 / chrome 66 ### Vue version 2.5.16 ### Reproduction Link [https://jsfiddle.net/mmx38qxw/1840/](https://jsfiddle.net/mmx38qxw/1840/) ### Steps to reproduce - select an item - "@blur"...
Hello, Is it possible to remove a field once it has been indexed ? my document is: ``` - index - content - pageNum - filename ``` my index config:...
I wondering if it is possible to get the module filename from the `module_import_meta_callback` My aim is to implement `import.meta.url` The first argument of the callback is `const jerry_value_t module`,...
I wondering how to deal with programatically created promises (`jerry_promise()`) and `jerry_run_jobs()` call or (calls !) I try to implement a setTimeout native function that returns a promise. script: ```...
The following code: ``` render(h) { return ; }, ``` fails with: ``` Module build failed (from ../node_modules/babel-loader/lib/index.js): Cannot read property 'toLowerCase' of undefined ``` whereas replacing `type="range"` with `type="number"`...
Hello, after changing from _Stable version_ `platform = espressif32` to _Development version_ `platform = https://github.com/platformio/platform-espressif32.git` I encounter the following error: ``` Uploading .pio\build\esp32dev_DEBUG\firmware.bin usage: esptool write_flash [-h] [--erase-all] [--flash_freq {keep,80m,60m,48m,40m,30m,26m,24m,20m,16m,15m,12m}]...
###### Build platform esp32 idf (5.4.1) ###### Test case ```C #include "jerryscript.h" #include #include #include "assert.h" void app_main() { assert(jerry_feature_enabled(JERRY_FEATURE_HEAP_STATS)); assert(jerry_feature_enabled(JERRY_FEATURE_WEAKMAP)); const jerry_char_t script[] = "var wm = new WeakMap();\n"...