Dmitriy Sintsov
Dmitriy Sintsov
See underscore.js build setup for example: https://github.com/jashkenas/underscore/blob/97f4cb42a1125e160f8aac1bedcd4969745dffec/rollup.config.js ``` // Monolithic ESM bundle for browsers and deno. { input: 'modules/index-all.js', treeshake: false, output: monolithConf({ file: 'underscore-esm.js', format: 'esm', }), }, ```
Thanks. I have T520 with 1600x900. I will read the insttuctions later, they seem to be overly complex / not automatized enough at the first sight, but maybe because I...
Maybe then also add T520 to front page readme.
Thanks for the link, I'll try it later. > normally you don't need to call it directly Does it means the bindings are applied automatically? That is not always the...
That is very strange, even modern Vue does not apply the bindings automatically to the document by default - see ``Vue.$mount()``. Sometimes there is no choice but the third-party DOM...
See also https://github.com/justlep/knockout-esnext I wonder whether is it stable enough to be merged into this repository?
Which script is used to polyfill missing calls of babel output in IE11? Do you include core-js 3 or something else? Is there a cdn link or the IE11 polyfill...