UNPKG

@lowdefy/build

Version:
80 lines (76 loc) 2.81 kB
/* Copyright 2020-2026 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. */ import { mergeObjects } from '@lowdefy/helpers'; import createBuildHandleError from './utils/createBuildHandleError.js'; import createCounter from './utils/createCounter.js'; import createHandleWarning from './utils/createHandleWarning.js'; import createReadConfigFile from './utils/readConfigFile.js'; import createWriteBuildArtifact from './utils/writeBuildArtifact.js'; import defaultPackages from './defaultPackages.js'; import defaultTypesMap from './defaultTypesMap.js'; function createContext({ customTypesMap, directories, logger, refResolver, stage = 'prod' }) { const context = { defaultPackageNames: new Set(defaultPackages), agentIds: new Set(), connectionIds: new Set(), directories, errors: [], jsMap: {}, warnings: [], keyMap: {}, logger, // Null prototype prevents pollution via attacker-controlled entry.id. modules: Object.create(null), readConfigFile: createReadConfigFile({ directories }), refMap: {}, refResolver, unresolvedRefVars: {}, seenSourceLines: new Set(), stage, typeCounters: { actions: createCounter(), agents: createCounter(), auth: { adapters: createCounter(), callbacks: createCounter(), events: createCounter(), providers: createCounter() }, blocks: createCounter(), connections: createCounter(), requests: createCounter(), controls: createCounter(), operators: { client: createCounter('client'), server: createCounter('server') } }, typesMap: mergeObjects([ defaultTypesMap, customTypesMap ]), writeBuildArtifact: createWriteBuildArtifact({ directories }) }; context.blockMetas = context.typesMap.blockMetas ?? {}; context.handleError = createBuildHandleError({ context }); context.handleWarning = createHandleWarning({ context }); return context; } export default createContext;