Skip to content

Commit 4acb544

Browse files
committed
monorepo release
1 parent 6caf31e commit 4acb544

File tree

4 files changed

+16
-28
lines changed

4 files changed

+16
-28
lines changed

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
node_modules/
22
*.log
33
.DS_Store
4-
.turbo
4+
.turbo
5+
packages/cli/LICENSE.md

packages/cli/LICENSE.md

Lines changed: 0 additions & 21 deletions
This file was deleted.

packages/cli/package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/cli/package.json

Lines changed: 12 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "lightning-flow-scanner",
3-
"version": "6.5.0",
3+
"version": "6.6.0",
44
"bugs": "https://github.com/Flow-Scanner/lightning-flow-scanner-cli/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": {
@@ -47,7 +47,9 @@
4747
"/lib",
4848
"/messages",
4949
"/npm-shrinkwrap.json",
50-
"/oclif.manifest.json"
50+
"/oclif.manifest.json",
51+
"/README.md",
52+
"/LICENSE.md"
5153
],
5254
"homepage": "https://cli.lightningflowscanner.org",
5355
"license": "AGPL-3.0",
@@ -73,10 +75,16 @@
7375
},
7476
"scripts": {
7577
"build": "rimraf lib && tsc -b && oclif manifest && oclif readme",
76-
"prepack": "npm run build",
78+
"prepack": "npm run copy:license && npm run build",
79+
"postpack": "rimraf LICENSE.md",
80+
"copy:license": "node -e \"require('fs').copyFileSync('../../LICENSE.md', 'LICENSE.md')\"",
7781
"test": "mocha -r ts-node/register test/**/*.test.ts",
7882
"lfs:link": "npm link lightning-flow-scanner-core && npm pack && sf plugins link",
79-
"clean": "rimraf lib"
83+
"clean": "rimraf lib",
84+
"version:patch": "npm version patch",
85+
"version:minor": "npm version minor",
86+
"version:major": "npm version major",
87+
"publish:npm": "npm run prepack && npm publish"
8088
},
8189
"type": "module",
8290
"keywords": [

0 commit comments

Comments
 (0)