Skip to content

Commit 50454ae

Browse files
authored
Merge pull request #951 from Shopify/add-circle-config-to-public-repo
Keep .circleci config and .editorconfig in public repository
2 parents 3eb9056 + 930b4dc commit 50454ae

File tree

2 files changed

+18
-2
lines changed

2 files changed

+18
-2
lines changed

CHANGELOG.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,11 @@
11
# Changelog
22

3-
## Unreleased
3+
<!-- ## Unreleased -->
4+
5+
## 1.10.2 - 2018-01-22
6+
7+
### Bug fixes
8+
* Fixed the public repository’s build (which was missing the new CircleCI configuration files) ([#951](https://github.com/Shopify/polaris-react/pull/951))
49

510
## 1.10.1 - 2018-01-19
611

scripts/public-repo-deploy.js

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,18 @@ let changelogFile = readFileSync(changelog, 'utf8');
9696
changelogFile = changelogFile.replace(STRIP_PRIVATE_LINKS, '');
9797
writeFileSync(changelog, changelogFile);
9898

99-
const hiddenFilesGlob = '{.vscode,.eslintignore,.gitignore,.nvmrc,.github,.babelrc,.yarnclean}';
99+
const hiddenFilesToKeepInPublicRepository = [
100+
'.circleci',
101+
'.github',
102+
'.vscode',
103+
'.babelrc',
104+
'.editorconfig',
105+
'.eslintignore',
106+
'.gitignore',
107+
'.nvmrc',
108+
'.yarnclean',
109+
].join(',');
110+
const hiddenFilesGlob = `{${hiddenFilesToKeepInPublicRepository}}`;
100111

101112
// 🔥 ./sandbox/polaris
102113
rm('-rf', [

0 commit comments

Comments
 (0)