@nasl/cli 0.1.11 → 0.1.12

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.
@@ -37441,6 +37441,9 @@ function extractDeps(content) {
37441
37441
  else if (/\.enums\.(\w+)\.(\w+)/.test(dep)) {
37442
37442
  dep = dep.replace(/\.enums\.(\w+).+$/, '.enums.$1');
37443
37443
  }
37444
+ else if (/app\.dataSources\.\w+\.entities\.\w+\.\w+$/.test(dep)) {
37445
+ continue; // 应该是写法有问题,跳过让后面的 checker 做检查
37446
+ }
37444
37447
  dep = `${dep}.${dep.includes('.views.') ? 'tsx' : 'ts'}`;
37445
37448
  deps.add(dep);
37446
37449
  }
@@ -37677,7 +37680,7 @@ async function tryCompile(entry, options) {
37677
37680
  }
37678
37681
  }
37679
37682
 
37680
- var version = "0.1.11";
37683
+ var version = "0.1.12";
37681
37684
  var pkg = {
37682
37685
  version: version};
37683
37686