1.0.1 • Published 2 years ago

suitecloud-config-hooks v1.0.1

Weekly downloads
-
License
ISC
Repository
-
Last release
2 years ago

SuiteCloud Config Hooks

Hooks into Node version of SuiteCloud Developer Framework CLI. These can be executed automatically with SDF commands by creating a suitecloud.config.js file. Details on creating this file can be found in the Help Center.

Example suitecloud.config.js

const hooks = require('suitecloud-config-hooks');

module.exports = {
  commands: {
    'object:import': {
      onCompleted: hooks.organizeImportedObjects,
    }
  }
}