mirror of
https://github.com/lowdefy/lowdefy.git
synced 2025-03-31 15:20:32 +08:00
fix: Use createRequire to import json files.
This commit is contained in:
parent
67c03ec345
commit
a9c7ec4eae
44
packages/build/src/build/buildPages/buildTestPage.js
Normal file
44
packages/build/src/build/buildPages/buildTestPage.js
Normal file
@ -0,0 +1,44 @@
|
||||
/*
|
||||
Copyright 2020-2022 Lowdefy, Inc
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
You may obtain a copy of the License at
|
||||
|
||||
http://www.apache.org/licenses/LICENSE-2.0
|
||||
|
||||
Unless required by applicable law or agreed to in writing, software
|
||||
distributed under the License is distributed on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
See the License for the specific language governing permissions and
|
||||
limitations under the License.
|
||||
*/
|
||||
|
||||
// Used in @lowdefy/engine tests
|
||||
|
||||
import buildAuth from '../buildAuth/buildAuth.js';
|
||||
import buildPages from './buildPages.js';
|
||||
import createContext from '../../createContext.js';
|
||||
|
||||
function buildTestPage({ pageConfig }) {
|
||||
const context = createContext({
|
||||
customTypesMap: {},
|
||||
directories: {},
|
||||
logger: {
|
||||
debug: () => {},
|
||||
log: () => {},
|
||||
warn: () => {},
|
||||
error: () => {},
|
||||
},
|
||||
stage: 'test',
|
||||
});
|
||||
const components = {
|
||||
pages: [pageConfig],
|
||||
};
|
||||
buildAuth({ components, context });
|
||||
buildPages({ components, context });
|
||||
|
||||
return components.pages[0];
|
||||
}
|
||||
|
||||
export default buildTestPage;
|
@ -24,10 +24,9 @@ import createReadConfigFile from './utils/readConfigFile.js';
|
||||
import createWriteBuildArtifact from './utils/writeBuildArtifact.js';
|
||||
|
||||
const require = createRequire(import.meta.url);
|
||||
const defaultTypesMap = require('./defaultTypesMap.json');
|
||||
|
||||
function createContext({ customTypesMap, directories, logger, refResolver, stage = 'prod' }) {
|
||||
const defaultTypesMap = require('./defaultTypesMap.json');
|
||||
|
||||
const context = {
|
||||
directories,
|
||||
logger,
|
||||
|
@ -15,7 +15,7 @@
|
||||
limitations under the License.
|
||||
*/
|
||||
|
||||
import { fileURLToPath } from 'url';
|
||||
import { createRequire } from 'module';
|
||||
import { readFile } from '@lowdefy/node-utils';
|
||||
|
||||
import { Command } from 'commander';
|
||||
@ -26,9 +26,9 @@ import init from './commands/init/init.js';
|
||||
import start from './commands/start/start.js';
|
||||
import runCommand from './utils/runCommand.js';
|
||||
|
||||
const packageJson = JSON.parse(
|
||||
await readFile(fileURLToPath(new URL('../package.json', import.meta.url)))
|
||||
);
|
||||
const require = createRequire(import.meta.url);
|
||||
|
||||
const packageJson = require('../package.json');
|
||||
const { description, version: cliVersion } = packageJson;
|
||||
|
||||
const program = new Command();
|
||||
|
Loading…
x
Reference in New Issue
Block a user