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