-
Notifications
You must be signed in to change notification settings - Fork 68
/
project.config.js
31 lines (30 loc) · 1.1 KB
/
project.config.js
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
27
28
29
30
31
/**
* Project info config object
*
* All params optional unless
* otherwise noted
*
* @params {
* string name (required) The built theme dirname and the theme text-domain
* string prettyName (required) The theme name as shown in the theme selector admin
* string themeURI The theme's URI
* string description A short description of the theme
* string parentTheme If this is a child theme, then put the parent
* theme's directory name here
* string version The theme's version
* string author The theme's author
* string authorURI The theme author's URI
* string license The theme's license
* string licenseURI The theme license's URI
* array tags Keywords that could be associated with the theme
* }
*/
module.exports = {
name: 'you_should_probably_change_this',
prettyName: 'You should probably change this...',
description: 'The 2015 theme for {Example.com}. Built by John & Jane Doe for {Example}',
version: '0.1.0',
author: 'John & Jane Doe <[email protected]>',
authorURI: 'http://example.com',
license: 'GPLv2 or later'
};