diff --git a/packages/create-lz-oapp/src/config.ts b/packages/create-lz-oapp/src/config.ts index cf6bc50f3..e690c8809 100644 --- a/packages/create-lz-oapp/src/config.ts +++ b/packages/create-lz-oapp/src/config.ts @@ -48,14 +48,18 @@ export const getExamples = (): Example[] => { }, // ZK-Solc examples are feature flagged for the time being ...(process.env.LZ_ENABLE_ZKSOLC_EXAMPLE - ? [ - { id: 'onft721-zksync', label: 'ONFT721 zksolc', repository, directory: 'examples/onft721-zksync', ref }, - ] + ? [{ id: 'onft721-zksync', label: 'ONFT721 zksolc', repository, directory: 'examples/onft721-zksync', ref }] : []), // Upgradeable contract examples are feature flagged for the time being ...(process.env.LZ_ENABLE_UPGRADEABLE_EXAMPLE ? [ - { id: 'oft-upgradeable', label: 'UpgradeableOFT', repository, directory: 'examples/oft-upgradeable', ref }, + { + id: 'oft-upgradeable', + label: 'UpgradeableOFT', + repository, + directory: 'examples/oft-upgradeable', + ref, + }, { id: 'uniswap-read', label: 'UniswapV3 Quote', @@ -68,7 +72,13 @@ export const getExamples = (): Example[] => { // Native OFT Adapter example is feature flagged for the time being ...(process.env.LZ_ENABLE_NATIVE_EXAMPLE ? [ - { id: 'native-oft-adapter', label: 'NativeOFTAdapter', repository, directory: 'examples/native-oft-adapter', ref }, + { + id: 'native-oft-adapter', + label: 'NativeOFTAdapter', + repository, + directory: 'examples/native-oft-adapter', + ref, + }, { id: 'uniswap-read', label: 'UniswapV3 Quote', diff --git a/turbo.json b/turbo.json index d0e9915bd..ba5d6233c 100644 --- a/turbo.json +++ b/turbo.json @@ -49,6 +49,9 @@ "LZ_ENABLE_EXPERIMENTAL_SIMULATION", "LZ_ENABLE_EXPERIMENTAL_SOLANA_OFT_EXAMPLE", "LZ_ENABLE_READ_EXAMPLE", + "LZ_ENABLE_ZKSOLC_EXAMPLE", + "LZ_ENABLE_NATIVE_EXAMPLE", + "LZ_ENABLE_UPGRADEABLE_EXAMPLE", "LAYERZERO_EXAMPLES_REPOSITORY_URL", "LAYERZERO_EXAMPLES_REPOSITORY_REF",