no-mistakes 0.37.1 → 0.37.2
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/index.js +53 -6
- package/package.json +1 -1
package/index.js
CHANGED
|
@@ -58,9 +58,56 @@ async function version() {
|
|
|
58
58
|
return native.version();
|
|
59
59
|
}
|
|
60
60
|
|
|
61
|
-
module.exports =
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
61
|
+
module.exports.createWorkflowTopologyIndex = createWorkflowTopologyIndex;
|
|
62
|
+
module.exports.version = version;
|
|
63
|
+
module.exports.analyzeProject = jsonApis.analyzeProject;
|
|
64
|
+
module.exports.callSites = jsonApis.callSites;
|
|
65
|
+
module.exports.check = jsonApis.check;
|
|
66
|
+
module.exports.ciEnv = jsonApis.ciEnv;
|
|
67
|
+
module.exports.ciImpact = jsonApis.ciImpact;
|
|
68
|
+
module.exports.ciTopology = jsonApis.ciTopology;
|
|
69
|
+
module.exports.dataPw = jsonApis.dataPw;
|
|
70
|
+
module.exports.deadExports = jsonApis.deadExports;
|
|
71
|
+
module.exports.dependencies = jsonApis.dependencies;
|
|
72
|
+
module.exports.dependents = jsonApis.dependents;
|
|
73
|
+
module.exports.effects = jsonApis.effects;
|
|
74
|
+
module.exports.exportsOf = jsonApis.exportsOf;
|
|
75
|
+
module.exports.fetches = jsonApis.fetches;
|
|
76
|
+
module.exports.impactedChecks = jsonApis.impactedChecks;
|
|
77
|
+
module.exports.importUsages = jsonApis.importUsages;
|
|
78
|
+
module.exports.importers = jsonApis.importers;
|
|
79
|
+
module.exports.infraOutputs = jsonApis.infraOutputs;
|
|
80
|
+
module.exports.infraResourceRefs = jsonApis.infraResourceRefs;
|
|
81
|
+
module.exports.infraTestFor = jsonApis.infraTestFor;
|
|
82
|
+
module.exports.lockfileDiff = jsonApis.lockfileDiff;
|
|
83
|
+
module.exports.playwrightCheck = jsonApis.playwrightCheck;
|
|
84
|
+
module.exports.playwrightEdges = jsonApis.playwrightEdges;
|
|
85
|
+
module.exports.playwrightRelated = jsonApis.playwrightRelated;
|
|
86
|
+
module.exports.playwrightTests = jsonApis.playwrightTests;
|
|
87
|
+
module.exports.reactAnalyze = jsonApis.reactAnalyze;
|
|
88
|
+
module.exports.reactCheck = jsonApis.reactCheck;
|
|
89
|
+
module.exports.reactUsages = jsonApis.reactUsages;
|
|
90
|
+
module.exports.registryExtension = jsonApis.registryExtension;
|
|
91
|
+
module.exports.related = jsonApis.related;
|
|
92
|
+
module.exports.resolveCheck = jsonApis.resolveCheck;
|
|
93
|
+
module.exports.rscCallers = jsonApis.rscCallers;
|
|
94
|
+
module.exports.swiftImporters = jsonApis.swiftImporters;
|
|
95
|
+
module.exports.swiftTestTargets = jsonApis.swiftTestTargets;
|
|
96
|
+
module.exports.symbols = jsonApis.symbols;
|
|
97
|
+
module.exports.testsComment = planning.testsComment;
|
|
98
|
+
module.exports.testsGraphMermaid = planning.testsGraphMermaid;
|
|
99
|
+
module.exports.flow = planning.flow;
|
|
100
|
+
module.exports.queueCheck = planning.queueCheck;
|
|
101
|
+
module.exports.queueEdges = planning.queueEdges;
|
|
102
|
+
module.exports.queueRelated = planning.queueRelated;
|
|
103
|
+
module.exports.queues = planning.queues;
|
|
104
|
+
module.exports.serverContracts = planning.serverContracts;
|
|
105
|
+
module.exports.serverRouteEdges = planning.serverRouteEdges;
|
|
106
|
+
module.exports.serverRouteList = planning.serverRouteList;
|
|
107
|
+
module.exports.serverRouteRelated = planning.serverRouteRelated;
|
|
108
|
+
module.exports.serverRoutes = planning.serverRoutes;
|
|
109
|
+
module.exports.testsGraph = planning.testsGraph;
|
|
110
|
+
module.exports.testsImpact = planning.testsImpact;
|
|
111
|
+
module.exports.testsPlan = planning.testsPlan;
|
|
112
|
+
module.exports.testsTargets = planning.testsTargets;
|
|
113
|
+
module.exports.testsWhy = planning.testsWhy;
|