@storm-software/pnpm-tools 0.5.4 → 0.5.6
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.
- package/CHANGELOG.md +25 -0
- package/README.md +1 -1
- package/bin/pnpm.cjs +3 -3
- package/bin/pnpm.js +3 -3
- package/dist/{chunk-EOY4SFRO.cjs → chunk-464YYKNC.cjs} +1 -1
- package/dist/{chunk-E7QLQFQS.js → chunk-DKJSL5MN.js} +1 -1
- package/dist/{chunk-U7UAWKHA.js → chunk-IGTMDPZL.js} +2 -2
- package/dist/{chunk-NM3PKH5T.cjs → chunk-TNPBYVPP.cjs} +2 -2
- package/dist/helpers/catalog.cjs +1 -1
- package/dist/helpers/catalog.js +1 -1
- package/dist/helpers/index.cjs +1 -1
- package/dist/helpers/index.js +1 -1
- package/dist/helpers/replace-deps-aliases.cjs +1 -1
- package/dist/helpers/replace-deps-aliases.js +1 -1
- package/dist/index.cjs +1 -1
- package/dist/index.js +1 -1
- package/package.json +5 -5
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,31 @@
|
|
|
2
2
|
|
|
3
3
|
# Changelog for Storm Ops - Pnpm Tools
|
|
4
4
|
|
|
5
|
+
## [0.5.5](https://github.com/storm-software/storm-ops/releases/tag/pnpm-tools%400.5.5) (2025-09-22)
|
|
6
|
+
|
|
7
|
+
### Miscellaneous
|
|
8
|
+
|
|
9
|
+
- **monorepo:** Update workspace package links
|
|
10
|
+
([09ad356e8](https://github.com/storm-software/storm-ops/commit/09ad356e8))
|
|
11
|
+
|
|
12
|
+
### Updated Dependencies
|
|
13
|
+
|
|
14
|
+
- Updated config-tools to 1.187.7
|
|
15
|
+
- Updated npm-tools to 0.4.12
|
|
16
|
+
|
|
17
|
+
## [0.5.4](https://github.com/storm-software/storm-ops/releases/tag/pnpm-tools%400.5.4) (2025-09-21)
|
|
18
|
+
|
|
19
|
+
### Miscellaneous
|
|
20
|
+
|
|
21
|
+
- **monorepo:** Update workspace package links
|
|
22
|
+
([91c9879c3](https://github.com/storm-software/storm-ops/commit/91c9879c3))
|
|
23
|
+
|
|
24
|
+
### Updated Dependencies
|
|
25
|
+
|
|
26
|
+
- Updated config-tools to 1.187.6
|
|
27
|
+
- Updated npm-tools to 0.4.11
|
|
28
|
+
- Updated config to 1.133.3
|
|
29
|
+
|
|
5
30
|
## [0.5.3](https://github.com/storm-software/storm-ops/releases/tag/pnpm-tools%400.5.3) (2025-09-21)
|
|
6
31
|
|
|
7
32
|
### Bug Fixes
|
package/README.md
CHANGED
|
@@ -21,7 +21,7 @@ This package is part of the <b>⚡Storm-Ops</b> monorepo. The Storm-Ops packages
|
|
|
21
21
|
|
|
22
22
|
<h3 align="center">💻 Visit <a href="https://stormsoftware.com" target="_blank">stormsoftware.com</a> to stay up to date with this developer</h3><br />
|
|
23
23
|
|
|
24
|
-
[](https://prettier.io/) [](http://nx.dev/) [](https://nextjs.org/) [](http://commitizen.github.io/cz-cli/)  [](https://fumadocs.vercel.app/) 
|
|
25
25
|
|
|
26
26
|
<!-- prettier-ignore-start -->
|
|
27
27
|
<!-- markdownlint-disable -->
|
package/bin/pnpm.cjs
CHANGED
|
@@ -122,7 +122,7 @@ async function upgradeCatalogPackage(packageName, options = {}) {
|
|
|
122
122
|
workspaceConfig
|
|
123
123
|
);
|
|
124
124
|
const origVersion = await (0, import_get_version.getVersion)(packageName, tag);
|
|
125
|
-
const version = `${prefix || ""}${origVersion.replace(/^[\^~><=*]
|
|
125
|
+
const version = `${prefix || ""}${origVersion.replace(/^[\^~><=*]+/g, "")}`;
|
|
126
126
|
if (version === catalog[packageName]) {
|
|
127
127
|
(0, import_console.writeTrace)(
|
|
128
128
|
`The version for package "${packageName}" is already up to date in the catalog: ${version}`,
|
|
@@ -130,9 +130,9 @@ async function upgradeCatalogPackage(packageName, options = {}) {
|
|
|
130
130
|
);
|
|
131
131
|
} else if (!(0, import_semver.valid)((0, import_semver.coerce)(catalog[packageName])) || (0, import_semver.coerce)(catalog[packageName]) && (0, import_semver.coerce)(version) && // eslint-disable-next-line @typescript-eslint/no-non-null-assertion
|
|
132
132
|
(0, import_semver.gt)((0, import_semver.coerce)(version), (0, import_semver.coerce)(catalog[packageName]))) {
|
|
133
|
-
catalog[packageName] = `${prefix || ""}${version}`;
|
|
133
|
+
catalog[packageName] = `${prefix || ""}${version.replace(/^[\^~><=*]+/g, "")}`;
|
|
134
134
|
(0, import_console.writeDebug)(
|
|
135
|
-
`Writing version ${
|
|
135
|
+
`Writing version ${catalog[packageName]} to catalog for "${packageName}" package`,
|
|
136
136
|
workspaceConfig
|
|
137
137
|
);
|
|
138
138
|
await setCatalog(catalog, workspaceRoot);
|
package/bin/pnpm.js
CHANGED
|
@@ -137,7 +137,7 @@ async function upgradeCatalogPackage(packageName, options = {}) {
|
|
|
137
137
|
workspaceConfig
|
|
138
138
|
);
|
|
139
139
|
const origVersion = await getVersion(packageName, tag);
|
|
140
|
-
const version = `${prefix || ""}${origVersion.replace(/^[\^~><=*]
|
|
140
|
+
const version = `${prefix || ""}${origVersion.replace(/^[\^~><=*]+/g, "")}`;
|
|
141
141
|
if (version === catalog[packageName]) {
|
|
142
142
|
writeTrace2(
|
|
143
143
|
`The version for package "${packageName}" is already up to date in the catalog: ${version}`,
|
|
@@ -145,9 +145,9 @@ async function upgradeCatalogPackage(packageName, options = {}) {
|
|
|
145
145
|
);
|
|
146
146
|
} else if (!valid(coerce(catalog[packageName])) || coerce(catalog[packageName]) && coerce(version) && // eslint-disable-next-line @typescript-eslint/no-non-null-assertion
|
|
147
147
|
gt(coerce(version), coerce(catalog[packageName]))) {
|
|
148
|
-
catalog[packageName] = `${prefix || ""}${version}`;
|
|
148
|
+
catalog[packageName] = `${prefix || ""}${version.replace(/^[\^~><=*]+/g, "")}`;
|
|
149
149
|
writeDebug(
|
|
150
|
-
`Writing version ${
|
|
150
|
+
`Writing version ${catalog[packageName]} to catalog for "${packageName}" package`,
|
|
151
151
|
workspaceConfig
|
|
152
152
|
);
|
|
153
153
|
await setCatalog(catalog, workspaceRoot);
|
|
@@ -1 +1 @@
|
|
|
1
|
-
'use strict';var
|
|
1
|
+
'use strict';var chunkTNPBYVPP_cjs=require('./chunk-TNPBYVPP.cjs'),chunkXDFF7DBD_cjs=require('./chunk-XDFF7DBD.cjs'),devkit=require('@nx/devkit'),fs=require('fs'),promises=require('fs/promises'),prettier=require('prettier');async function C(c=process.cwd(),i=chunkXDFF7DBD_cjs.e(c)){let l=chunkXDFF7DBD_cjs.d(c,"package.json"),m=await promises.readFile(l,"utf8");if(!m)throw new Error("No package.json file found in package root: "+c);let p=await chunkTNPBYVPP_cjs.b(i),r=JSON.parse(m),g=chunkXDFF7DBD_cjs.d(i,"pnpm-workspace.yaml");if(!fs.existsSync(g))return console.warn(`No \`pnpm-workspace.yaml\` file found in workspace root (searching in: ${g}). Skipping pnpm catalog read for now.`),r;if(!p){console.warn("No pnpm catalog found. Skipping dependencies replacement for now.");return}for(let a of ["dependencies","devDependencies","peerDependencies"]){let o=r[a];if(o){for(let e of Object.keys(o))if(o[e]==="catalog:"){if(!p)throw new Error(`Dependency ${e} is marked as \`catalog:\`, but no catalog exists in the workspace root's \`pnpm-workspace.yaml\` file.`);let t=p[e];if(!t)throw new Error("Missing pnpm catalog version for "+e);o[e]=t;}else if(o[e].startsWith("catalog:"))throw new Error("multiple named catalogs not supported")}}let n;try{n=devkit.readCachedProjectGraph();}catch{await devkit.createProjectGraphAsync(),n=devkit.readCachedProjectGraph();}let d={};n&&await Promise.all(Object.keys(n.nodes).map(async a=>{let o=n.nodes[a];if(o?.data.root){let e=chunkXDFF7DBD_cjs.d(i,o.data.root,"package.json");if(fs.existsSync(e)){let t=await promises.readFile(e,"utf8"),f=JSON.parse(t);f.private!==true&&(d[f.name]=f.version);}}}));for(let a of ["dependencies","devDependencies","peerDependencies"]){let o=r[a];if(o){for(let e of Object.keys(o))if(o[e].startsWith("workspace:"))if(d[e])o[e]=`^${d[e]}`;else throw new Error(`Workspace dependency ${e} not found in workspace packages.`)}}return promises.writeFile(l,await prettier.format(JSON.stringify(r),{parser:"json",proseWrap:"always",trailingComma:"none",tabWidth:2,semi:true,singleQuote:false,quoteProps:"as-needed",insertPragma:false,bracketSameLine:true,printWidth:80,bracketSpacing:true,arrowParens:"avoid",endOfLine:"lf",plugins:["prettier-plugin-pkg"]}))}exports.a=C;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
import {b}from'./chunk-
|
|
1
|
+
import {b}from'./chunk-IGTMDPZL.js';import {e,d}from'./chunk-JGJEVC4U.js';import {readCachedProjectGraph,createProjectGraphAsync}from'@nx/devkit';import {existsSync}from'node:fs';import {readFile,writeFile}from'node:fs/promises';import {format}from'prettier';async function $(c=process.cwd(),i=e(c)){let l=d(c,"package.json"),m=await readFile(l,"utf8");if(!m)throw new Error("No package.json file found in package root: "+c);let p=await b(i),r=JSON.parse(m),g=d(i,"pnpm-workspace.yaml");if(!existsSync(g))return console.warn(`No \`pnpm-workspace.yaml\` file found in workspace root (searching in: ${g}). Skipping pnpm catalog read for now.`),r;if(!p){console.warn("No pnpm catalog found. Skipping dependencies replacement for now.");return}for(let a of ["dependencies","devDependencies","peerDependencies"]){let o=r[a];if(o){for(let e of Object.keys(o))if(o[e]==="catalog:"){if(!p)throw new Error(`Dependency ${e} is marked as \`catalog:\`, but no catalog exists in the workspace root's \`pnpm-workspace.yaml\` file.`);let t=p[e];if(!t)throw new Error("Missing pnpm catalog version for "+e);o[e]=t;}else if(o[e].startsWith("catalog:"))throw new Error("multiple named catalogs not supported")}}let n;try{n=readCachedProjectGraph();}catch{await createProjectGraphAsync(),n=readCachedProjectGraph();}let d$1={};n&&await Promise.all(Object.keys(n.nodes).map(async a=>{let o=n.nodes[a];if(o?.data.root){let e=d(i,o.data.root,"package.json");if(existsSync(e)){let t=await readFile(e,"utf8"),f=JSON.parse(t);f.private!==true&&(d$1[f.name]=f.version);}}}));for(let a of ["dependencies","devDependencies","peerDependencies"]){let o=r[a];if(o){for(let e of Object.keys(o))if(o[e].startsWith("workspace:"))if(d$1[e])o[e]=`^${d$1[e]}`;else throw new Error(`Workspace dependency ${e} not found in workspace packages.`)}}return writeFile(l,await format(JSON.stringify(r),{parser:"json",proseWrap:"always",trailingComma:"none",tabWidth:2,semi:true,singleQuote:false,quoteProps:"as-needed",insertPragma:false,bracketSameLine:true,printWidth:80,bracketSpacing:true,arrowParens:"avoid",endOfLine:"lf",plugins:["prettier-plugin-pkg"]}))}export{$ as a};
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import {e,h,i,f,c,b,a}from'./chunk-JGJEVC4U.js';import {exec}from'node:child_process';import {valid,coerce,gt}from'semver';var d="latest";var l=d;async function P(){return new Promise((r,t)=>{exec("npm config get registry",(e,n,i)=>e?t(e):i?t(i):r(n.trim()));})}async function A(r,t=l,e={}){let{registry:n=await P()}=e;return new Promise((i,
|
|
2
|
-
File content: ${JSON.stringify(t,null,2)}`);}async function I(r=e(process.cwd())){let t=await $(r);if(!t)throw new Error("No catalog entries found in pnpm-workspace.yaml file");return t}async function O(r,t=e(process.cwd())){let e=await h(t);if(!e)throw new Error("No pnpm-workspace.yaml file found");e.catalog=Object.fromEntries(Object.entries(r).map(([n,i])=>[n,i.replaceAll('"',"").replaceAll("'","")])),await i(e,t);}async function Z(r,t={}){let{tag:e$1=l,prefix:n="^",throwIfMissingInCatalog:i=false,workspaceRoot:
|
|
1
|
+
import {e,h,i,f,c,b,a}from'./chunk-JGJEVC4U.js';import {exec}from'node:child_process';import {valid,coerce,gt}from'semver';var d="latest";var l=d;async function P(){return new Promise((r,t)=>{exec("npm config get registry",(e,n,i)=>e?t(e):i?t(i):r(n.trim()));})}async function A(r,t=l,e={}){let{registry:n=await P()}=e;return new Promise((i,a)=>{exec(`npm view ${r} version --registry=${n} --tag=${t}`,(s,o,f)=>s?a(s):f?a(f):i(o.trim()));})}async function $(r=e(process.cwd())){let t=await h(r);if(!t)throw new Error("No pnpm-workspace.yaml file found");if(t?.catalog)return Object.fromEntries(Object.entries(t.catalog).map(([e,n])=>[e,n.replaceAll('"',"").replaceAll("'","")]));console.warn(`No catalog found in pnpm-workspace.yaml file located in workspace root: ${r}
|
|
2
|
+
File content: ${JSON.stringify(t,null,2)}`);}async function I(r=e(process.cwd())){let t=await $(r);if(!t)throw new Error("No catalog entries found in pnpm-workspace.yaml file");return t}async function O(r,t=e(process.cwd())){let e=await h(t);if(!e)throw new Error("No pnpm-workspace.yaml file found");e.catalog=Object.fromEntries(Object.entries(r).map(([n,i])=>[n,i.replaceAll('"',"").replaceAll("'","")])),await i(e,t);}async function Z(r,t={}){let{tag:e$1=l,prefix:n="^",throwIfMissingInCatalog:i=false,workspaceRoot:a$1=e()}=t,s=await f(true,{workspaceRoot:a$1}),o=await I(a$1);if(!o)throw new Error("No catalog found");if(i===true&&!o[r])throw new Error(`Package "${r}" not found in catalog: ${JSON.stringify(o,null,2)}`);c(`Upgrading catalog entry for package "${r}" with tag "${e$1}"`,s);let f$1=await A(r,e$1),g=`${n||""}${f$1.replace(/^[\^~><=*]+/g,"")}`;g===o[r]?c(`The version for package "${r}" is already up to date in the catalog: ${g}`,s):!valid(coerce(o[r]))||coerce(o[r])&&coerce(g)&>(coerce(g),coerce(o[r]))?(o[r]=`${n||""}${g.replace(/^[\^~><=*]+/g,"")}`,b(`Writing version ${o[r]} to catalog for "${r}" package`,s),await O(o,a$1)):a(`The current version "${o[r]}" for package "${r}" is greater than or equal to the version "${g}" fetched from the npm registry with tag "${e$1}". No update performed.`,s);}export{$ as a,I as b,O as c,Z as d};
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
'use strict';var chunkXDFF7DBD_cjs=require('./chunk-XDFF7DBD.cjs'),child_process=require('child_process'),semver=require('semver');var E="latest";var l=E;async function d(){return new Promise((r,t)=>{child_process.exec("npm config get registry",(e,n,i)=>e?t(e):i?t(i):r(n.trim()));})}async function P(r,t=l,e={}){let{registry:n=await d()}=e;return new Promise((i,
|
|
2
|
-
File content: ${JSON.stringify(t,null,2)}`);}async function $(r=chunkXDFF7DBD_cjs.e(process.cwd())){let t=await M(r);if(!t)throw new Error("No catalog entries found in pnpm-workspace.yaml file");return t}async function I(r,t=chunkXDFF7DBD_cjs.e(process.cwd())){let e=await chunkXDFF7DBD_cjs.h(t);if(!e)throw new Error("No pnpm-workspace.yaml file found");e.catalog=Object.fromEntries(Object.entries(r).map(([n,i])=>[n,i.replaceAll('"',"").replaceAll("'","")])),await chunkXDFF7DBD_cjs.i(e,t);}async function Q(r,t={}){let{tag:e=l,prefix:n="^",throwIfMissingInCatalog:i=false,workspaceRoot:
|
|
1
|
+
'use strict';var chunkXDFF7DBD_cjs=require('./chunk-XDFF7DBD.cjs'),child_process=require('child_process'),semver=require('semver');var E="latest";var l=E;async function d(){return new Promise((r,t)=>{child_process.exec("npm config get registry",(e,n,i)=>e?t(e):i?t(i):r(n.trim()));})}async function P(r,t=l,e={}){let{registry:n=await d()}=e;return new Promise((i,a)=>{child_process.exec(`npm view ${r} version --registry=${n} --tag=${t}`,(s,o,f)=>s?a(s):f?a(f):i(o.trim()));})}async function M(r=chunkXDFF7DBD_cjs.e(process.cwd())){let t=await chunkXDFF7DBD_cjs.h(r);if(!t)throw new Error("No pnpm-workspace.yaml file found");if(t?.catalog)return Object.fromEntries(Object.entries(t.catalog).map(([e,n])=>[e,n.replaceAll('"',"").replaceAll("'","")]));console.warn(`No catalog found in pnpm-workspace.yaml file located in workspace root: ${r}
|
|
2
|
+
File content: ${JSON.stringify(t,null,2)}`);}async function $(r=chunkXDFF7DBD_cjs.e(process.cwd())){let t=await M(r);if(!t)throw new Error("No catalog entries found in pnpm-workspace.yaml file");return t}async function I(r,t=chunkXDFF7DBD_cjs.e(process.cwd())){let e=await chunkXDFF7DBD_cjs.h(t);if(!e)throw new Error("No pnpm-workspace.yaml file found");e.catalog=Object.fromEntries(Object.entries(r).map(([n,i])=>[n,i.replaceAll('"',"").replaceAll("'","")])),await chunkXDFF7DBD_cjs.i(e,t);}async function Q(r,t={}){let{tag:e=l,prefix:n="^",throwIfMissingInCatalog:i=false,workspaceRoot:a=chunkXDFF7DBD_cjs.e()}=t,s=await chunkXDFF7DBD_cjs.f(true,{workspaceRoot:a}),o=await $(a);if(!o)throw new Error("No catalog found");if(i===true&&!o[r])throw new Error(`Package "${r}" not found in catalog: ${JSON.stringify(o,null,2)}`);chunkXDFF7DBD_cjs.c(`Upgrading catalog entry for package "${r}" with tag "${e}"`,s);let f=await P(r,e),g=`${n||""}${f.replace(/^[\^~><=*]+/g,"")}`;g===o[r]?chunkXDFF7DBD_cjs.c(`The version for package "${r}" is already up to date in the catalog: ${g}`,s):!semver.valid(semver.coerce(o[r]))||semver.coerce(o[r])&&semver.coerce(g)&&semver.gt(semver.coerce(g),semver.coerce(o[r]))?(o[r]=`${n||""}${g.replace(/^[\^~><=*]+/g,"")}`,chunkXDFF7DBD_cjs.b(`Writing version ${o[r]} to catalog for "${r}" package`,s),await I(o,a)):chunkXDFF7DBD_cjs.a(`The current version "${o[r]}" for package "${r}" is greater than or equal to the version "${g}" fetched from the npm registry with tag "${e}". No update performed.`,s);}exports.a=M;exports.b=$;exports.c=I;exports.d=Q;
|
package/dist/helpers/catalog.cjs
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
'use strict';var
|
|
1
|
+
'use strict';var chunkTNPBYVPP_cjs=require('../chunk-TNPBYVPP.cjs');require('../chunk-XDFF7DBD.cjs');Object.defineProperty(exports,"getCatalog",{enumerable:true,get:function(){return chunkTNPBYVPP_cjs.b}});Object.defineProperty(exports,"getCatalogSafe",{enumerable:true,get:function(){return chunkTNPBYVPP_cjs.a}});Object.defineProperty(exports,"setCatalog",{enumerable:true,get:function(){return chunkTNPBYVPP_cjs.c}});Object.defineProperty(exports,"upgradeCatalogPackage",{enumerable:true,get:function(){return chunkTNPBYVPP_cjs.d}});
|
package/dist/helpers/catalog.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export{b as getCatalog,a as getCatalogSafe,c as setCatalog,d as upgradeCatalogPackage}from'../chunk-
|
|
1
|
+
export{b as getCatalog,a as getCatalogSafe,c as setCatalog,d as upgradeCatalogPackage}from'../chunk-IGTMDPZL.js';import'../chunk-JGJEVC4U.js';
|
package/dist/helpers/index.cjs
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
'use strict';require('../chunk-QNTSKZUU.cjs');var
|
|
1
|
+
'use strict';require('../chunk-QNTSKZUU.cjs');var chunk464YYKNC_cjs=require('../chunk-464YYKNC.cjs'),chunkTNPBYVPP_cjs=require('../chunk-TNPBYVPP.cjs'),chunkXDFF7DBD_cjs=require('../chunk-XDFF7DBD.cjs');Object.defineProperty(exports,"replaceDepsAliases",{enumerable:true,get:function(){return chunk464YYKNC_cjs.a}});Object.defineProperty(exports,"getCatalog",{enumerable:true,get:function(){return chunkTNPBYVPP_cjs.b}});Object.defineProperty(exports,"getCatalogSafe",{enumerable:true,get:function(){return chunkTNPBYVPP_cjs.a}});Object.defineProperty(exports,"setCatalog",{enumerable:true,get:function(){return chunkTNPBYVPP_cjs.c}});Object.defineProperty(exports,"upgradeCatalogPackage",{enumerable:true,get:function(){return chunkTNPBYVPP_cjs.d}});Object.defineProperty(exports,"getPnpmWorkspaceFilePath",{enumerable:true,get:function(){return chunkXDFF7DBD_cjs.g}});Object.defineProperty(exports,"readPnpmWorkspaceFile",{enumerable:true,get:function(){return chunkXDFF7DBD_cjs.h}});Object.defineProperty(exports,"writePnpmWorkspaceFile",{enumerable:true,get:function(){return chunkXDFF7DBD_cjs.i}});
|
package/dist/helpers/index.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
import'../chunk-GV6YH6UO.js';export{a as replaceDepsAliases}from'../chunk-
|
|
1
|
+
import'../chunk-GV6YH6UO.js';export{a as replaceDepsAliases}from'../chunk-DKJSL5MN.js';export{b as getCatalog,a as getCatalogSafe,c as setCatalog,d as upgradeCatalogPackage}from'../chunk-IGTMDPZL.js';export{g as getPnpmWorkspaceFilePath,h as readPnpmWorkspaceFile,i as writePnpmWorkspaceFile}from'../chunk-JGJEVC4U.js';
|
|
@@ -1 +1 @@
|
|
|
1
|
-
'use strict';var
|
|
1
|
+
'use strict';var chunk464YYKNC_cjs=require('../chunk-464YYKNC.cjs');require('../chunk-TNPBYVPP.cjs'),require('../chunk-XDFF7DBD.cjs');Object.defineProperty(exports,"replaceDepsAliases",{enumerable:true,get:function(){return chunk464YYKNC_cjs.a}});
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export{a as replaceDepsAliases}from'../chunk-
|
|
1
|
+
export{a as replaceDepsAliases}from'../chunk-DKJSL5MN.js';import'../chunk-IGTMDPZL.js';import'../chunk-JGJEVC4U.js';
|
package/dist/index.cjs
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
'use strict';require('./chunk-SFZRYJZ2.cjs'),require('./chunk-QNTSKZUU.cjs');var
|
|
1
|
+
'use strict';require('./chunk-SFZRYJZ2.cjs'),require('./chunk-QNTSKZUU.cjs');var chunk464YYKNC_cjs=require('./chunk-464YYKNC.cjs'),chunkTNPBYVPP_cjs=require('./chunk-TNPBYVPP.cjs'),chunkXDFF7DBD_cjs=require('./chunk-XDFF7DBD.cjs');Object.defineProperty(exports,"replaceDepsAliases",{enumerable:true,get:function(){return chunk464YYKNC_cjs.a}});Object.defineProperty(exports,"getCatalog",{enumerable:true,get:function(){return chunkTNPBYVPP_cjs.b}});Object.defineProperty(exports,"getCatalogSafe",{enumerable:true,get:function(){return chunkTNPBYVPP_cjs.a}});Object.defineProperty(exports,"setCatalog",{enumerable:true,get:function(){return chunkTNPBYVPP_cjs.c}});Object.defineProperty(exports,"upgradeCatalogPackage",{enumerable:true,get:function(){return chunkTNPBYVPP_cjs.d}});Object.defineProperty(exports,"getPnpmWorkspaceFilePath",{enumerable:true,get:function(){return chunkXDFF7DBD_cjs.g}});Object.defineProperty(exports,"readPnpmWorkspaceFile",{enumerable:true,get:function(){return chunkXDFF7DBD_cjs.h}});Object.defineProperty(exports,"writePnpmWorkspaceFile",{enumerable:true,get:function(){return chunkXDFF7DBD_cjs.i}});
|
package/dist/index.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
import'./chunk-GGNOJ77I.js';import'./chunk-GV6YH6UO.js';export{a as replaceDepsAliases}from'./chunk-
|
|
1
|
+
import'./chunk-GGNOJ77I.js';import'./chunk-GV6YH6UO.js';export{a as replaceDepsAliases}from'./chunk-DKJSL5MN.js';export{b as getCatalog,a as getCatalogSafe,c as setCatalog,d as upgradeCatalogPackage}from'./chunk-IGTMDPZL.js';export{g as getPnpmWorkspaceFilePath,h as readPnpmWorkspaceFile,i as writePnpmWorkspaceFile}from'./chunk-JGJEVC4U.js';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@storm-software/pnpm-tools",
|
|
3
|
-
"version": "0.5.
|
|
3
|
+
"version": "0.5.6",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "A set of [pnpm](https://pnpm.io/) plugins and utilities for managing workspace packages/dependencies.",
|
|
6
6
|
"repository": {
|
|
@@ -89,9 +89,9 @@
|
|
|
89
89
|
"dependencies": {
|
|
90
90
|
"@pnpm/plugin-better-defaults": "^0.2.1",
|
|
91
91
|
"@pnpm/plugin-esm-node-path": "^0.1.2",
|
|
92
|
-
"@storm-software/config": "^1.133.
|
|
93
|
-
"@storm-software/config-tools": "^1.187.
|
|
94
|
-
"@storm-software/npm-tools": "^0.4.
|
|
92
|
+
"@storm-software/config": "^1.133.4",
|
|
93
|
+
"@storm-software/config-tools": "^1.187.8",
|
|
94
|
+
"@storm-software/npm-tools": "^0.4.13",
|
|
95
95
|
"commander": "^12.1.0",
|
|
96
96
|
"defu": "6.1.4",
|
|
97
97
|
"prettier": "^3.5.1",
|
|
@@ -105,5 +105,5 @@
|
|
|
105
105
|
"tsup": "8.4.0"
|
|
106
106
|
},
|
|
107
107
|
"publishConfig": { "access": "public" },
|
|
108
|
-
"gitHead": "
|
|
108
|
+
"gitHead": "c450e05dc6b3593507d81704a07cc2c8b64770c6"
|
|
109
109
|
}
|