Skip to content

Commit 6af9ea2

Browse files
nylas-it-opsgithub-actions[bot]
authored andcommitted
chore: version packages (#46)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
1 parent 4250a3c commit 6af9ea2

File tree

5 files changed

+15
-14
lines changed

5 files changed

+15
-14
lines changed

.changeset/upgrade-web-elements-2-3-5.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

packages/react/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# @nylas/react
22

3+
## 3.1.3
4+
5+
### Patch Changes
6+
7+
- 4250a3c: Upgrade @nylas/web-elements dependency to 2.3.5
8+
39
## 3.1.2
410

511
### Patch Changes

packages/react/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@nylas/react",
3-
"version": "3.1.2",
3+
"version": "3.1.3",
44
"description": "React components and hooks for Nylas API integration",
55
"type": "module",
66
"scripts": {
@@ -78,7 +78,7 @@
7878
"dependencies": {
7979
"@nylas/connect": "workspace:^",
8080
"@nylas/core": "^1.2.0",
81-
"@nylas/web-elements": "2.3.5",
81+
"@nylas/web-elements": "2.4.0",
8282
"@stencil/react-output-target": "^1.2.0",
8383
"axios": "^1.7.7",
8484
"dayjs": "1.11.7",

pnpm-lock.yaml

Lines changed: 5 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

scripts/send-slack-notification.mjs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,14 +42,14 @@ if (!slackWebhookUrl) {
4242

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

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

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

0 commit comments

Comments
 (0)