@xylabs/ts-scripts-yarn3 7.2.32 → 7.3.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -2040,6 +2040,11 @@ var publintAll = ({ verbose }) => {
2040
2040
  return runSteps("Publint", [["yarn", ["workspaces", "foreach", "-pA", ...verboseOptions, "run", "package-publint"]]]);
2041
2041
  };
2042
2042
 
2043
+ // src/actions/publish.ts
2044
+ var publish = () => {
2045
+ return runSteps("Publish", [["npm", ["publish", "--workspaces"]]]);
2046
+ };
2047
+
2043
2048
  // src/actions/rebuild.ts
2044
2049
  var rebuild = ({ target }) => {
2045
2050
  return runSteps("Rebuild", [
@@ -2307,6 +2312,7 @@ export {
2307
2312
  publint,
2308
2313
  publintAll,
2309
2314
  publintPackage,
2315
+ publish,
2310
2316
  rebuild,
2311
2317
  recompile,
2312
2318
  recompileAll,