@elmeragroup/internal 0.1.1-canary.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/LICENSE +21 -0
- package/NOTICE +62 -0
- package/README.md +56 -0
- package/dist/api-artifacts/model.d.mts +3 -0
- package/dist/api-artifacts/model.mjs +2 -0
- package/dist/api-extractor.d.mts +3 -0
- package/dist/api-extractor.mjs +3 -0
- package/dist/dist-CcEC-Qb_.mjs +558 -0
- package/dist/dist-_NayZK35.mjs +7760 -0
- package/dist/errors-ByXSCE94.mjs +29 -0
- package/dist/index-C9vKRif1.d.mts +815 -0
- package/dist/index.d.mts +53 -0
- package/dist/index.mjs +15 -0
- package/dist/model-1dzGdHi8.d.mts +35 -0
- package/dist/oxlint/anti-slop.d.mts +6 -0
- package/dist/oxlint/anti-slop.mjs +1588 -0
- package/dist/oxlint.d.mts +6 -0
- package/dist/oxlint.mjs +2029 -0
- package/package.json +72 -0
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
|
|
2
|
+
//#region ../api-artifacts/dist/errors.js
|
|
3
|
+
var ApiArtifactsError = class extends Error {
|
|
4
|
+
problems;
|
|
5
|
+
constructor(problems) {
|
|
6
|
+
super(`API artifact generation failed:\n${problems.join("\n")}`);
|
|
7
|
+
this.problems = problems;
|
|
8
|
+
this.name = "ApiArtifactsError";
|
|
9
|
+
}
|
|
10
|
+
};
|
|
11
|
+
var ApiArtifactsDriftError = class extends Error {
|
|
12
|
+
files;
|
|
13
|
+
constructor(files) {
|
|
14
|
+
super(`API artifacts are missing or stale:\n${files.join("\n")}`);
|
|
15
|
+
this.files = files;
|
|
16
|
+
this.name = "ApiArtifactsDriftError";
|
|
17
|
+
}
|
|
18
|
+
};
|
|
19
|
+
var ProblemLog = class {
|
|
20
|
+
entries = [];
|
|
21
|
+
add(problem) {
|
|
22
|
+
this.entries.push(problem);
|
|
23
|
+
}
|
|
24
|
+
get problems() {
|
|
25
|
+
return this.entries;
|
|
26
|
+
}
|
|
27
|
+
};
|
|
28
|
+
//#endregion
|
|
29
|
+
export { ApiArtifactsError as n, ProblemLog as r, ApiArtifactsDriftError as t };
|