Which seems to be happening on this line in extension-template.ts despite checking for startOnEvents truthiness and the types not indicating it's a mandatory prop, may trace all the way back to cepConfig in index.ts. For some reason this works initially but seems to make the manifest faulty for certain props during new builds so that it defaults to a previous version (I wasn't sure why I couldn't get an ext icon to load until noticing this despite my panel seeming to be running fine otherwise, removing the undefined manually made my icon work).
This happens in all 3 default templates via
yarn create bolt-cep myApp --template [framework]
.In
CEP_Config.panels
, an entry like:Produces an undefined in the manifest on build:
Which seems to be happening on this line in
extension-template.ts
despite checking forstartOnEvents
truthiness and the types not indicating it's a mandatory prop, may trace all the way back tocepConfig
inindex.ts
. For some reason this works initially but seems to make the manifest faulty for certain props during new builds so that it defaults to a previous version (I wasn't sure why I couldn't get an ext icon to load until noticing this despite my panel seeming to be running fine otherwise, removing the undefined manually made my icon work).