@imgcook/plugin-shuxu-test

plugin template

Usage no npm install needed!

<script type="module">
  import imgcookPluginShuxuTest from 'https://cdn.skypack.dev/@imgcook/plugin-shuxu-test';
</script>

README

@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

/**
 * @name plugin example
 * @param option: { data, filePath, config }
 * - data: module and generate code Data
 * - filePath: Pull file storage directory
 * - config: cli config
 */

const pluginHandler = async options => {
  let { data } = options;
  // body...
  return data;
};

module.exports = (...args) => {
  return pluginHandler(...args).catch(err => {
    console.log(err);
  });
};

Reference Example