Skip to content

Commit 1522910

Browse files
authored
Merge pull request #232 from vue-pivottable/develop
Release: 1.1.4
2 parents 55fcf0a + f329da3 commit 1522910

File tree

4 files changed

+11
-4
lines changed

4 files changed

+11
-4
lines changed

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -246,7 +246,7 @@ jobs:
246246
fs.readdirSync(packagesDir).forEach(dir => {
247247
const pkgPath = path.join(packagesDir, dir, 'package.json');
248248
if (fs.existsSync(pkgPath)) {
249-
const pkg = require(pkgPath);
249+
const pkg = require(path.resolve(pkgPath));
250250
packages += \`\\n- \${pkg.name}@\${pkg.version}\`;
251251
}
252252
});

packages/plotly-renderer/CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# Changelog
22

3+
## 2.0.5
4+
5+
### Patch Changes
6+
7+
- 47d4f39: fix: npm 배포 태그 수정 및 정식 버전 배포 문제 해결
8+
- vue-pivottable@1.1.4
9+
310
## 2.0.4
411

512
### Patch Changes

packages/plotly-renderer/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@vue-pivottable/plotly-renderer",
3-
"version": "2.0.4",
3+
"version": "2.0.5-beta.1750380868",
44
"type": "module",
55
"exports": {
66
".": {

scripts/release-packages.cjs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -71,8 +71,8 @@ async function releasePackages() {
7171
const packageJson = JSON.parse(fs.readFileSync(packageJsonPath, 'utf8'));
7272
const currentVersion = packageJson.version;
7373

74-
// Skip if not a beta version (no changeset)
75-
if (!currentVersion.includes('-beta')) {
74+
// Skip non-beta versions only when publishing with beta tag
75+
if (releaseTag === 'beta' && !currentVersion.includes('-beta')) {
7676
log.info(`Skipping ${pkg.name} - no beta version (${currentVersion})`);
7777
continue;
7878
}

0 commit comments

Comments
 (0)