npq 3.13.4 → 3.13.5

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.
@@ -27,6 +27,11 @@ class Marshalls {
27
27
  const Marshall = require(curr)
28
28
  const marshall = new Marshall(config)
29
29
 
30
+ // Skip this marshall if it's disabled via environment variable
31
+ if (!marshall.isEnabled()) {
32
+ return prev
33
+ }
34
+
30
35
  return prev.concat({
31
36
  title: marshall.title(),
32
37
  categoryId: marshall.categoryId,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "npq",
3
- "version": "3.13.4",
3
+ "version": "3.13.5",
4
4
  "description": "marshall your npm/npm package installs with high quality and class 🎖",
5
5
  "bin": {
6
6
  "npq": "./bin/npq.js",