Press n or j to go to the next uncovered block, b, p or k for the previous block.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 | 'use strict'; const { EOL } = require('os'); const path = require('path'); const Manifest = require('../../lib/manifest'); const Browserconfig = require('../../lib/browserconfig'); module.exports = { description: 'Generates a configuration for web app manifest.', normalizeEntityName() {}, locals(options) { return { name: options.project.name(), }; }, afterInstall() { let index = path.join('app', 'index.html'); let content = `${EOL} ${Manifest.tag}${EOL} ${Browserconfig.tag}`; let after = `{{content-for "head"}}${EOL}`; return this.insertIntoFile(index, content, { after }); }, }; |