You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jun 22, 2023. It is now read-only.
Plugin's index.js file:
The simplest form of a plugin would have an index.js file that includes:
module.exports = {
// content = a string representation of the file's contents
// resourcePath = the absolute path to the file
// skyPagesConfig = the prepared config that includes skyuxconfig.json and builder's defaults
preload(content, resourcePath, skyPagesConfig) {
return content;
};
}
The text was updated successfully, but these errors were encountered:
We need to document how to write and implement
skyux-builder-plugin-
plugins.Here's an example plugin:
https://github.com/blackbaud/skyux-builder-plugin-stache
This pull request is related: blackbaud/skyux-builder#156
package.json
skyuxconfig.json
Plugin's index.js file:
The simplest form of a plugin would have an index.js file that includes:
The text was updated successfully, but these errors were encountered: