fix: V4 fixes.

This commit is contained in:
Sam Tolmay 2021-11-25 23:18:09 +02:00
parent f711fa9fad
commit 088e210620
No known key found for this signature in database
GPG Key ID: D004126FCD1A6DF0
4 changed files with 4 additions and 3 deletions

View File

@ -14,6 +14,7 @@
limitations under the License.
*/
// TODO: strip auth prop from page before we send it to the client
async function getPageConfig({ authorize, readConfigFile }, { pageId }) {
const pageConfig = await readConfigFile(`pages/${pageId}/${pageId}.json`);
if (pageConfig && authorize(pageConfig)) return pageConfig;

View File

@ -49,7 +49,7 @@ program
)
.option(
'--package-manager <package-manager>',
'The package manager to user. Options are "npm" or "yarn".'
'The package manager to use. Options are "npm" or "yarn".'
)
.option(
'--ref-resolver <ref-resolver-function-path>',

View File

@ -47,7 +47,6 @@ async function spawnProcess({ context, command, args, processOptions, silent })
});
process.on('error', (error) => {
console.log(error);
reject(error);
});

View File

@ -20,7 +20,8 @@ import Page from '../components/Page.js';
export async function getServerSideProps(context) {
const { pageId } = context.params;
const apiContext = await createApiContext({ buildDirectory: './.lowdefy/build' });
// TODO: get the write api context options
const apiContext = await createApiContext({ buildDirectory: './build' });
// TODO: Maybe we can only get rootConfig once?
// We can't do getServerSideProps on _app :(