@drzl/analyzer 0.1.0 → 0.3.0

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/dist/index.cjs CHANGED
@@ -226,7 +226,7 @@ var SchemaAnalyzer = class {
226
226
  const full = path.resolve(process.cwd(), this.schemaPath);
227
227
  try {
228
228
  await fs.access(full);
229
- } catch (e) {
229
+ } catch (_e) {
230
230
  issues.push({
231
231
  code: "DRZL_ANL_NOFILE",
232
232
  level: "error",
package/dist/index.js CHANGED
@@ -190,7 +190,7 @@ var SchemaAnalyzer = class {
190
190
  const full = path.resolve(process.cwd(), this.schemaPath);
191
191
  try {
192
192
  await fs.access(full);
193
- } catch (e) {
193
+ } catch (_e) {
194
194
  issues.push({
195
195
  code: "DRZL_ANL_NOFILE",
196
196
  level: "error",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@drzl/analyzer",
3
- "version": "0.1.0",
3
+ "version": "0.3.0",
4
4
  "private": false,
5
5
  "license": "Apache-2.0",
6
6
  "type": "module",