@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.
package/dist/bin/nasl.mjs CHANGED
@@ -37529,6 +37529,9 @@ function extractDeps(content) {
37529
37529
  else if (/\.enums\.(\w+)\.(\w+)/.test(dep)) {
37530
37530
  dep = dep.replace(/\.enums\.(\w+).+$/, '.enums.$1');
37531
37531
  }
37532
+ else if (/app\.dataSources\.\w+\.entities\.\w+\.\w+$/.test(dep)) {
37533
+ continue; // 应该是写法有问题,跳过让后面的 checker 做检查
37534
+ }
37532
37535
  dep = `${dep}.${dep.includes('.views.') ? 'tsx' : 'ts'}`;
37533
37536
  deps.add(dep);
37534
37537
  }
@@ -38045,7 +38048,7 @@ async function build(entry, options) {
38045
38048
  await justExecCommandSync(webpackArgs, outDir);
38046
38049
  }
38047
38050
 
38048
- var version = "0.1.11";
38051
+ var version = "0.1.12";
38049
38052
  var pkg = {
38050
38053
  version: version};
38051
38054