Builder
Этот билдер создает из url статьи репозиторий на гитхабе и выполняет все сопутствующие действия.
Environment variables
createCards, createRepo, initGithub, uploadToRepo
codepenTransform and codepenTransformIFrame
detectLanguage
getTags
- AWSAccessKeyId
- AWSSecretKey
You may ignore build stages and specific plugins
this.skip = {
plugins: [
{
name: 'TMPDir',
stages: 'after',
},
{ name: 'uploadToRepo' },
],
stages: [
'github:before',
],
};
You may create plugins
module.exports = deepmerge(pluginBase, {
meta: {
name: 'PluginName',
dependency: ['PluginDep', 'PluginDep:StageName'],
domain: 'https://smashingmagazine.com'
},
StageName: (unmodified) => {return modified;},
[['StageName:before']]: (unmodified) => {return modified;},
});