12345678910111213141516 |
- "use strict";
- const defaultGenerator = require("../generators/add-generator");
- const modifyHelper = require("../utils/modify-config-helper");
- /**
- * Is called and returns a scaffolding instance, adding properties
- *
- * @returns {Function} modifyHelper - A helper function that uses the action
- * we're given on a generator
- *
- */
- module.exports = function add() {
- return modifyHelper("add", defaultGenerator);
- };
|