Skip to content
This repository has been archived by the owner on Jun 17, 2021. It is now read-only.

Commit

Permalink
add missing comma
Browse files Browse the repository at this point in the history
  • Loading branch information
tonifisler committed Jul 14, 2017
1 parent 03ecbf0 commit 6191f1c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion generators/app/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -204,7 +204,7 @@ module.exports = class extends Generator {

this.fs.write(this.destinationPath(`${this.props.src}config/styleguide.scss`), "@charset 'utf-8';\n\n@import 'variables';\n");
this.fs.write(this.destinationPath(`${this.props.src}config/data.json`), "{\n \n}\n");
this.fs.write(this.destinationPath(`${this.props.src}config/colors.json`), '{\n "Black": "#000"\n "White": "#fff"\n}\n');
this.fs.write(this.destinationPath(`${this.props.src}config/colors.json`), '{\n "Black": "#000",\n "White": "#fff"\n}\n');

emptyDirs.push(
'components/atoms/',
Expand Down

0 comments on commit 6191f1c

Please sign in to comment.