aberlaas-helper 2.27.5 → 2.27.6

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.
Files changed (2) hide show
  1. package/lib/helper.js +5 -0
  2. package/package.json +2 -2
package/lib/helper.js CHANGED
@@ -69,6 +69,11 @@ export const __ = {
69
69
  '!**/.next/**',
70
70
  '!**/.turbo/**',
71
71
  '!**/.yarn/**',
72
+ // NOTE: This is temporary. I know my ./docs folders are using commonjs,
73
+ // old tailwind and various stuff that don't work well with aberlaas, so
74
+ // the best thing I can do right now is completely ignore linting of those
75
+ // dirs until I know what to replace them with
76
+ '!**/docs/**',
72
77
  ];
73
78
 
74
79
  // Expanding globs
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "aberlaas-helper",
3
- "version": "2.27.5",
3
+ "version": "2.27.6",
4
4
  "type": "module",
5
5
  "description": "aberlaas shared helper: Common methods used by all commands",
6
6
  "author": "Tim Carry <tim@pixelastic.com>",
@@ -19,7 +19,7 @@
19
19
  },
20
20
  "main": "./lib/main.js",
21
21
  "dependencies": {
22
- "aberlaas-versions": "2.27.5",
22
+ "aberlaas-versions": "2.27.6",
23
23
  "firost": "5.8.0",
24
24
  "golgoth": "3.1.0"
25
25
  },