Skip to content

Commit

Permalink
feat(install): create content/settings folder
Browse files Browse the repository at this point in the history
  • Loading branch information
aileen authored and acburdine committed Apr 10, 2018
1 parent f9c6711 commit 276b146
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions lib/tasks/ensure-structure.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,5 @@ module.exports = function ensureStructure() {
fs.ensureDirSync(path.resolve(cwd, 'content', 'data'));
fs.ensureDirSync(path.resolve(cwd, 'content', 'images'));
fs.ensureDirSync(path.resolve(cwd, 'content', 'logs'));
fs.ensureDirSync(path.resolve(cwd, 'content', 'settings'));
};
3 changes: 2 additions & 1 deletion test/unit/tasks/ensure-structure-spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,8 @@ describe('Unit: Tasks > ensure-structure', function () {
'content/themes',
'content/data',
'content/images',
'content/logs'
'content/logs',
'content/settings'
];

expectedFiles.forEach((file) => {
Expand Down

0 comments on commit 276b146

Please sign in to comment.