nexfep 0.7.1 → 0.7.2
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/cli/build.mjs +1 -1
- package/package.json +1 -1
package/cli/build.mjs
CHANGED
|
@@ -101,7 +101,7 @@ export default async function build(args) {
|
|
|
101
101
|
const typerForBuild = new TimeTyper("Building...");
|
|
102
102
|
const result = await new Promise((resolve) => {
|
|
103
103
|
const child = child_process.spawn(
|
|
104
|
-
`npx --yes nexfpack@0.
|
|
104
|
+
`npx --yes nexfpack@0.5.1 ${path.join(NexfpackConfig.output, "nexfpack.config.json")}`,
|
|
105
105
|
{ shell: true },
|
|
106
106
|
);
|
|
107
107
|
child.on("close", (code) => {
|