@flow-scanner/lightning-flow-scanner-core 6.4.0 → 6.4.1
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/CONTRIBUTING.md +11 -11
- package/LICENSE.md +2 -2
- package/package.json +7 -9
package/CONTRIBUTING.md
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
## Contributing Guidelines
|
|
2
2
|
|
|
3
|
-
Since
|
|
3
|
+
Since 20201, the _Lightning Flow Scanner_ has grown from its roots as VS Code tool to empower Salesforce Developers across six free and open-source platforms—from developer tools to native Salesforce App—delivering a unified experience for robust static analysis of Flows. Our dedicated community has shared their expertise to deepen understanding of Flow optimization. Your support can amplify our impact. Here’s how you can contribute to the [Flow Scanner](https://github.com/Flow-Scanner) project:
|
|
4
4
|
|
|
5
|
-
- ⭐
|
|
6
|
-
- 📢
|
|
7
|
-
- 💬
|
|
8
|
-
- 💻
|
|
9
|
-
- 🤝 [
|
|
5
|
+
- ⭐ Star your favorite repositories.
|
|
6
|
+
- 📢 Share our work with your network.
|
|
7
|
+
- 💬 Share feedback to help us improve.
|
|
8
|
+
- 💻 Contribute code by submitting pull requests.
|
|
9
|
+
- 🤝 [Join as a member](https://register.lightningflowscanner.org/) to connect.
|
|
10
10
|
|
|
11
11
|
### I have a Question/Feedback
|
|
12
12
|
|
|
@@ -22,10 +22,10 @@ If it's more specific like a bug or a new feature—use [GitHub Issues](https://
|
|
|
22
22
|
|
|
23
23
|
###### Platforms - For issues or requests related to specific platforms, use the appropriate link below:
|
|
24
24
|
|
|
25
|
-
- [CLI Plugin](https://github.com/Flow-Scanner/lightning-flow-scanner-cli/issues
|
|
26
|
-
- [Copado Plugin](https://github.com/Flow-Scanner/lightning-flow-scanner-copado/issues
|
|
27
|
-
- [GitHub Action](https://github.com/Flow-Scanner/lightning-flow-scanner-action/issues
|
|
28
|
-
- [Salesforce App](https://github.com/Flow-Scanner/lightning-flow-scanner-app/issues
|
|
29
|
-
- [VS Code/Code Builder](https://github.com/Flow-Scanner/lightning-flow-scanner-vsx/issues
|
|
25
|
+
- [CLI Plugin](https://github.com/Flow-Scanner/lightning-flow-scanner-cli/issues)
|
|
26
|
+
- [Copado Plugin](https://github.com/Flow-Scanner/lightning-flow-scanner-copado/issues)
|
|
27
|
+
- [GitHub Action](https://github.com/Flow-Scanner/lightning-flow-scanner-action/issues)
|
|
28
|
+
- [Salesforce App](https://github.com/Flow-Scanner/lightning-flow-scanner-app/issues)
|
|
29
|
+
- [VS Code/Code Builder](https://github.com/Flow-Scanner/lightning-flow-scanner-vsx/issues)
|
|
30
30
|
|
|
31
31
|
###### Thank you
|
package/LICENSE.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
MIT License
|
|
2
2
|
|
|
3
|
-
Copyright (c)
|
|
3
|
+
Copyright (c) 2020
|
|
4
4
|
|
|
5
5
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
6
|
of this software and associated documentation files (the "Software"), to deal
|
|
@@ -18,4 +18,4 @@ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
|
18
18
|
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
19
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
20
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
-
SOFTWARE.
|
|
21
|
+
SOFTWARE.
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@flow-scanner/lightning-flow-scanner-core",
|
|
3
|
-
"description": "A lightweight
|
|
4
|
-
"version": "6.4.
|
|
3
|
+
"description": "A lightweight engine for Flow metadata in Node.js, and browser environments. Assess and enhance Salesforce Flow automations for best practices, security, governor limits, and performance issues.",
|
|
4
|
+
"version": "6.4.1",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"types": "index.d.ts",
|
|
7
7
|
"engines": {
|
|
@@ -73,17 +73,15 @@
|
|
|
73
73
|
"node": "20.13.1"
|
|
74
74
|
},
|
|
75
75
|
"keywords": [
|
|
76
|
-
"
|
|
76
|
+
"best-practices",
|
|
77
|
+
"code-quality",
|
|
77
78
|
"flow",
|
|
79
|
+
"flow-builder",
|
|
78
80
|
"linter",
|
|
79
|
-
"salesforce-flow",
|
|
80
81
|
"flow-linter",
|
|
81
82
|
"flow-scanner",
|
|
82
|
-
"
|
|
83
|
-
"code-quality",
|
|
83
|
+
"salesforce",
|
|
84
84
|
"security-scanner",
|
|
85
|
-
"
|
|
86
|
-
"salesforce-devops",
|
|
87
|
-
"best-practices"
|
|
85
|
+
"static-analysis"
|
|
88
86
|
]
|
|
89
87
|
}
|