1
0
Fork 0
mirror of synced 2024-06-20 19:30:28 +12:00

#363 bugfix: page not built until prop changed

This commit is contained in:
Michael Shanks 2020-06-22 21:16:51 +01:00
parent 85ccd878ce
commit 763e282997

View file

@ -1,6 +1,6 @@
const CouchDB = require("../../db")
const ClientDb = require("../../db/clientDb")
const { getPackageForBuilder } = require("../../utilities/builder")
const { getPackageForBuilder, buildPage } = require("../../utilities/builder")
const newid = require("../../db/newid")
const env = require("../../environment")
const instanceController = require("./instance")
@ -111,15 +111,23 @@ const createEmptyAppPackage = async (ctx, app) => {
await updateJsonFile(join(appsFolder, app._id, "package.json"), {
name: npmFriendlyAppName(app.name),
})
await updateJsonFile(
const mainJson = await updateJsonFile(
join(appsFolder, app._id, "pages", "main", "page.json"),
app
)
await updateJsonFile(
await buildPage(ctx.config, app._id, "main", { page: mainJson })
const unauthenticatedJson = await updateJsonFile(
join(appsFolder, app._id, "pages", "unauthenticated", "page.json"),
app
)
await buildPage(ctx.config, app._id, "unauthenticated", {
page: unauthenticatedJson,
})
return newAppFolder
}
@ -145,6 +153,7 @@ const updateJsonFile = async (filePath, app) => {
const json = await readFile(filePath, "utf8")
const newJson = sqrl.Render(json, app)
await writeFile(filePath, newJson, "utf8")
return JSON.parse(newJson)
}
const runNpmInstall = async newAppFolder => {