fbp-manifest
Advanced tools
Comparing version 0.2.6 to 0.2.7
{ | ||
"name": "fbp-manifest", | ||
"version": "0.2.6", | ||
"version": "0.2.7", | ||
"description": "Flow-Based Programming Manifest tools", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
@@ -86,2 +86,4 @@ Flow-Based Programming Manifest Tools | ||
* 0.2.7 (2020-12-01) | ||
- TypeScript definition files (`.d.ts`) are not considered as components | ||
* 0.2.6 (2020-09-23) | ||
@@ -88,0 +90,0 @@ - If there are multiple spec files for a module, the fbp-spec file will be used by fbp-manifest |
@@ -24,3 +24,3 @@ const path = require('path'); | ||
'.litcoffee', | ||
].includes(path.extname(c))); | ||
].includes(path.extname(c)) && c.indexOf('.d.ts') === -1); | ||
return Promise.filter(potentialComponents, (p) => { | ||
@@ -27,0 +27,0 @@ const componentPath = path.resolve(componentDir, p); |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
53033
96