@maizzle/framework 5.0.0-beta.13 → 5.0.0-beta.14
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 +0 -3
package/package.json
CHANGED
package/src/commands/build.js
CHANGED
|
@@ -35,8 +35,6 @@ import {
|
|
|
35
35
|
|
|
36
36
|
import { readFileConfig } from '../utils/getConfigByFilePath.js'
|
|
37
37
|
|
|
38
|
-
import { transformers } from '../transformers/index.js'
|
|
39
|
-
|
|
40
38
|
/**
|
|
41
39
|
* Compile templates and output to the build directory.
|
|
42
40
|
* Returns a promise containing an object with files output and the config object.
|
|
@@ -238,7 +236,6 @@ export default async (config = {}) => {
|
|
|
238
236
|
await config.afterBuild({
|
|
239
237
|
config,
|
|
240
238
|
files: allOutputFiles,
|
|
241
|
-
transform: transformers,
|
|
242
239
|
})
|
|
243
240
|
}
|
|
244
241
|
|