Skip to content

Commit 276b146

Browse files
aileenacburdine
authored andcommitted
feat(install): create content/settings folder
1 parent f9c6711 commit 276b146

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

lib/tasks/ensure-structure.js

+1
Original file line numberDiff line numberDiff line change
@@ -16,4 +16,5 @@ module.exports = function ensureStructure() {
1616
fs.ensureDirSync(path.resolve(cwd, 'content', 'data'));
1717
fs.ensureDirSync(path.resolve(cwd, 'content', 'images'));
1818
fs.ensureDirSync(path.resolve(cwd, 'content', 'logs'));
19+
fs.ensureDirSync(path.resolve(cwd, 'content', 'settings'));
1920
};

test/unit/tasks/ensure-structure-spec.js

+2-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,8 @@ describe('Unit: Tasks > ensure-structure', function () {
2020
'content/themes',
2121
'content/data',
2222
'content/images',
23-
'content/logs'
23+
'content/logs',
24+
'content/settings'
2425
];
2526

2627
expectedFiles.forEach((file) => {

0 commit comments

Comments
 (0)