Skip to content

Commit

Permalink
fix(PricingTable): remove max-width (#3533)
Browse files Browse the repository at this point in the history
  • Loading branch information
mainframev committed Jul 21, 2022
1 parent 6a4c40b commit 9571f80
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 14 deletions.
22 changes: 9 additions & 13 deletions scripts/publish.mjs
Expand Up @@ -89,7 +89,12 @@ async function configureGitHubToken() {
async function previewChangelog() {
const packages = await getPackages();
const streams = packages
.filter(pkg => !/orbit.kiwi|orbit-tracking|babel-plugin-orbit-components/gm.test(pkg.name))
.filter(
pkg =>
!/orbit.kiwi|orbit-tracking|(babel|eslint)-plugin-orbit-components|orbit-design-tokens/gm.test(
pkg.name,
),
)
.map(pkg => {
return conventionalChangelog(
{
Expand Down Expand Up @@ -132,16 +137,7 @@ async function previewChangelog() {
(async () => {
await configureGitHubToken();
await installDependencies();
publishPackages().then(() => {
previewChangelog()
.then(changelog => {
postSlackNotification(changelog);
})
.catch(err => {
console.error(err);
})
.finally(() => {
process.exit(0);
});
});
await publishPackages();
const changelog = await previewChangelog();
await postSlackNotification(changelog);
})();
2 changes: 1 addition & 1 deletion yarn.lock
Expand Up @@ -7078,7 +7078,7 @@
dependencies:
"@types/react" "*"

"@types/react-dom@>=16.9.0":
"@types/react-dom@>=16.9.0", "@types/react-dom@^17.0.9":
version "17.0.17"
resolved "https://registry.yarnpkg.com/@types/react-dom/-/react-dom-17.0.17.tgz#2e3743277a793a96a99f1bf87614598289da68a1"
integrity sha512-VjnqEmqGnasQKV0CWLevqMTXBYG9GbwuE6x3VetERLh0cq2LTptFE73MrQi2S7GkKXCf2GgwItB/melLnxfnsg==
Expand Down

0 comments on commit 9571f80

Please sign in to comment.