@maizzle/framework 5.0.0-beta.36 → 5.0.0-beta.37
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/package.json +1 -1
- package/src/commands/build.js +1 -1
package/package.json
CHANGED
package/src/commands/build.js
CHANGED
|
@@ -175,7 +175,7 @@ export default async (config = {}) => {
|
|
|
175
175
|
const outputExtensions = new Set()
|
|
176
176
|
|
|
177
177
|
for (const pattern of contentPaths) {
|
|
178
|
-
outputExtensions.add(
|
|
178
|
+
getFileExtensionsFromPattern(pattern).map(ext => outputExtensions.add(ext))
|
|
179
179
|
}
|
|
180
180
|
|
|
181
181
|
/**
|