Maksim Popov
Maksim Popov
@shilman had that error (no iframe.html on build-storybook) too, changed from absolute output path to relative one and it has been fixed. Waiting for merging your pr into master, thx
@yairEO for my case ``` // const DIST_PATH = path.resolve(__dirname, 'dist'); const DIST_PATH = 'packages/ui-kit/dist'; const STORYBOOK_PATH = path.resolve(__dirname, '../../libs/ui-kit/src/storybook'); run(`yarn cross-env NODE_ENV=production build-storybook -c ${STORYBOOK_PATH} -o ${DIST_PATH}`); ``` changed...
I have table component and currenlty forced to put row logic there. But there is many use-cases when table row has a lot of logic/template code and it should be...
only this Ben Nadel post https://www.bennadel.com/blog/3180-ngmodule-constructors-provide-a-module-level-run-block-in-angular-2-1-1.htm
@shlomiassaf add `@ngtools/webpack` to install string in readme
@shlomiassaf no way for custom ts loaders here? tried to update medium size project (~70-80k loc) to ng5 from ng4 and got x2 prod build time (x3 with all build...
@jhchen there is one problem with separate lib for converting Delta to HTML - it requires to pass all common and custom formats that already registered in Quill instance due...
@benallfree this breaks a lot of cool things like updating display format for image/video or all formats markup, cause old HTML will not update. And also requires a lot of...
> I think your suggestion is to render a page from stored Quill deltas instead of the stored HTML, right? yes, this is my current usecase > That would require...
> Is search engine indexing an issue in your use case? there is no issues with google search engine, it runs all js and then analyze (we'r using angular). Other...