Skip to content

Commit

Permalink
release: test
Browse files Browse the repository at this point in the history
  • Loading branch information
warm-coolguy committed Feb 5, 2024
1 parent f9b5594 commit e0db740
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 1 deletion.
2 changes: 2 additions & 0 deletions packages/lib/idx/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# CHANGELOG

## 2.0.0-mock.0

## 1.0.0

Initial release.
2 changes: 2 additions & 0 deletions packages/lib/invisibleStyle/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# CHANGELOG

## 2.0.0-mock.0

## 1.0.0

Initial release.
4 changes: 3 additions & 1 deletion scripts/publishPackages.js
Original file line number Diff line number Diff line change
Expand Up @@ -32,13 +32,15 @@ for (const path of packages) {
const nextVersion = checkForNewVersion(path)
if (nextVersion) {
const context = { cwd: path, stdio: 'inherit' }

Check failure on line 34 in scripts/publishPackages.js

View workflow job for this annotation

GitHub Actions / lint-test

'context' is assigned a value but never used

Check failure on line 34 in scripts/publishPackages.js

View workflow job for this annotation

GitHub Actions / lint-test

'context' is assigned a value but never used

Check failure on line 34 in scripts/publishPackages.js

View workflow job for this annotation

GitHub Actions / lint-test

'context' is assigned a value but never used
/*
cp.execSync('npm version ' + nextVersion, context)
cp.execSync(
'npm set //registry.npmjs.org/:_authToken ' +
process.env.NODE_AUTH_TOKEN,
{ cwd: path }
)
cp.execSync('npm publish --access=public', context)
*/
tags.push(`${getPackageName(path)}@${nextVersion}`)
}
} catch (e) {
Expand All @@ -47,4 +49,4 @@ for (const path of packages) {
}
}

process.stdout.write(tags.join(' '))
process.stdout.write(tags.map((tag) => tag.trim()).join(' '))

0 comments on commit e0db740

Please sign in to comment.