hexo-generator-tag
Advanced tools
Comparing version 0.1.1 to 0.1.2
@@ -6,5 +6,5 @@ 'use strict'; | ||
hexo.config.tag_generator = assign({ | ||
per_page: hexo.config.per_page || 10 | ||
per_page: typeof hexo.config.per_page === "undefined" ? 10 : hexo.config.per_page | ||
}, hexo.config.tag_generator); | ||
hexo.extend.generator.register('tag', require('./lib/generator')); |
{ | ||
"name": "hexo-generator-tag", | ||
"version": "0.1.1", | ||
"version": "0.1.2", | ||
"description": "Tag generator for Hexo.", | ||
@@ -41,2 +41,2 @@ "main": "index", | ||
} | ||
} | ||
} |
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
3578