Skip to content

Commit cc48e04

Browse files
RubenHalmanclaude
authored andcommitted
patch(cli): fix workspace:* resolution on publish and bump to 6.19.3
Switches publish:npm script from npm publish to pnpm publish so that workspace:* dependencies are automatically resolved to actual version numbers before packing. Bumps version to 6.19.3 to supersede the broken 6.19.2 release which published workspace:* literally. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
1 parent 67b1637 commit cc48e04

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

packages/cli/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "lightning-flow-scanner",
3-
"version": "6.19.2",
3+
"version": "6.19.3",
44
"bugs": "https://github.com/Flow-Scanner/lightning-flow-scanner/issues",
55
"description": "A Salesforce CLI plugin for analysis and optimization of Salesforce Flow. Scans metadata for 20+ issues such as hardcoded IDs, unsafe contexts, inefficient SOQL/DML operations, recursion risks, and missing fault handling. Supports auto-fixes, rule configurations, and CI/CD integration to help users maintain secure and reliable Flow automations.",
66
"dependencies": {
@@ -83,7 +83,7 @@
8383
"version:patch": "pnpm version patch --no-git-tag-version",
8484
"version:minor": "pnpm version minor --no-git-tag-version",
8585
"version:major": "pnpm version major --no-git-tag-version",
86-
"publish:npm": "npm run prepack && npm publish"
86+
"publish:npm": "npm run prepack && pnpm publish --no-git-checks"
8787
},
8888
"type": "module",
8989
"keywords": [

0 commit comments

Comments
 (0)