Skip to content

Commit

Permalink
style: object key is value
Browse files Browse the repository at this point in the history
  • Loading branch information
curbengh committed Nov 4, 2019
1 parent 0b6086f commit 6257869
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions lib/generator.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ const micromatch = require('micromatch');
const template = require('./template');

module.exports = function(locals) {
const {config} = this;
const { config } = this;
let skipRenderList = [
'**/*.js',
'**/*.css'
Expand All @@ -25,8 +25,8 @@ module.exports = function(locals) {
});

const xml = template(config).render({
config: config,
posts: posts
config,
posts
});

return {
Expand Down

0 comments on commit 6257869

Please sign in to comment.