Marco Polichetti
Marco Polichetti
Controller injectors warmer does not honor the `locations` configuration. ```yml jms_di_extra: locations: all_bundles: false bundles: [AppBundle] directories: ["%kernel.root_dir%/../src"] ``` All directories are scanned (see [this line](https://github.com/schmittjoh/JMSDiExtraBundle/blob/master/HttpKernel/ControllerInjectorsWarmer.php#L49)) and this may causes...
Hi, thanks, this is a good bundle, however is "poor" in the sense that lacks some mandatory (IMHO) features like: - initial settings - settings validation - defaults for missing...
This bundle is abandoned, see my fork. This PR committed https://github.com/thampe/ZurbInkBundle/pull/26 breaks the inlining. Styles (even the `foundation.min.css`) should be added using `zurb_ink_styles.add` function, otherwise it doesn't work: CSS is...
Is there a way NOT to making this extension suggest the following: 
Does the CLi support the build flag (`-b` for `tsc`)? It seems not.... I'm trying to setup a project with [TypeScript project references](https://www.typescriptlang.org/docs/handbook/project-references.html)... any help? ``` $ nest build --help...
This is my first time with partytown. I'm try to load Recaptcha v3 script into the worker thread. This is the partytown configuration in the ``: ```html partytown = {...
I'm new to React and this library, so my question may be a bit silly. I'm using React hooks like `useState`, `useReducer` and `dispatch` inside components and using custom helper...
Pretty "newbie" simple configuration: ```javascript module.exports = shipit => { require('shipit-deploy')(shipit) shipit.initConfig({ default: { deployTo: '~/tmp/super-project', repositoryUrl: '[email protected]:gremo/webpack-boilerplate.git', }, staging: { servers: '[email protected]', }, }); shipit.task('pwd', () => shipit.remote('cd ~/httpdocs...
The suggested solution is this: ```javascript shipit.blTask('app:build', async () => { await shipit.remote(`cd ${shipit.releasePath} && yarn install && yarn build`); }); shipit.on('updated', () => { shipit.start('app:build'); }); ``` But how...
ATM if you need to change the HTML structure - i.e. from ul/li to div/div - you need to copy and past the whole `knp_menu.html.twig`. For the `list` block this...