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

Commit

Permalink
Fix circle ci test on gen (#51)
Browse files Browse the repository at this point in the history
* fix circle ci test on gen

* update Slate hash
  • Loading branch information
Ryan Macdonald authored and Thomas Kelly committed Jul 31, 2017
1 parent cdd6f82 commit b2469fe
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 4 deletions.
6 changes: 6 additions & 0 deletions packages/slate-cli/generators/new-theme/includes/scaffold.js
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ module.exports = {
'!' + scaffold + '/docs/**',
'!' + scaffold + '/package.json',
'!' + scaffold + '/.npmignore',
'!' + scaffold + '/circle.yml',
'!' + scaffold + '/**/*.ejs'
];

Expand All @@ -51,6 +52,11 @@ module.exports = {
path.join(destination, '/.gitignore')
);
}

this.fs.copy(
path.join(scaffold, '/circle.yml.ejs'),
path.join(destination, '/circle.yml')
);

this.fs.copyTpl(
path.join(scaffold, '/config.yml.ejs'),
Expand Down
6 changes: 3 additions & 3 deletions packages/slate-cli/npm-shrinkwrap.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion packages/slate-cli/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
"generate-section": "yo --no-insight --no-update-notifier ./generators/new-section/section.js"
},
"dependencies": {
"Slate": "git+ssh://git@github.com/shopify/slate.git#95c30eef00955c59bc89c51a26672ca66bd716f0",
"Slate": "git+ssh://git@github.com/shopify/slate.git#cbe922b3fbfce8893bd07974dcc4694efa426b49",
"bin-wrapper": "3.0.2",
"bluebird": "3.4.1",
"find-root": "1.0.0",
Expand Down

0 comments on commit b2469fe

Please sign in to comment.