Skip to content

Commit

Permalink
fix publishing errors
Browse files Browse the repository at this point in the history
  • Loading branch information
runspired committed Mar 9, 2024
1 parent 5b632a4 commit cfb9c71
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 4 deletions.
8 changes: 4 additions & 4 deletions release/core/publish/steps/generate-tarballs.ts
Original file line number Diff line number Diff line change
Expand Up @@ -226,16 +226,16 @@ async function amendFilesForTypesStrategy(pkg: Package, strategy: APPLIED_STRATE
}
switch (strategy.types) {
case 'private':
makeTypesPrivate(pkg);
await makeTypesPrivate(pkg);
break;
case 'alpha':
makeTypesAlpha(pkg);
await makeTypesAlpha(pkg);
break;
case 'beta':
makeTypesBeta(pkg);
await makeTypesBeta(pkg);
break;
case 'stable':
makeTypesStable(pkg);
await makeTypesStable(pkg);
break;
}
await pkg.file.write(true);
Expand Down
8 changes: 8 additions & 0 deletions release/strategy.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,14 @@
"types": "alpha"
},
"rules": {
"@ember-data/debug": {
"stage": "stable",
"types": "private"
},
"@ember-data/private-build-infra": {
"stage": "stable",
"types": "private"
},
"@warp-drive/holodeck": {
"stage": "alpha",
"types": "private"
Expand Down

0 comments on commit cfb9c71

Please sign in to comment.