Skip to content

Commit 5380631

Browse files
committed
XXX Use the user's core/ directory.
1 parent 6e14629 commit 5380631

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

core/paths.js

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -71,10 +71,11 @@ module.exports = {
7171
},
7272
templates: {
7373
styleguide: {
74-
index: path.join(absoluteCorePath, 'templates/styleguide/index.pug'),
75-
doc: path.join(absoluteCorePath, 'templates/styleguide/doc.pug'),
76-
colors: path.join(absoluteCorePath, 'templates/styleguide/colors.pug'),
77-
componentGroup: path.join(absoluteCorePath, 'templates/styleguide/component-group.pug')
74+
// TODO Using absoluteCorePath or corePath should be an option.
75+
index: path.join(corePath, 'templates/styleguide/index.pug'),
76+
doc: path.join(corePath, 'templates/styleguide/doc.pug'),
77+
colors: path.join(corePath, 'templates/styleguide/colors.pug'),
78+
componentGroup: path.join(corePath, 'templates/styleguide/component-group.pug')
7879
}
7980
}
8081
},

0 commit comments

Comments
 (0)