Skip to content

Commit

Permalink
feat: Add support for braid-design-system packages (#14)
Browse files Browse the repository at this point in the history
  • Loading branch information
markdalgleish authored Oct 2, 2018
1 parent 3f35e63 commit d090bad
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 4 deletions.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
"*"
],
"excludePackagePatterns": [
"(^(@)?seek.*)|(.*-seek(-.*|$))|(^sku.*)|(.*-sku$)"
"(^((@)?seek|sku|braid-design-system).*)|(.*-(seek|sku|braid-design-system)(-.*|$))"
],
"enabled": false
},
Expand Down Expand Up @@ -79,7 +79,7 @@
"commitlint-config-seek": "^1.0.0",
"cz-conventional-changelog": "^2.1.0",
"husky": "^0.14.3",
"renovate": "^12.56.15",
"renovate": "^13.88.1",
"semantic-release": "^15.5.5"
}
}
8 changes: 6 additions & 2 deletions test.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,10 @@ const exampleSeekPackages = [
'seek-style-guide',
'eslint-config-seek',
'babel-plugin-seek-style-guide',
'@seek/private-package'
'@seek/private-package',
'braid-design-system',
'braid-design-system-webpack',
'babel-plugin-braid-design-system'
];

exampleSeekPackages.forEach(exampleSeekPackage => {
Expand All @@ -24,7 +27,8 @@ exampleSeekPackages.forEach(exampleSeekPackage => {
const exampleNonSeekPackages = [
'react',
'webpack',
'jest'
'jest',
'braid' // We want to own 'braid-design-system', not 'braid'
];

exampleNonSeekPackages.forEach(exampleNonSeekPackage => {
Expand Down

0 comments on commit d090bad

Please sign in to comment.