M Behzad
M Behzad
…to be the same as the filename of the generetad html. fixes issue: (#94)
When using external example files, when the examle name is for example in camelCase, the generetad file name is kebab-case (generator.js:245) but the iframes src path has the original camelCase...
This allows the imported module to be already minified, and if the environment doesn't need any additional transpiling, be used without any processing/bundling. e.g. directly via unpkg
when runing tests, it fails with the error: `SecurityError: localStorage is not available for opaque origins` it seems jsdom needs a url defined in the testing environment configuration (see https://github.com/jsdom/jsdom/issues/2304)...
upgrades to the Webpack v4 new tapable plugin API
When webpack runs with Webpack-Monitor + `lauch` flag in watch mode, starting a new express instance each time would throw an error because of the port being in use. see...
babel compact mainly removes unnecessary white spaces and new lines [docs](https://babeljs.io/docs/usage/api/#options), babel minify preset has a more aggressive minificiation options. which would result to a better file size calculation. using...
e.g. something like: ``` @forEach [btnContainer.buttons-#] as btn, index as i, prev as previousButton @if ${i == 1} ${btn}: visible width 100% of parent/width left-of previousButton 10px ``` throws `WrappedException:...
e.g. ```javascript this.report .error("Validation failed") .withDetails("too many items") ``` will pass with the status "PASS". and the galen report overview lists the test suit as passed. but in the test...
Use case: Source code of multiple files need to be prepossessed before passing them to the jsdoc-api for the doc generation. Concatenation of these codes would not always be possible....