export declare const entry = "\n// The template for the dynamic webpack entry. Be aware of the variables\n\nconst packageJson = require(\"./package.json\")\n\nconst packageInfo = {\n packageJson,\n sourceModules: {},\n dependencies: {},\n}\n\ntry {\n // This is a special webpack thing that watches the whole directory\n // https://github.com/webpack/docs/wiki/context\n const ctx = require.context(\"./code\", true, /\\.(t|j)s(x?)|\\.css$/)\n\n ctx.keys().forEach(key => {\n packageInfo.sourceModules[key] = () => ctx(key)\n })\n} catch (e) {\n // Handle when the code directory is missing\n // See issue #8178 for more information\n}\n\nconst packages = {}\n\n// The packages are passed in through a template\n__{PACKAGES}__\n\npackageInfo.dependencies = packages\n\nexports.__framer__ = packageInfo\n";