I have set up a branch deploy but deploy is failing and I am getting this message
The weird thing is when I create a new project/site and deploy this branch it works! When I look at the logs it is all green.
The repo is here GitHub - ThinkUniform/uniformcss.com: Documentation site for Uniform CSS. and the branch is called v2
It says there is an error in eleventy.js’s config but I’ve checked and everything seems to be normal (I mean it deployed correctly on normal deploys).
module.exports = function (eleventyConfig) {
let { DateTime } = require('luxon');
let pluginRss = require('@11ty/eleventy-plugin-rss');
let pluginSyntaxHighlight = require('@11ty/eleventy-plugin-syntaxhighlight');
let pluginNavigation = require('@11ty/eleventy-navigation');
let pluginTOC = require('eleventy-plugin-toc');
let markdownIt = require('markdown-it');
let markdownItAnchor = require('markdown-it-anchor');
let markdownItContainer = require("markdown-it-container");
let markdownItAttrs = require("markdown-it-attrs");
eleventyConfig.addPlugin(pluginRss);
eleventyConfig.addPlugin(pluginSyntaxHighlight);
eleventyConfig.addPlugin(pluginNavigation);
eleventyConfig.addPlugin(pluginTOC, {
tags: ['h2', 'h3'],
wrapper: 'div',
});
eleventyConfig.addFilter('asPostDate', (dateObj) => {
return DateTime.fromJSDate(dateObj).toLocaleString(DateTime.DATE_MED);
// other config likely here
});
// https://www.11ty.dev/docs/copy/
eleventyConfig.addPassthroughCopy('*.ico');
eleventyConfig.addPassthroughCopy('*.png');
eleventyConfig.addPassthroughCopy('*.svg');
eleventyConfig.addPassthroughCopy('*.webmanifest');
// https://www.11ty.dev/docs/data-deep-merge/
eleventyConfig.setDataDeepMerge(true);
eleventyConfig.addFilter('readableDate', (dateObj) => {
return DateTime.fromJSDate(dateObj, { zone: 'utc' }).toFormat(
'dd LLL yyyy'
);
});
// https://html.spec.whatwg.org/multipage/common-microsyntaxes.html#valid-date-string
eleventyConfig.addFilter('htmlDateString', (dateObj) => {
return DateTime.fromJSDate(dateObj, { zone: 'utc' }).toFormat('yyyy-LL-dd');
});
eleventyConfig.addPassthroughCopy('assets/');
// Markdown
eleventyConfig.setLibrary(
'md',
markdownIt({
html: true,
breaks: true,
linkify: true,
})
.use(markdownItAnchor, {
permalink: markdownItAnchor.permalink.headerLink(),
})
.use(require('markdown-it-attrs'))
.use(require('markdown-it-container'), '', {
validate: () => true,
render: (tokens, idx) => {
if (tokens[idx].nesting === 1) {
const classList = tokens[idx].info.trim();
return `<div ${classList && `class="${classList}"`}>`;
} else {
return `</div>`;
}
},
})
);
eleventyConfig.addFilter('markdownify', (content) => {
let markdownify = markdownIt({
html: true,
breaks: true,
linkify: true,
}).use(markdownItAnchor, {
permalink: true,
permalinkClass: 'direct-link',
permalinkSymbol: '',
});
return markdownify.render(content);
});
eleventyConfig.addFilter('markdownInline', (content) => {
let markdownInline = markdownIt({
html: true,
breaks: true,
linkify: true,
}).use(markdownItAnchor, {
permalink: true,
permalinkClass: 'direct-link',
permalinkSymbol: '',
});
return markdownInline.renderInline(content);
});
return {
markdownTemplateEngine: 'njk',
};
};