poops 1.9.0 → 1.9.1
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.
- package/lib/markups.js +4 -1
- package/package.json +2 -1
package/lib/markups.js
CHANGED
|
@@ -222,7 +222,10 @@ export default class Markups {
|
|
|
222
222
|
}
|
|
223
223
|
|
|
224
224
|
markupDefaultExcludes.push('_*')
|
|
225
|
-
|
|
225
|
+
// The excludes fill one extglob segment, so a path with a separator
|
|
226
|
+
// ('../node_modules' as a sass load path) makes the whole pattern match
|
|
227
|
+
// nothing — a silent zero-page build. Only bare names can exclude here.
|
|
228
|
+
markupDefaultExcludes = [...new Set(markupDefaultExcludes)].filter((p) => !/[\\/]/.test(p))
|
|
226
229
|
|
|
227
230
|
return `!(${markupDefaultExcludes.join('|')})/**/*.+(${this.engine.markupExtensions})`
|
|
228
231
|
}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "poops",
|
|
3
3
|
"description": "Straightforward, no-bullshit bundler for the web.",
|
|
4
|
-
"version": "1.9.
|
|
4
|
+
"version": "1.9.1",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"type": "module",
|
|
7
7
|
"main": "poops.js",
|
|
@@ -80,6 +80,7 @@
|
|
|
80
80
|
"eslint": "^9.39.3",
|
|
81
81
|
"jest": "^30.2.0",
|
|
82
82
|
"neostandard": "^0.12.2",
|
|
83
|
+
"poops-docs-theme": "^1.0.0",
|
|
83
84
|
"postcss": "^8.5.8",
|
|
84
85
|
"react": "^19.2.4",
|
|
85
86
|
"react-dom": "^19.2.4",
|