Skip to content

Commit 64a602e

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 18f6efb commit 64a602e

3 files changed

Lines changed: 8 additions & 8 deletions

File tree

packages/react/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -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)