Marco Polichetti

Results 98 comments of Marco Polichetti

Here is my configuration for your plugin: ```js eleventyConfig.addPlugin(require('eleventy-plugin-i18n'), { translations: glob.sync('./translations/*.json') .map(pathname => ({ key: path.basename(pathname, '.json'), contents: require(pathname) })) .reduce((prev, curr) => ({...prev, [curr.key]: curr.contents }), {}), fallbackLocales:...

@adamduncan any update on this? Have you seen my PR, what do you think?

Hi, is this the same issue created by me https://github.com/shipitjs/shipit/issues/270?

Oh, I see. I have put `resolutions` in my `package.json`, but still doesn't work. Any clue?

Yes, I actually added `resolution` before doing `npm install --save-dev shipit-cli shipit-deploy`. Now I deleted `node_modules` folder and installed deps again, issue remain. > bash: -c: line 0: syntax error...

I was using npm. Ends up that with npm doesn't support resolutions. With yarn it works. Temporary fix... please fix :)

Hi @dbu, I agree that generally the ul/li is the common way to rendere a menu. However sometimes a differente structure is needed, for example when the menu should look...

I was thinking exactly the same. Coming from PHP world with Deployer (a similar deploy tool), i was expecting that the shallow clone would happen on the server, not on...