Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .changeset/upgrade-web-elements-2-4-0.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@nylas/react": patch
---

Upgrade @nylas/web-elements dependency to 2.4.0
2 changes: 1 addition & 1 deletion packages/react/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@
"dependencies": {
"@nylas/connect": "workspace:^",
"@nylas/core": "^1.2.0",
"@nylas/web-elements": "2.3.5",
"@nylas/web-elements": "2.4.0",
"@stencil/react-output-target": "^1.2.0",
"axios": "^1.7.7",
"dayjs": "1.11.7",
Expand Down
10 changes: 5 additions & 5 deletions pnpm-lock.yaml

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

4 changes: 2 additions & 2 deletions scripts/send-slack-notification.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -42,14 +42,14 @@ if (!slackWebhookUrl) {

// Get a list of packages via pnpm nx projects
const _packageNames = await $`pnpm nx show projects --json`.quiet();
const packageNames = JSON.parse(_packageNames.stdout.split('\n').slice(4).join('\n'));
const packageNames = JSON.parse(_packageNames.stdout.trim());

// Get the package root for each package via pnpm nx show project [packageName]
const pkgs = {};
for (const packageName of packageNames) {
// Remove the first 3 lines of the output
const _nxPackageInfo = await $`pnpm nx show project ${packageName} --json`.quiet();
const nxPackageInfo = JSON.parse(_nxPackageInfo.stdout.split('\n').slice(4).join('\n'));
const nxPackageInfo = JSON.parse(_nxPackageInfo.stdout.trim());

// Only include the packages that were published
if (!publishedPackages.includes(packageName)) {
Expand Down