Skip to content
This repository was archived by the owner on Oct 7, 2025. It is now read-only.

Commit ec07288

Browse files
authored
Merge pull request #92 from Lightning-Flow-Scanner/v3
V3
2 parents 7979d4d + d582fbf commit ec07288

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

70 files changed

+9197
-33277
lines changed

.eslintrc.json

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,8 @@
1717
"semi": "off"
1818
},
1919
"ignorePatterns": [
20-
"**/*.d.ts",
21-
"**/*ts"
20+
"out",
21+
"dist",
22+
"**/*.d.ts"
2223
]
23-
}
24+
}

.gitignore

Lines changed: 6 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,7 @@
1-
.vscode-test
2-
node_modules/
3-
/dist
41
out
5-
.idea
6-
vscode-test.iml
7-
/dist/
8-
salesforce-flow-control-2.0.0.vsix
9-
/lightningflowscan-vsce.iml
10-
/lightning-flow-scanner-vsce.iml
2+
dist
3+
node_modules
4+
.vscode-test/
5+
*.vsix
6+
.DS_Store
7+
yarn-error.logs

.vscode/extensions.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
// See http://go.microsoft.com/fwlink/?LinkId=827846
3+
// for the documentation about the extensions.json format
4+
"recommendations": ["dbaeumer.vscode-eslint", "amodio.tsl-problem-matcher", "ms-vscode.extension-test-runner"]
5+
}

.vscode/settings.json

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
// Place your settings in this file to overwrite default and user settings.
2+
{
3+
"files.exclude": {
4+
"out": false, // set this to true to hide the "out" folder with the compiled JS files
5+
"dist": false // set this to true to hide the "dist" folder with the compiled JS files
6+
},
7+
"search.exclude": {
8+
"out": true, // set this to false to include "out" folder in search results
9+
"dist": true // set this to false to include "dist" folder in search results
10+
},
11+
// Turn off tsc task auto detection since we have the necessary tasks as npm scripts
12+
"typescript.tsc.autoDetect": "off",
13+
"typescript.tsdk": "node_modules/typescript/lib"
14+
}

.vscode/tasks.json

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
// See https://go.microsoft.com/fwlink/?LinkId=733558
2+
// for the documentation about the tasks.json format
3+
{
4+
"version": "2.0.0",
5+
"tasks": [
6+
{
7+
"type": "npm",
8+
"script": "watch",
9+
"problemMatcher": "$ts-webpack-watch",
10+
"isBackground": true,
11+
"presentation": {
12+
"reveal": "never",
13+
"group": "watchers"
14+
},
15+
"group": {
16+
"kind": "build",
17+
"isDefault": true
18+
}
19+
},
20+
{
21+
"type": "npm",
22+
"script": "watch-tests",
23+
"problemMatcher": "$tsc-watch",
24+
"isBackground": true,
25+
"presentation": {
26+
"reveal": "never",
27+
"group": "watchers"
28+
},
29+
"group": "build"
30+
},
31+
{
32+
"label": "tasks: watch-tests",
33+
"dependsOn": [
34+
"npm: watch",
35+
"npm: watch-tests"
36+
],
37+
"problemMatcher": []
38+
}
39+
]
40+
}

.vscodeignore

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,9 @@
11
.vscode/**
22
.vscode-test/**
3-
out/test/**
4-
test/**
53
src/**
6-
docs/**
7-
**/*.map
4+
webviews/**
85
.gitignore
9-
tsconfig.json
10-
eslintrc.json
116
vsc-extension-quickstart.md
12-
azure-pipelines.yml
13-
.yarnrc
147
**/tsconfig.json
158
**/.eslintrc.json
169
**/*.map

.yarn/install-state.gz

-676 KB
Binary file not shown.

.yarnrc.yml

Lines changed: 0 additions & 1 deletion
This file was deleted.

.yvmrc

Lines changed: 0 additions & 1 deletion
This file was deleted.

docs/CHANGELOG.md renamed to CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Change Log
22

3-
All notable changes to the "flowmerge" extension will be documented in this file.
3+
All notable changes to the "lightning-flow-scanner" extension will be documented in this file.
44

55
Check [Keep a Changelog](http://keepachangelog.com/) for recommendations on how to structure this file.
66

0 commit comments

Comments
 (0)