ah-sequelize-plugin
Advanced tools
Comparing version 1.3.1 to 1.3.2
@@ -43,3 +43,3 @@ const path = require('path') | ||
path: dir, | ||
pattern: /\.(js|ts)$/ | ||
pattern: /(\.js|.{2,*}\.ts)$/ | ||
} | ||
@@ -58,3 +58,3 @@ }) | ||
} | ||
if (path.extname(file) !== '.js' && path.extname(file) !== '.ts') return | ||
if ((path.extname(file) !== '.js' && path.extname(file) !== '.ts') || file.indexOf('.d.ts') > 0) return | ||
const nameParts = file.split('/') | ||
@@ -61,0 +61,0 @@ const name = nameParts[nameParts.length - 1].split('.')[0] |
@@ -6,3 +6,3 @@ { | ||
"description": "Use Sequelize in ActionHero", | ||
"version": "1.3.1", | ||
"version": "1.3.2", | ||
"homepage": "http://actionherojs.com", | ||
@@ -9,0 +9,0 @@ "repository": { |
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
29619