mirror of
https://github.com/strapi/strapi.git
synced 2025-07-05 16:12:18 +00:00
18 lines
222 B
JavaScript
18 lines
222 B
JavaScript
![]() |
'use strict';
|
||
|
|
||
|
/**
|
||
|
* Module dependencies
|
||
|
*/
|
||
|
|
||
|
/**
|
||
|
* Runs after this generator has finished
|
||
|
*
|
||
|
* @param {Object} scope
|
||
|
* @param {Function} cb
|
||
|
*/
|
||
|
|
||
|
module.exports = function afterGenerate(scope, cb) {
|
||
|
|
||
|
return cb();
|
||
|
};
|