We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3d5fdb0 commit b54cdb2Copy full SHA for b54cdb2
template/_package.json
@@ -12,6 +12,8 @@
12
"email": "{{authorEmail}}",
13
"url": "{{authorUrl}}"
14
},
15
+ "keywords": ["{{name}}", "{{authorName}}"],
16
+ "files": ["index.js", "utils"],
17
"scripts": {
18
"format": "prettier --write \"./**/*.{js,json}\""
19
}
template/utils/init.js
@@ -5,8 +5,8 @@ const unhandled = require('cli-handle-unhandled');
5
module.exports = ({ clear = true }) => {
6
unhandled();
7
welcome({
8
- title: '{{name}}',
9
- tagLine: 'by {{authorName}}',
+ title: `{{name}}`,
+ tagLine: `by {{authorName}}`,
10
description: pkg.description,
11
version: pkg.version,
bgColor: '#6cc24a',
0 commit comments