@imgcook/plugin-example
When using imgcook to generate export code, we take into account the requirements of processing code products (template + style + JS) generated by imgcook platform (such as automatically uploading pictures to our own image space, file directory conversion, etc.), so we open plugin ecological mechanism to provide these capabilities for you to use, and hope to be interested We can build together.
Develop
const pluginHandler = async options => {
let { data, filePath, config } = options;
return data;
};
module.exports = (...args) => {
return pluginHandler(...args).catch(err => {
console.log(err);
});
};
Reference Example