├── .editorconfig ├── .eslintrc.json ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── config.yml │ └── feature_request.md ├── contributing.md └── workflows │ └── test.yml ├── .gitignore ├── .npmignore ├── .prettierrc.json ├── .stylelintrc.json ├── .versionrc.json ├── CHANGELOG.md ├── LICENSE ├── README.md ├── bin └── svite.js ├── commitlint.config.js ├── examples ├── .gitignore ├── big │ ├── .gitignore │ ├── README.md │ ├── index.html │ ├── package.json │ ├── public │ │ └── favicon.svg │ └── src │ │ ├── App.svelte │ │ ├── App.test.js │ │ ├── app.css │ │ ├── index.js │ │ ├── pages.js │ │ └── pages │ │ ├── 10 │ │ ├── Child.svelte │ │ ├── GrandChild.svelte │ │ ├── OtherChild.svelte │ │ ├── OtherGrandChild.svelte │ │ └── index.svelte │ │ ├── 11 │ │ ├── Child.svelte │ │ ├── GrandChild.svelte │ │ ├── OtherChild.svelte │ │ ├── OtherGrandChild.svelte │ │ └── index.svelte │ │ ├── 12 │ │ ├── Child.svelte │ │ ├── GrandChild.svelte │ │ ├── OtherChild.svelte │ │ ├── OtherGrandChild.svelte │ │ └── index.svelte │ │ ├── 13 │ │ ├── Child.svelte │ │ ├── GrandChild.svelte │ │ ├── OtherChild.svelte │ │ ├── OtherGrandChild.svelte │ │ └── index.svelte │ │ ├── 14 │ │ ├── Child.svelte │ │ ├── GrandChild.svelte │ │ ├── OtherChild.svelte │ │ ├── OtherGrandChild.svelte │ │ └── index.svelte │ │ ├── 15 │ │ ├── Child.svelte │ │ ├── GrandChild.svelte │ │ ├── OtherChild.svelte │ │ ├── OtherGrandChild.svelte │ │ └── index.svelte │ │ ├── 16 │ │ ├── Child.svelte │ │ ├── GrandChild.svelte │ │ ├── OtherChild.svelte │ │ ├── OtherGrandChild.svelte │ │ └── index.svelte │ │ ├── 17 │ │ ├── Child.svelte │ │ ├── GrandChild.svelte │ │ ├── OtherChild.svelte │ │ ├── OtherGrandChild.svelte │ │ └── index.svelte │ │ ├── 18 │ │ ├── Child.svelte │ │ ├── GrandChild.svelte │ │ ├── OtherChild.svelte │ │ ├── OtherGrandChild.svelte │ │ └── index.svelte │ │ ├── 19 │ │ ├── Child.svelte │ │ ├── GrandChild.svelte │ │ ├── OtherChild.svelte │ │ ├── OtherGrandChild.svelte │ │ └── index.svelte │ │ ├── 20 │ │ ├── Child.svelte │ │ ├── GrandChild.svelte │ │ ├── OtherChild.svelte │ │ ├── OtherGrandChild.svelte │ │ └── index.svelte │ │ ├── 21 │ │ ├── Child.svelte │ │ ├── GrandChild.svelte │ │ ├── OtherChild.svelte │ │ ├── OtherGrandChild.svelte │ │ └── index.svelte │ │ ├── 22 │ │ ├── Child.svelte │ │ ├── GrandChild.svelte │ │ ├── OtherChild.svelte │ │ ├── OtherGrandChild.svelte │ │ └── index.svelte │ │ ├── 23 │ │ ├── Child.svelte │ │ ├── GrandChild.svelte │ │ ├── OtherChild.svelte │ │ ├── OtherGrandChild.svelte │ │ └── index.svelte │ │ ├── 24 │ │ ├── Child.svelte │ │ ├── GrandChild.svelte │ │ ├── OtherChild.svelte │ │ ├── OtherGrandChild.svelte │ │ └── index.svelte │ │ ├── 25 │ │ ├── Child.svelte │ │ ├── GrandChild.svelte │ │ ├── OtherChild.svelte │ │ ├── OtherGrandChild.svelte │ │ └── index.svelte │ │ ├── 26 │ │ ├── Child.svelte │ │ ├── GrandChild.svelte │ │ ├── OtherChild.svelte │ │ ├── OtherGrandChild.svelte │ │ └── index.svelte │ │ ├── 27 │ │ ├── Child.svelte │ │ ├── GrandChild.svelte │ │ ├── OtherChild.svelte │ │ ├── OtherGrandChild.svelte │ │ └── index.svelte │ │ ├── 28 │ │ ├── Child.svelte │ │ ├── GrandChild.svelte │ │ ├── OtherChild.svelte │ │ ├── OtherGrandChild.svelte │ │ └── index.svelte │ │ ├── 29 │ │ ├── Child.svelte │ │ ├── GrandChild.svelte │ │ ├── OtherChild.svelte │ │ ├── OtherGrandChild.svelte │ │ └── index.svelte │ │ ├── 30 │ │ ├── Child.svelte │ │ ├── GrandChild.svelte │ │ ├── OtherChild.svelte │ │ ├── OtherGrandChild.svelte │ │ └── index.svelte │ │ ├── 31 │ │ ├── Child.svelte │ │ ├── GrandChild.svelte │ │ ├── OtherChild.svelte │ │ ├── OtherGrandChild.svelte │ │ └── index.svelte │ │ ├── 32 │ │ ├── Child.svelte │ │ ├── GrandChild.svelte │ │ ├── OtherChild.svelte │ │ ├── OtherGrandChild.svelte │ │ └── index.svelte │ │ ├── 33 │ │ ├── Child.svelte │ │ ├── GrandChild.svelte │ │ ├── OtherChild.svelte │ │ ├── OtherGrandChild.svelte │ │ └── index.svelte │ │ ├── 34 │ │ ├── Child.svelte │ │ ├── GrandChild.svelte │ │ ├── OtherChild.svelte │ │ ├── OtherGrandChild.svelte │ │ └── index.svelte │ │ ├── 35 │ │ ├── Child.svelte │ │ ├── GrandChild.svelte │ │ ├── OtherChild.svelte │ │ ├── OtherGrandChild.svelte │ │ └── index.svelte │ │ ├── 36 │ │ ├── Child.svelte │ │ ├── GrandChild.svelte │ │ ├── OtherChild.svelte │ │ ├── OtherGrandChild.svelte │ │ └── index.svelte │ │ ├── 37 │ │ ├── Child.svelte │ │ ├── GrandChild.svelte │ │ ├── OtherChild.svelte │ │ ├── OtherGrandChild.svelte │ │ └── index.svelte │ │ ├── 38 │ │ ├── Child.svelte │ │ ├── GrandChild.svelte │ │ ├── OtherChild.svelte │ │ ├── OtherGrandChild.svelte │ │ └── index.svelte │ │ ├── 39 │ │ ├── Child.svelte │ │ ├── GrandChild.svelte │ │ ├── OtherChild.svelte │ │ ├── OtherGrandChild.svelte │ │ └── index.svelte │ │ ├── 40 │ │ ├── Child.svelte │ │ ├── GrandChild.svelte │ │ ├── OtherChild.svelte │ │ ├── OtherGrandChild.svelte │ │ └── index.svelte │ │ ├── 41 │ │ ├── Child.svelte │ │ ├── GrandChild.svelte │ │ ├── OtherChild.svelte │ │ ├── OtherGrandChild.svelte │ │ └── index.svelte │ │ ├── 42 │ │ ├── Child.svelte │ │ ├── GrandChild.svelte │ │ ├── OtherChild.svelte │ │ ├── OtherGrandChild.svelte │ │ └── index.svelte │ │ ├── 43 │ │ ├── Child.svelte │ │ ├── GrandChild.svelte │ │ ├── OtherChild.svelte │ │ ├── OtherGrandChild.svelte │ │ └── index.svelte │ │ ├── 44 │ │ ├── Child.svelte │ │ ├── GrandChild.svelte │ │ ├── OtherChild.svelte │ │ ├── OtherGrandChild.svelte │ │ └── index.svelte │ │ ├── 45 │ │ ├── Child.svelte │ │ ├── GrandChild.svelte │ │ ├── OtherChild.svelte │ │ ├── OtherGrandChild.svelte │ │ └── index.svelte │ │ ├── 46 │ │ ├── Child.svelte │ │ ├── GrandChild.svelte │ │ ├── OtherChild.svelte │ │ ├── OtherGrandChild.svelte │ │ └── index.svelte │ │ ├── 47 │ │ ├── Child.svelte │ │ ├── GrandChild.svelte │ │ ├── OtherChild.svelte │ │ ├── OtherGrandChild.svelte │ │ └── index.svelte │ │ ├── 48 │ │ ├── Child.svelte │ │ ├── GrandChild.svelte │ │ ├── OtherChild.svelte │ │ ├── OtherGrandChild.svelte │ │ └── index.svelte │ │ ├── 49 │ │ ├── Child.svelte │ │ ├── GrandChild.svelte │ │ ├── OtherChild.svelte │ │ ├── OtherGrandChild.svelte │ │ └── index.svelte │ │ ├── 50 │ │ ├── Child.svelte │ │ ├── GrandChild.svelte │ │ ├── OtherChild.svelte │ │ ├── OtherGrandChild.svelte │ │ └── index.svelte │ │ ├── 51 │ │ ├── Child.svelte │ │ ├── GrandChild.svelte │ │ ├── OtherChild.svelte │ │ ├── OtherGrandChild.svelte │ │ └── index.svelte │ │ ├── 52 │ │ ├── Child.svelte │ │ ├── GrandChild.svelte │ │ ├── OtherChild.svelte │ │ ├── OtherGrandChild.svelte │ │ └── index.svelte │ │ ├── 53 │ │ ├── Child.svelte │ │ ├── GrandChild.svelte │ │ ├── OtherChild.svelte │ │ ├── OtherGrandChild.svelte │ │ └── index.svelte │ │ ├── 54 │ │ ├── Child.svelte │ │ ├── GrandChild.svelte │ │ ├── OtherChild.svelte │ │ ├── OtherGrandChild.svelte │ │ └── index.svelte │ │ ├── 55 │ │ ├── Child.svelte │ │ ├── GrandChild.svelte │ │ ├── OtherChild.svelte │ │ ├── OtherGrandChild.svelte │ │ └── index.svelte │ │ ├── 56 │ │ ├── Child.svelte │ │ ├── GrandChild.svelte │ │ ├── OtherChild.svelte │ │ ├── OtherGrandChild.svelte │ │ └── index.svelte │ │ ├── 57 │ │ ├── Child.svelte │ │ ├── GrandChild.svelte │ │ ├── OtherChild.svelte │ │ ├── OtherGrandChild.svelte │ │ └── index.svelte │ │ ├── 58 │ │ ├── Child.svelte │ │ ├── GrandChild.svelte │ │ ├── OtherChild.svelte │ │ ├── OtherGrandChild.svelte │ │ └── index.svelte │ │ ├── 59 │ │ ├── Child.svelte │ │ ├── GrandChild.svelte │ │ ├── OtherChild.svelte │ │ ├── OtherGrandChild.svelte │ │ └── index.svelte │ │ ├── 60 │ │ ├── Child.svelte │ │ ├── GrandChild.svelte │ │ ├── OtherChild.svelte │ │ ├── OtherGrandChild.svelte │ │ └── index.svelte │ │ ├── 61 │ │ ├── Child.svelte │ │ ├── GrandChild.svelte │ │ ├── OtherChild.svelte │ │ ├── OtherGrandChild.svelte │ │ └── index.svelte │ │ ├── 62 │ │ ├── Child.svelte │ │ ├── GrandChild.svelte │ │ ├── OtherChild.svelte │ │ ├── OtherGrandChild.svelte │ │ └── index.svelte │ │ ├── 63 │ │ ├── Child.svelte │ │ ├── GrandChild.svelte │ │ ├── OtherChild.svelte │ │ ├── OtherGrandChild.svelte │ │ └── index.svelte │ │ ├── 64 │ │ ├── Child.svelte │ │ ├── GrandChild.svelte │ │ ├── OtherChild.svelte │ │ ├── OtherGrandChild.svelte │ │ └── index.svelte │ │ ├── 65 │ │ ├── Child.svelte │ │ ├── GrandChild.svelte │ │ ├── OtherChild.svelte │ │ ├── OtherGrandChild.svelte │ │ └── index.svelte │ │ ├── 66 │ │ ├── Child.svelte │ │ ├── GrandChild.svelte │ │ ├── OtherChild.svelte │ │ ├── OtherGrandChild.svelte │ │ └── index.svelte │ │ ├── 67 │ │ ├── Child.svelte │ │ ├── GrandChild.svelte │ │ ├── OtherChild.svelte │ │ ├── OtherGrandChild.svelte │ │ └── index.svelte │ │ ├── 68 │ │ ├── Child.svelte │ │ ├── GrandChild.svelte │ │ ├── OtherChild.svelte │ │ ├── OtherGrandChild.svelte │ │ └── index.svelte │ │ ├── 69 │ │ ├── Child.svelte │ │ ├── GrandChild.svelte │ │ ├── OtherChild.svelte │ │ ├── OtherGrandChild.svelte │ │ └── index.svelte │ │ ├── 70 │ │ ├── Child.svelte │ │ ├── GrandChild.svelte │ │ ├── OtherChild.svelte │ │ ├── OtherGrandChild.svelte │ │ └── index.svelte │ │ ├── 71 │ │ ├── Child.svelte │ │ ├── GrandChild.svelte │ │ ├── OtherChild.svelte │ │ ├── OtherGrandChild.svelte │ │ └── index.svelte │ │ ├── 72 │ │ ├── Child.svelte │ │ ├── GrandChild.svelte │ │ ├── OtherChild.svelte │ │ ├── OtherGrandChild.svelte │ │ └── index.svelte │ │ ├── 73 │ │ ├── Child.svelte │ │ ├── GrandChild.svelte │ │ ├── OtherChild.svelte │ │ ├── OtherGrandChild.svelte │ │ └── index.svelte │ │ ├── 74 │ │ ├── Child.svelte │ │ ├── GrandChild.svelte │ │ ├── OtherChild.svelte │ │ ├── OtherGrandChild.svelte │ │ └── index.svelte │ │ ├── 75 │ │ ├── Child.svelte │ │ ├── GrandChild.svelte │ │ ├── OtherChild.svelte │ │ ├── OtherGrandChild.svelte │ │ └── index.svelte │ │ ├── 76 │ │ ├── Child.svelte │ │ ├── GrandChild.svelte │ │ ├── OtherChild.svelte │ │ ├── OtherGrandChild.svelte │ │ └── index.svelte │ │ ├── 77 │ │ ├── Child.svelte │ │ ├── GrandChild.svelte │ │ ├── OtherChild.svelte │ │ ├── OtherGrandChild.svelte │ │ └── index.svelte │ │ ├── 78 │ │ ├── Child.svelte │ │ ├── GrandChild.svelte │ │ ├── OtherChild.svelte │ │ ├── OtherGrandChild.svelte │ │ └── index.svelte │ │ ├── 79 │ │ ├── Child.svelte │ │ ├── GrandChild.svelte │ │ ├── OtherChild.svelte │ │ ├── OtherGrandChild.svelte │ │ └── index.svelte │ │ ├── 80 │ │ ├── Child.svelte │ │ ├── GrandChild.svelte │ │ ├── OtherChild.svelte │ │ ├── OtherGrandChild.svelte │ │ └── index.svelte │ │ ├── 81 │ │ ├── Child.svelte │ │ ├── GrandChild.svelte │ │ ├── OtherChild.svelte │ │ ├── OtherGrandChild.svelte │ │ └── index.svelte │ │ ├── 82 │ │ ├── Child.svelte │ │ ├── GrandChild.svelte │ │ ├── OtherChild.svelte │ │ ├── OtherGrandChild.svelte │ │ └── index.svelte │ │ ├── 83 │ │ ├── Child.svelte │ │ ├── GrandChild.svelte │ │ ├── OtherChild.svelte │ │ ├── OtherGrandChild.svelte │ │ └── index.svelte │ │ ├── 84 │ │ ├── Child.svelte │ │ ├── GrandChild.svelte │ │ ├── OtherChild.svelte │ │ ├── OtherGrandChild.svelte │ │ └── index.svelte │ │ ├── 85 │ │ ├── Child.svelte │ │ ├── GrandChild.svelte │ │ ├── OtherChild.svelte │ │ ├── OtherGrandChild.svelte │ │ └── index.svelte │ │ ├── 86 │ │ ├── Child.svelte │ │ ├── GrandChild.svelte │ │ ├── OtherChild.svelte │ │ ├── OtherGrandChild.svelte │ │ └── index.svelte │ │ ├── 87 │ │ ├── Child.svelte │ │ ├── GrandChild.svelte │ │ ├── OtherChild.svelte │ │ ├── OtherGrandChild.svelte │ │ └── index.svelte │ │ ├── 88 │ │ ├── Child.svelte │ │ ├── GrandChild.svelte │ │ ├── OtherChild.svelte │ │ ├── OtherGrandChild.svelte │ │ └── index.svelte │ │ ├── 89 │ │ ├── Child.svelte │ │ ├── GrandChild.svelte │ │ ├── OtherChild.svelte │ │ ├── OtherGrandChild.svelte │ │ └── index.svelte │ │ ├── 90 │ │ ├── Child.svelte │ │ ├── GrandChild.svelte │ │ ├── OtherChild.svelte │ │ ├── OtherGrandChild.svelte │ │ └── index.svelte │ │ ├── 91 │ │ ├── Child.svelte │ │ ├── GrandChild.svelte │ │ ├── OtherChild.svelte │ │ ├── OtherGrandChild.svelte │ │ └── index.svelte │ │ ├── 92 │ │ ├── Child.svelte │ │ ├── GrandChild.svelte │ │ ├── OtherChild.svelte │ │ ├── OtherGrandChild.svelte │ │ └── index.svelte │ │ ├── 93 │ │ ├── Child.svelte │ │ ├── GrandChild.svelte │ │ ├── OtherChild.svelte │ │ ├── OtherGrandChild.svelte │ │ └── index.svelte │ │ ├── 94 │ │ ├── Child.svelte │ │ ├── GrandChild.svelte │ │ ├── OtherChild.svelte │ │ ├── OtherGrandChild.svelte │ │ └── index.svelte │ │ ├── 95 │ │ ├── Child.svelte │ │ ├── GrandChild.svelte │ │ ├── OtherChild.svelte │ │ ├── OtherGrandChild.svelte │ │ └── index.svelte │ │ ├── 96 │ │ ├── Child.svelte │ │ ├── GrandChild.svelte │ │ ├── OtherChild.svelte │ │ ├── OtherGrandChild.svelte │ │ └── index.svelte │ │ ├── 97 │ │ ├── Child.svelte │ │ ├── GrandChild.svelte │ │ ├── OtherChild.svelte │ │ ├── OtherGrandChild.svelte │ │ └── index.svelte │ │ ├── 98 │ │ ├── Child.svelte │ │ ├── GrandChild.svelte │ │ ├── OtherChild.svelte │ │ ├── OtherGrandChild.svelte │ │ └── index.svelte │ │ ├── 99 │ │ ├── Child.svelte │ │ ├── GrandChild.svelte │ │ ├── OtherChild.svelte │ │ ├── OtherGrandChild.svelte │ │ └── index.svelte │ │ ├── 00 │ │ ├── Child.svelte │ │ ├── GrandChild.svelte │ │ ├── OtherChild.svelte │ │ ├── OtherGrandChild.svelte │ │ └── index.svelte │ │ ├── 01 │ │ ├── Child.svelte │ │ ├── GrandChild.svelte │ │ ├── OtherChild.svelte │ │ ├── OtherGrandChild.svelte │ │ └── index.svelte │ │ ├── 02 │ │ ├── Child.svelte │ │ ├── GrandChild.svelte │ │ ├── OtherChild.svelte │ │ ├── OtherGrandChild.svelte │ │ └── index.svelte │ │ ├── 03 │ │ ├── Child.svelte │ │ ├── GrandChild.svelte │ │ ├── OtherChild.svelte │ │ ├── OtherGrandChild.svelte │ │ └── index.svelte │ │ ├── 04 │ │ ├── Child.svelte │ │ ├── GrandChild.svelte │ │ ├── OtherChild.svelte │ │ ├── OtherGrandChild.svelte │ │ └── index.svelte │ │ ├── 05 │ │ ├── Child.svelte │ │ ├── GrandChild.svelte │ │ ├── OtherChild.svelte │ │ ├── OtherGrandChild.svelte │ │ └── index.svelte │ │ ├── 06 │ │ ├── Child.svelte │ │ ├── GrandChild.svelte │ │ ├── OtherChild.svelte │ │ ├── OtherGrandChild.svelte │ │ └── index.svelte │ │ ├── 07 │ │ ├── Child.svelte │ │ ├── GrandChild.svelte │ │ ├── OtherChild.svelte │ │ ├── OtherGrandChild.svelte │ │ └── index.svelte │ │ ├── 08 │ │ ├── Child.svelte │ │ ├── GrandChild.svelte │ │ ├── OtherChild.svelte │ │ ├── OtherGrandChild.svelte │ │ └── index.svelte │ │ └── 09 │ │ ├── Child.svelte │ │ ├── GrandChild.svelte │ │ ├── OtherChild.svelte │ │ ├── OtherGrandChild.svelte │ │ └── index.svelte ├── hmr-benchmark │ ├── .gitignore │ ├── benchmark.js │ ├── index.html │ ├── package.json │ ├── public │ │ └── favicon.svg │ ├── src │ │ ├── App.svelte │ │ └── index.js │ ├── svelte.config.js │ └── tsconfig.json ├── hmr-showcase │ ├── .gitignore │ ├── index.html │ ├── package.json │ ├── public │ │ └── favicon.svg │ ├── src │ │ ├── App.svelte │ │ ├── Counter.svelte │ │ ├── index.js │ │ └── stores.js │ └── vite.config.js ├── minimal │ ├── .gitignore │ ├── index.html │ ├── package.json │ ├── public │ │ └── favicon.svg │ └── src │ │ ├── App.svelte │ │ └── index.js ├── postcss-tailwind │ ├── .gitignore │ ├── index.html │ ├── package.json │ ├── postcss.config.js │ ├── public │ │ └── favicon.svg │ ├── src │ │ ├── App.svelte │ │ ├── index.css │ │ └── index.js │ ├── svelte.config.js │ └── tailwind.config.js ├── routify-mdsvex │ ├── .gitignore │ ├── index.html │ ├── package.json │ ├── public │ │ └── favicon.svg │ ├── routify.config.js │ ├── src │ │ ├── App.svelte │ │ ├── index.js │ │ ├── layouts │ │ │ └── MdsvexLayout.svelte │ │ └── pages │ │ │ ├── _fallback.svelte │ │ │ ├── _folder.svelte │ │ │ ├── index.svelte │ │ │ └── mdsvex.svx │ ├── svelte.config.js │ └── vite.config.js ├── svelte-preprocess-auto │ ├── .gitignore │ ├── index.html │ ├── package.json │ ├── public │ │ └── favicon.svg │ ├── src │ │ ├── App.svelte │ │ ├── Nested.svelte │ │ └── main.js │ └── svelte.config.js └── typescript │ ├── big │ ├── .gitignore │ ├── README.md │ ├── index.html │ ├── package.json │ ├── public │ │ └── favicon.svg │ ├── src │ │ ├── App.svelte │ │ ├── App.test.js │ │ ├── app.css │ │ ├── index.ts │ │ ├── pages.js │ │ └── pages │ │ │ ├── 10 │ │ │ ├── Child.svelte │ │ │ ├── GrandChild.svelte │ │ │ ├── OtherChild.svelte │ │ │ ├── OtherGrandChild.svelte │ │ │ └── index.svelte │ │ │ ├── 11 │ │ │ ├── Child.svelte │ │ │ ├── GrandChild.svelte │ │ │ ├── OtherChild.svelte │ │ │ ├── OtherGrandChild.svelte │ │ │ └── index.svelte │ │ │ ├── 12 │ │ │ ├── Child.svelte │ │ │ ├── GrandChild.svelte │ │ │ ├── OtherChild.svelte │ │ │ ├── OtherGrandChild.svelte │ │ │ └── index.svelte │ │ │ ├── 13 │ │ │ ├── Child.svelte │ │ │ ├── GrandChild.svelte │ │ │ ├── OtherChild.svelte │ │ │ ├── OtherGrandChild.svelte │ │ │ └── index.svelte │ │ │ ├── 14 │ │ │ ├── Child.svelte │ │ │ ├── GrandChild.svelte │ │ │ ├── OtherChild.svelte │ │ │ ├── OtherGrandChild.svelte │ │ │ └── index.svelte │ │ │ ├── 15 │ │ │ ├── Child.svelte │ │ │ ├── GrandChild.svelte │ │ │ ├── OtherChild.svelte │ │ │ ├── OtherGrandChild.svelte │ │ │ └── index.svelte │ │ │ ├── 16 │ │ │ ├── Child.svelte │ │ │ ├── GrandChild.svelte │ │ │ ├── OtherChild.svelte │ │ │ ├── OtherGrandChild.svelte │ │ │ └── index.svelte │ │ │ ├── 17 │ │ │ ├── Child.svelte │ │ │ ├── GrandChild.svelte │ │ │ ├── OtherChild.svelte │ │ │ ├── OtherGrandChild.svelte │ │ │ └── index.svelte │ │ │ ├── 18 │ │ │ ├── Child.svelte │ │ │ ├── GrandChild.svelte │ │ │ ├── OtherChild.svelte │ │ │ ├── OtherGrandChild.svelte │ │ │ └── index.svelte │ │ │ ├── 19 │ │ │ ├── Child.svelte │ │ │ ├── GrandChild.svelte │ │ │ ├── OtherChild.svelte │ │ │ ├── OtherGrandChild.svelte │ │ │ └── index.svelte │ │ │ ├── 20 │ │ │ ├── Child.svelte │ │ │ ├── GrandChild.svelte │ │ │ ├── OtherChild.svelte │ │ │ ├── OtherGrandChild.svelte │ │ │ └── index.svelte │ │ │ ├── 21 │ │ │ ├── Child.svelte │ │ │ ├── GrandChild.svelte │ │ │ ├── OtherChild.svelte │ │ │ ├── OtherGrandChild.svelte │ │ │ └── index.svelte │ │ │ ├── 22 │ │ │ ├── Child.svelte │ │ │ ├── GrandChild.svelte │ │ │ ├── OtherChild.svelte │ │ │ ├── OtherGrandChild.svelte │ │ │ └── index.svelte │ │ │ ├── 23 │ │ │ ├── Child.svelte │ │ │ ├── GrandChild.svelte │ │ │ ├── OtherChild.svelte │ │ │ ├── OtherGrandChild.svelte │ │ │ └── index.svelte │ │ │ ├── 24 │ │ │ ├── Child.svelte │ │ │ ├── GrandChild.svelte │ │ │ ├── OtherChild.svelte │ │ │ ├── OtherGrandChild.svelte │ │ │ └── index.svelte │ │ │ ├── 25 │ │ │ ├── Child.svelte │ │ │ ├── GrandChild.svelte │ │ │ ├── OtherChild.svelte │ │ │ ├── OtherGrandChild.svelte │ │ │ └── index.svelte │ │ │ ├── 26 │ │ │ ├── Child.svelte │ │ │ ├── GrandChild.svelte │ │ │ ├── OtherChild.svelte │ │ │ ├── OtherGrandChild.svelte │ │ │ └── index.svelte │ │ │ ├── 27 │ │ │ ├── Child.svelte │ │ │ ├── GrandChild.svelte │ │ │ ├── OtherChild.svelte │ │ │ ├── OtherGrandChild.svelte │ │ │ └── index.svelte │ │ │ ├── 28 │ │ │ ├── Child.svelte │ │ │ ├── GrandChild.svelte │ │ │ ├── OtherChild.svelte │ │ │ ├── OtherGrandChild.svelte │ │ │ └── index.svelte │ │ │ ├── 29 │ │ │ ├── Child.svelte │ │ │ ├── GrandChild.svelte │ │ │ ├── OtherChild.svelte │ │ │ ├── OtherGrandChild.svelte │ │ │ └── index.svelte │ │ │ ├── 30 │ │ │ ├── Child.svelte │ │ │ ├── GrandChild.svelte │ │ │ ├── OtherChild.svelte │ │ │ ├── OtherGrandChild.svelte │ │ │ └── index.svelte │ │ │ ├── 31 │ │ │ ├── Child.svelte │ │ │ ├── GrandChild.svelte │ │ │ ├── OtherChild.svelte │ │ │ ├── OtherGrandChild.svelte │ │ │ └── index.svelte │ │ │ ├── 32 │ │ │ ├── Child.svelte │ │ │ ├── GrandChild.svelte │ │ │ ├── OtherChild.svelte │ │ │ ├── OtherGrandChild.svelte │ │ │ └── index.svelte │ │ │ ├── 33 │ │ │ ├── Child.svelte │ │ │ ├── GrandChild.svelte │ │ │ ├── OtherChild.svelte │ │ │ ├── OtherGrandChild.svelte │ │ │ └── index.svelte │ │ │ ├── 34 │ │ │ ├── Child.svelte │ │ │ ├── GrandChild.svelte │ │ │ ├── OtherChild.svelte │ │ │ ├── OtherGrandChild.svelte │ │ │ └── index.svelte │ │ │ ├── 35 │ │ │ ├── Child.svelte │ │ │ ├── GrandChild.svelte │ │ │ ├── OtherChild.svelte │ │ │ ├── OtherGrandChild.svelte │ │ │ └── index.svelte │ │ │ ├── 36 │ │ │ ├── Child.svelte │ │ │ ├── GrandChild.svelte │ │ │ ├── OtherChild.svelte │ │ │ ├── OtherGrandChild.svelte │ │ │ └── index.svelte │ │ │ ├── 37 │ │ │ ├── Child.svelte │ │ │ ├── GrandChild.svelte │ │ │ ├── OtherChild.svelte │ │ │ ├── OtherGrandChild.svelte │ │ │ └── index.svelte │ │ │ ├── 38 │ │ │ ├── Child.svelte │ │ │ ├── GrandChild.svelte │ │ │ ├── OtherChild.svelte │ │ │ ├── OtherGrandChild.svelte │ │ │ └── index.svelte │ │ │ ├── 39 │ │ │ ├── Child.svelte │ │ │ ├── GrandChild.svelte │ │ │ ├── OtherChild.svelte │ │ │ ├── OtherGrandChild.svelte │ │ │ └── index.svelte │ │ │ ├── 40 │ │ │ ├── Child.svelte │ │ │ ├── GrandChild.svelte │ │ │ ├── OtherChild.svelte │ │ │ ├── OtherGrandChild.svelte │ │ │ └── index.svelte │ │ │ ├── 41 │ │ │ ├── Child.svelte │ │ │ ├── GrandChild.svelte │ │ │ ├── OtherChild.svelte │ │ │ ├── OtherGrandChild.svelte │ │ │ └── index.svelte │ │ │ ├── 42 │ │ │ ├── Child.svelte │ │ │ ├── GrandChild.svelte │ │ │ ├── OtherChild.svelte │ │ │ ├── OtherGrandChild.svelte │ │ │ └── index.svelte │ │ │ ├── 43 │ │ │ ├── Child.svelte │ │ │ ├── GrandChild.svelte │ │ │ ├── OtherChild.svelte │ │ │ ├── OtherGrandChild.svelte │ │ │ └── index.svelte │ │ │ ├── 44 │ │ │ ├── Child.svelte │ │ │ ├── GrandChild.svelte │ │ │ ├── OtherChild.svelte │ │ │ ├── OtherGrandChild.svelte │ │ │ └── index.svelte │ │ │ ├── 45 │ │ │ ├── Child.svelte │ │ │ ├── GrandChild.svelte │ │ │ ├── OtherChild.svelte │ │ │ ├── OtherGrandChild.svelte │ │ │ └── index.svelte │ │ │ ├── 46 │ │ │ ├── Child.svelte │ │ │ ├── GrandChild.svelte │ │ │ ├── OtherChild.svelte │ │ │ ├── OtherGrandChild.svelte │ │ │ └── index.svelte │ │ │ ├── 47 │ │ │ ├── Child.svelte │ │ │ ├── GrandChild.svelte │ │ │ ├── OtherChild.svelte │ │ │ ├── OtherGrandChild.svelte │ │ │ └── index.svelte │ │ │ ├── 48 │ │ │ ├── Child.svelte │ │ │ ├── GrandChild.svelte │ │ │ ├── OtherChild.svelte │ │ │ ├── OtherGrandChild.svelte │ │ │ └── index.svelte │ │ │ ├── 49 │ │ │ ├── Child.svelte │ │ │ ├── GrandChild.svelte │ │ │ ├── OtherChild.svelte │ │ │ ├── OtherGrandChild.svelte │ │ │ └── index.svelte │ │ │ ├── 50 │ │ │ ├── Child.svelte │ │ │ ├── GrandChild.svelte │ │ │ ├── OtherChild.svelte │ │ │ ├── OtherGrandChild.svelte │ │ │ └── index.svelte │ │ │ ├── 51 │ │ │ ├── Child.svelte │ │ │ ├── GrandChild.svelte │ │ │ ├── OtherChild.svelte │ │ │ ├── OtherGrandChild.svelte │ │ │ └── index.svelte │ │ │ ├── 52 │ │ │ ├── Child.svelte │ │ │ ├── GrandChild.svelte │ │ │ ├── OtherChild.svelte │ │ │ ├── OtherGrandChild.svelte │ │ │ └── index.svelte │ │ │ ├── 53 │ │ │ ├── Child.svelte │ │ │ ├── GrandChild.svelte │ │ │ ├── OtherChild.svelte │ │ │ ├── OtherGrandChild.svelte │ │ │ └── index.svelte │ │ │ ├── 54 │ │ │ ├── Child.svelte │ │ │ ├── GrandChild.svelte │ │ │ ├── OtherChild.svelte │ │ │ ├── OtherGrandChild.svelte │ │ │ └── index.svelte │ │ │ ├── 55 │ │ │ ├── Child.svelte │ │ │ ├── GrandChild.svelte │ │ │ ├── OtherChild.svelte │ │ │ ├── OtherGrandChild.svelte │ │ │ └── index.svelte │ │ │ ├── 56 │ │ │ ├── Child.svelte │ │ │ ├── GrandChild.svelte │ │ │ ├── OtherChild.svelte │ │ │ ├── OtherGrandChild.svelte │ │ │ └── index.svelte │ │ │ ├── 57 │ │ │ ├── Child.svelte │ │ │ ├── GrandChild.svelte │ │ │ ├── OtherChild.svelte │ │ │ ├── OtherGrandChild.svelte │ │ │ └── index.svelte │ │ │ ├── 58 │ │ │ ├── Child.svelte │ │ │ ├── GrandChild.svelte │ │ │ ├── OtherChild.svelte │ │ │ ├── OtherGrandChild.svelte │ │ │ └── index.svelte │ │ │ ├── 59 │ │ │ ├── Child.svelte │ │ │ ├── GrandChild.svelte │ │ │ ├── OtherChild.svelte │ │ │ ├── OtherGrandChild.svelte │ │ │ └── index.svelte │ │ │ ├── 60 │ │ │ ├── Child.svelte │ │ │ ├── GrandChild.svelte │ │ │ ├── OtherChild.svelte │ │ │ ├── OtherGrandChild.svelte │ │ │ └── index.svelte │ │ │ ├── 61 │ │ │ ├── Child.svelte │ │ │ ├── GrandChild.svelte │ │ │ ├── OtherChild.svelte │ │ │ ├── OtherGrandChild.svelte │ │ │ └── index.svelte │ │ │ ├── 62 │ │ │ ├── Child.svelte │ │ │ ├── GrandChild.svelte │ │ │ ├── OtherChild.svelte │ │ │ ├── OtherGrandChild.svelte │ │ │ └── index.svelte │ │ │ ├── 63 │ │ │ ├── Child.svelte │ │ │ ├── GrandChild.svelte │ │ │ ├── OtherChild.svelte │ │ │ ├── OtherGrandChild.svelte │ │ │ └── index.svelte │ │ │ ├── 64 │ │ │ ├── Child.svelte │ │ │ ├── GrandChild.svelte │ │ │ ├── OtherChild.svelte │ │ │ ├── OtherGrandChild.svelte │ │ │ └── index.svelte │ │ │ ├── 65 │ │ │ ├── Child.svelte │ │ │ ├── GrandChild.svelte │ │ │ ├── OtherChild.svelte │ │ │ ├── OtherGrandChild.svelte │ │ │ └── index.svelte │ │ │ ├── 66 │ │ │ ├── Child.svelte │ │ │ ├── GrandChild.svelte │ │ │ ├── OtherChild.svelte │ │ │ ├── OtherGrandChild.svelte │ │ │ └── index.svelte │ │ │ ├── 67 │ │ │ ├── Child.svelte │ │ │ ├── GrandChild.svelte │ │ │ ├── OtherChild.svelte │ │ │ ├── OtherGrandChild.svelte │ │ │ └── index.svelte │ │ │ ├── 68 │ │ │ ├── Child.svelte │ │ │ ├── GrandChild.svelte │ │ │ ├── OtherChild.svelte │ │ │ ├── OtherGrandChild.svelte │ │ │ └── index.svelte │ │ │ ├── 69 │ │ │ ├── Child.svelte │ │ │ ├── GrandChild.svelte │ │ │ ├── OtherChild.svelte │ │ │ ├── OtherGrandChild.svelte │ │ │ └── index.svelte │ │ │ ├── 70 │ │ │ ├── Child.svelte │ │ │ ├── GrandChild.svelte │ │ │ ├── OtherChild.svelte │ │ │ ├── OtherGrandChild.svelte │ │ │ └── index.svelte │ │ │ ├── 71 │ │ │ ├── Child.svelte │ │ │ ├── GrandChild.svelte │ │ │ ├── OtherChild.svelte │ │ │ ├── OtherGrandChild.svelte │ │ │ └── index.svelte │ │ │ ├── 72 │ │ │ ├── Child.svelte │ │ │ ├── GrandChild.svelte │ │ │ ├── OtherChild.svelte │ │ │ ├── OtherGrandChild.svelte │ │ │ └── index.svelte │ │ │ ├── 73 │ │ │ ├── Child.svelte │ │ │ ├── GrandChild.svelte │ │ │ ├── OtherChild.svelte │ │ │ ├── OtherGrandChild.svelte │ │ │ └── index.svelte │ │ │ ├── 74 │ │ │ ├── Child.svelte │ │ │ ├── GrandChild.svelte │ │ │ ├── OtherChild.svelte │ │ │ ├── OtherGrandChild.svelte │ │ │ └── index.svelte │ │ │ ├── 75 │ │ │ ├── Child.svelte │ │ │ ├── GrandChild.svelte │ │ │ ├── OtherChild.svelte │ │ │ ├── OtherGrandChild.svelte │ │ │ └── index.svelte │ │ │ ├── 76 │ │ │ ├── Child.svelte │ │ │ ├── GrandChild.svelte │ │ │ ├── OtherChild.svelte │ │ │ ├── OtherGrandChild.svelte │ │ │ └── index.svelte │ │ │ ├── 77 │ │ │ ├── Child.svelte │ │ │ ├── GrandChild.svelte │ │ │ ├── OtherChild.svelte │ │ │ ├── OtherGrandChild.svelte │ │ │ └── index.svelte │ │ │ ├── 78 │ │ │ ├── Child.svelte │ │ │ ├── GrandChild.svelte │ │ │ ├── OtherChild.svelte │ │ │ ├── OtherGrandChild.svelte │ │ │ └── index.svelte │ │ │ ├── 79 │ │ │ ├── Child.svelte │ │ │ ├── GrandChild.svelte │ │ │ ├── OtherChild.svelte │ │ │ ├── OtherGrandChild.svelte │ │ │ └── index.svelte │ │ │ ├── 80 │ │ │ ├── Child.svelte │ │ │ ├── GrandChild.svelte │ │ │ ├── OtherChild.svelte │ │ │ ├── OtherGrandChild.svelte │ │ │ └── index.svelte │ │ │ ├── 81 │ │ │ ├── Child.svelte │ │ │ ├── GrandChild.svelte │ │ │ ├── OtherChild.svelte │ │ │ ├── OtherGrandChild.svelte │ │ │ └── index.svelte │ │ │ ├── 82 │ │ │ ├── Child.svelte │ │ │ ├── GrandChild.svelte │ │ │ ├── OtherChild.svelte │ │ │ ├── OtherGrandChild.svelte │ │ │ └── index.svelte │ │ │ ├── 83 │ │ │ ├── Child.svelte │ │ │ ├── GrandChild.svelte │ │ │ ├── OtherChild.svelte │ │ │ ├── OtherGrandChild.svelte │ │ │ └── index.svelte │ │ │ ├── 84 │ │ │ ├── Child.svelte │ │ │ ├── GrandChild.svelte │ │ │ ├── OtherChild.svelte │ │ │ ├── OtherGrandChild.svelte │ │ │ └── index.svelte │ │ │ ├── 85 │ │ │ ├── Child.svelte │ │ │ ├── GrandChild.svelte │ │ │ ├── OtherChild.svelte │ │ │ ├── OtherGrandChild.svelte │ │ │ └── index.svelte │ │ │ ├── 86 │ │ │ ├── Child.svelte │ │ │ ├── GrandChild.svelte │ │ │ ├── OtherChild.svelte │ │ │ ├── OtherGrandChild.svelte │ │ │ └── index.svelte │ │ │ ├── 87 │ │ │ ├── Child.svelte │ │ │ ├── GrandChild.svelte │ │ │ ├── OtherChild.svelte │ │ │ ├── OtherGrandChild.svelte │ │ │ └── index.svelte │ │ │ ├── 88 │ │ │ ├── Child.svelte │ │ │ ├── GrandChild.svelte │ │ │ ├── OtherChild.svelte │ │ │ ├── OtherGrandChild.svelte │ │ │ └── index.svelte │ │ │ ├── 89 │ │ │ ├── Child.svelte │ │ │ ├── GrandChild.svelte │ │ │ ├── OtherChild.svelte │ │ │ ├── OtherGrandChild.svelte │ │ │ └── index.svelte │ │ │ ├── 90 │ │ │ ├── Child.svelte │ │ │ ├── GrandChild.svelte │ │ │ ├── OtherChild.svelte │ │ │ ├── OtherGrandChild.svelte │ │ │ └── index.svelte │ │ │ ├── 91 │ │ │ ├── Child.svelte │ │ │ ├── GrandChild.svelte │ │ │ ├── OtherChild.svelte │ │ │ ├── OtherGrandChild.svelte │ │ │ └── index.svelte │ │ │ ├── 92 │ │ │ ├── Child.svelte │ │ │ ├── GrandChild.svelte │ │ │ ├── OtherChild.svelte │ │ │ ├── OtherGrandChild.svelte │ │ │ └── index.svelte │ │ │ ├── 93 │ │ │ ├── Child.svelte │ │ │ ├── GrandChild.svelte │ │ │ ├── OtherChild.svelte │ │ │ ├── OtherGrandChild.svelte │ │ │ └── index.svelte │ │ │ ├── 94 │ │ │ ├── Child.svelte │ │ │ ├── GrandChild.svelte │ │ │ ├── OtherChild.svelte │ │ │ ├── OtherGrandChild.svelte │ │ │ └── index.svelte │ │ │ ├── 95 │ │ │ ├── Child.svelte │ │ │ ├── GrandChild.svelte │ │ │ ├── OtherChild.svelte │ │ │ ├── OtherGrandChild.svelte │ │ │ └── index.svelte │ │ │ ├── 96 │ │ │ ├── Child.svelte │ │ │ ├── GrandChild.svelte │ │ │ ├── OtherChild.svelte │ │ │ ├── OtherGrandChild.svelte │ │ │ └── index.svelte │ │ │ ├── 97 │ │ │ ├── Child.svelte │ │ │ ├── GrandChild.svelte │ │ │ ├── OtherChild.svelte │ │ │ ├── OtherGrandChild.svelte │ │ │ └── index.svelte │ │ │ ├── 98 │ │ │ ├── Child.svelte │ │ │ ├── GrandChild.svelte │ │ │ ├── OtherChild.svelte │ │ │ ├── OtherGrandChild.svelte │ │ │ └── index.svelte │ │ │ ├── 99 │ │ │ ├── Child.svelte │ │ │ ├── GrandChild.svelte │ │ │ ├── OtherChild.svelte │ │ │ ├── OtherGrandChild.svelte │ │ │ └── index.svelte │ │ │ ├── 00 │ │ │ ├── Child.svelte │ │ │ ├── GrandChild.svelte │ │ │ ├── OtherChild.svelte │ │ │ ├── OtherGrandChild.svelte │ │ │ └── index.svelte │ │ │ ├── 01 │ │ │ ├── Child.svelte │ │ │ ├── GrandChild.svelte │ │ │ ├── OtherChild.svelte │ │ │ ├── OtherGrandChild.svelte │ │ │ └── index.svelte │ │ │ ├── 02 │ │ │ ├── Child.svelte │ │ │ ├── GrandChild.svelte │ │ │ ├── OtherChild.svelte │ │ │ ├── OtherGrandChild.svelte │ │ │ └── index.svelte │ │ │ ├── 03 │ │ │ ├── Child.svelte │ │ │ ├── GrandChild.svelte │ │ │ ├── OtherChild.svelte │ │ │ ├── OtherGrandChild.svelte │ │ │ └── index.svelte │ │ │ ├── 04 │ │ │ ├── Child.svelte │ │ │ ├── GrandChild.svelte │ │ │ ├── OtherChild.svelte │ │ │ ├── OtherGrandChild.svelte │ │ │ └── index.svelte │ │ │ ├── 05 │ │ │ ├── Child.svelte │ │ │ ├── GrandChild.svelte │ │ │ ├── OtherChild.svelte │ │ │ ├── OtherGrandChild.svelte │ │ │ └── index.svelte │ │ │ ├── 06 │ │ │ ├── Child.svelte │ │ │ ├── GrandChild.svelte │ │ │ ├── OtherChild.svelte │ │ │ ├── OtherGrandChild.svelte │ │ │ └── index.svelte │ │ │ ├── 07 │ │ │ ├── Child.svelte │ │ │ ├── GrandChild.svelte │ │ │ ├── OtherChild.svelte │ │ │ ├── OtherGrandChild.svelte │ │ │ └── index.svelte │ │ │ ├── 08 │ │ │ ├── Child.svelte │ │ │ ├── GrandChild.svelte │ │ │ ├── OtherChild.svelte │ │ │ ├── OtherGrandChild.svelte │ │ │ └── index.svelte │ │ │ └── 09 │ │ │ ├── Child.svelte │ │ │ ├── GrandChild.svelte │ │ │ ├── OtherChild.svelte │ │ │ ├── OtherGrandChild.svelte │ │ │ └── index.svelte │ ├── svelte.config.js │ ├── tsconfig.json │ └── vite.config.js │ ├── minimal │ ├── .gitignore │ ├── index.html │ ├── package.json │ ├── public │ │ └── favicon.svg │ ├── src │ │ ├── App.svelte │ │ └── index.ts │ ├── svelte.config.js │ └── tsconfig.json │ ├── postcss-tailwind │ ├── .gitignore │ ├── index.html │ ├── package.json │ ├── postcss.config.js │ ├── public │ │ └── favicon.svg │ ├── src │ │ ├── App.svelte │ │ ├── index.css │ │ └── index.ts │ ├── svelte.config.js │ ├── tailwind.config.js │ └── tsconfig.json │ ├── routify-mdsvex │ ├── .gitignore │ ├── index.html │ ├── package.json │ ├── public │ │ └── favicon.svg │ ├── routify.config.js │ ├── src │ │ ├── App.svelte │ │ ├── index.ts │ │ ├── layouts │ │ │ └── MdsvexLayout.svelte │ │ └── pages │ │ │ ├── _fallback.svelte │ │ │ ├── _folder.svelte │ │ │ ├── index.svelte │ │ │ └── mdsvex.svx │ ├── svelte.config.js │ ├── tsconfig.json │ └── vite.config.js │ └── svelte-preprocess-auto │ ├── .gitignore │ ├── index.html │ ├── package.json │ ├── public │ └── favicon.svg │ ├── src │ ├── App.svelte │ ├── Nested.svelte │ └── main.ts │ ├── svelte.config.js │ └── tsconfig.json ├── index.js ├── jest.config.js ├── package-lock.json ├── package.json ├── scripts └── check-updates.js ├── svite-logo.svg ├── test ├── .gitignore ├── examples.test.js ├── global-setup.js ├── hmr-test │ ├── .gitignore │ ├── dependency │ │ ├── components │ │ │ └── Dependency.svelte │ │ ├── index.js │ │ └── package.json │ ├── index.html │ ├── package.json │ ├── public │ │ └── favicon.svg │ ├── src │ │ ├── App.svelte │ │ ├── assets │ │ │ ├── dynamic.svg │ │ │ └── static.svg │ │ ├── components │ │ │ ├── DynamicImport.svelte │ │ │ ├── HmrTest.svelte │ │ │ └── StaticImport.svelte │ │ ├── index.js │ │ └── stores │ │ │ └── hmr-stores.js │ └── vite.config.js ├── svite.test.js └── utils.js └── tools ├── log.js └── onwarn.js /.editorconfig: -------------------------------------------------------------------------------- 1 | root = true 2 | 3 | # Unix-style newlines with a newline ending every file 4 | [*] 5 | end_of_line = lf 6 | insert_final_newline = true 7 | charset = utf-8 8 | indent_style = space 9 | indent_size = 2 -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | * 2 | !index.js 3 | !package.json 4 | !LICENSE 5 | !CHANGELOG.md 6 | !README.md 7 | !tools 8 | !tools/*.js 9 | !bin 10 | !bin/svite.js 11 | -------------------------------------------------------------------------------- /.versionrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "header": "", 3 | "noVerify": true, 4 | "tagPrefix": "" 5 | } 6 | -------------------------------------------------------------------------------- /commitlint.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { extends: ['@commitlint/config-conventional'] }; 2 | -------------------------------------------------------------------------------- /examples/.gitignore: -------------------------------------------------------------------------------- 1 | /**/package-lock.json 2 | /**/yarn.lock 3 | -------------------------------------------------------------------------------- /examples/big/.gitignore: -------------------------------------------------------------------------------- 1 | .vscode 2 | .idea 3 | node_modules 4 | dist 5 | dist-ssr 6 | 7 | 8 | -------------------------------------------------------------------------------- /examples/big/README.md: -------------------------------------------------------------------------------- 1 | # do not use as a starter 2 | 3 | This example is an artificially big app used for testing 4 | -------------------------------------------------------------------------------- /examples/big/public/favicon.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /examples/big/src/app.css: -------------------------------------------------------------------------------- 1 | body { 2 | background-color: cyan; 3 | background-color: magenta; 4 | } 5 | -------------------------------------------------------------------------------- /examples/big/src/index.js: -------------------------------------------------------------------------------- 1 | import App from './App.svelte'; 2 | 3 | var app = new App({ 4 | target: document.body, 5 | }); 6 | 7 | export default app; 8 | -------------------------------------------------------------------------------- /examples/big/src/pages/00/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

GrandChild 00

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/big/src/pages/00/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |
8 |

Other Child 00

9 | 10 |

I am the other child.

11 |
12 | -------------------------------------------------------------------------------- /examples/big/src/pages/00/OtherGrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

Other GrandChild 00

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/big/src/pages/01/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

GrandChild 01

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/big/src/pages/01/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |
8 |

Other Child 01

9 | 10 |

I am the other child.

11 |
12 | -------------------------------------------------------------------------------- /examples/big/src/pages/01/OtherGrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

Other GrandChild 01

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/big/src/pages/02/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

GrandChild 02

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/big/src/pages/02/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |
8 |

Other Child 02

9 | 10 |

I am the other child.

11 |
12 | -------------------------------------------------------------------------------- /examples/big/src/pages/02/OtherGrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

Other GrandChild 02

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/big/src/pages/03/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

GrandChild 03

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/big/src/pages/03/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |
8 |

Other Child 03

9 | 10 |

I am the other child.

11 |
12 | -------------------------------------------------------------------------------- /examples/big/src/pages/03/OtherGrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

Other GrandChild 03

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/big/src/pages/04/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

GrandChild 04

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/big/src/pages/04/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |
8 |

Other Child 04

9 | 10 |

I am the other child.

11 |
12 | -------------------------------------------------------------------------------- /examples/big/src/pages/04/OtherGrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

Other GrandChild 04

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/big/src/pages/05/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

GrandChild 05

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/big/src/pages/05/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |
8 |

Other Child 05

9 | 10 |

I am the other child.

11 |
12 | -------------------------------------------------------------------------------- /examples/big/src/pages/05/OtherGrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

Other GrandChild 05

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/big/src/pages/06/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

GrandChild 06

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/big/src/pages/06/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |
8 |

Other Child 06

9 | 10 |

I am the other child.

11 |
12 | -------------------------------------------------------------------------------- /examples/big/src/pages/06/OtherGrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

Other GrandChild 06

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/big/src/pages/07/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

GrandChild 07

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/big/src/pages/07/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |
8 |

Other Child 07

9 | 10 |

I am the other child.

11 |
12 | -------------------------------------------------------------------------------- /examples/big/src/pages/07/OtherGrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

Other GrandChild 07

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/big/src/pages/08/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

GrandChild 08

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/big/src/pages/08/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |
8 |

Other Child 08

9 | 10 |

I am the other child.

11 |
12 | -------------------------------------------------------------------------------- /examples/big/src/pages/08/OtherGrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

Other GrandChild 08

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/big/src/pages/09/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

GrandChild 09

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/big/src/pages/09/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |
8 |

Other Child 09

9 | 10 |

I am the other child.

11 |
12 | -------------------------------------------------------------------------------- /examples/big/src/pages/09/OtherGrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

Other GrandChild 09

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/big/src/pages/10/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

GrandChild 10

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/big/src/pages/10/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |
8 |

Other Child 10

9 | 10 |

I am the other child.

11 |
12 | -------------------------------------------------------------------------------- /examples/big/src/pages/10/OtherGrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

Other GrandChild 10

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/big/src/pages/11/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

GrandChild 11

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/big/src/pages/11/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |
8 |

Other Child 11

9 | 10 |

I am the other child.

11 |
12 | -------------------------------------------------------------------------------- /examples/big/src/pages/11/OtherGrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

Other GrandChild 11

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/big/src/pages/12/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

GrandChild 12

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/big/src/pages/12/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |
8 |

Other Child 12

9 | 10 |

I am the other child.

11 |
12 | -------------------------------------------------------------------------------- /examples/big/src/pages/12/OtherGrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

Other GrandChild 12

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/big/src/pages/13/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

GrandChild 13

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/big/src/pages/13/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |
8 |

Other Child 13

9 | 10 |

I am the other child.

11 |
12 | -------------------------------------------------------------------------------- /examples/big/src/pages/13/OtherGrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

Other GrandChild 13

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/big/src/pages/14/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

GrandChild 14

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/big/src/pages/14/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |
8 |

Other Child 14

9 | 10 |

I am the other child.

11 |
12 | -------------------------------------------------------------------------------- /examples/big/src/pages/14/OtherGrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

Other GrandChild 14

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/big/src/pages/15/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

GrandChild 15

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/big/src/pages/15/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |
8 |

Other Child 15

9 | 10 |

I am the other child.

11 |
12 | -------------------------------------------------------------------------------- /examples/big/src/pages/15/OtherGrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

Other GrandChild 15

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/big/src/pages/16/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

GrandChild 16

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/big/src/pages/16/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |
8 |

Other Child 16

9 | 10 |

I am the other child.

11 |
12 | -------------------------------------------------------------------------------- /examples/big/src/pages/16/OtherGrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

Other GrandChild 16

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/big/src/pages/17/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

GrandChild 17

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/big/src/pages/17/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |
8 |

Other Child 17

9 | 10 |

I am the other child.

11 |
12 | -------------------------------------------------------------------------------- /examples/big/src/pages/17/OtherGrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

Other GrandChild 17

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/big/src/pages/18/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

GrandChild 18

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/big/src/pages/18/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |
8 |

Other Child 18

9 | 10 |

I am the other child.

11 |
12 | -------------------------------------------------------------------------------- /examples/big/src/pages/18/OtherGrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

Other GrandChild 18

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/big/src/pages/19/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

GrandChild 19

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/big/src/pages/19/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |
8 |

Other Child 19

9 | 10 |

I am the other child.

11 |
12 | -------------------------------------------------------------------------------- /examples/big/src/pages/19/OtherGrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

Other GrandChild 19

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/big/src/pages/20/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

GrandChild 20

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/big/src/pages/20/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |
8 |

Other Child 20

9 | 10 |

I am the other child.

11 |
12 | -------------------------------------------------------------------------------- /examples/big/src/pages/20/OtherGrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

Other GrandChild 20

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/big/src/pages/21/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

GrandChild 21

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/big/src/pages/21/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |
8 |

Other Child 21

9 | 10 |

I am the other child.

11 |
12 | -------------------------------------------------------------------------------- /examples/big/src/pages/21/OtherGrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

Other GrandChild 21

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/big/src/pages/22/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

GrandChild 22

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/big/src/pages/22/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |
8 |

Other Child 22

9 | 10 |

I am the other child.

11 |
12 | -------------------------------------------------------------------------------- /examples/big/src/pages/22/OtherGrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

Other GrandChild 22

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/big/src/pages/23/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

GrandChild 23

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/big/src/pages/23/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |
8 |

Other Child 23

9 | 10 |

I am the other child.

11 |
12 | -------------------------------------------------------------------------------- /examples/big/src/pages/23/OtherGrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

Other GrandChild 23

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/big/src/pages/24/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

GrandChild 24

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/big/src/pages/24/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |
8 |

Other Child 24

9 | 10 |

I am the other child.

11 |
12 | -------------------------------------------------------------------------------- /examples/big/src/pages/24/OtherGrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

Other GrandChild 24

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/big/src/pages/25/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

GrandChild 25

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/big/src/pages/25/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |
8 |

Other Child 25

9 | 10 |

I am the other child.

11 |
12 | -------------------------------------------------------------------------------- /examples/big/src/pages/25/OtherGrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

Other GrandChild 25

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/big/src/pages/26/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

GrandChild 26

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/big/src/pages/26/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |
8 |

Other Child 26

9 | 10 |

I am the other child.

11 |
12 | -------------------------------------------------------------------------------- /examples/big/src/pages/26/OtherGrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

Other GrandChild 26

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/big/src/pages/27/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

GrandChild 27

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/big/src/pages/27/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |
8 |

Other Child 27

9 | 10 |

I am the other child.

11 |
12 | -------------------------------------------------------------------------------- /examples/big/src/pages/27/OtherGrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

Other GrandChild 27

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/big/src/pages/28/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

GrandChild 28

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/big/src/pages/28/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |
8 |

Other Child 28

9 | 10 |

I am the other child.

11 |
12 | -------------------------------------------------------------------------------- /examples/big/src/pages/28/OtherGrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

Other GrandChild 28

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/big/src/pages/29/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

GrandChild 29

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/big/src/pages/29/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |
8 |

Other Child 29

9 | 10 |

I am the other child.

11 |
12 | -------------------------------------------------------------------------------- /examples/big/src/pages/29/OtherGrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

Other GrandChild 29

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/big/src/pages/30/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

GrandChild 30

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/big/src/pages/30/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |
8 |

Other Child 30

9 | 10 |

I am the other child.

11 |
12 | -------------------------------------------------------------------------------- /examples/big/src/pages/30/OtherGrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

Other GrandChild 30

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/big/src/pages/31/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

GrandChild 31

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/big/src/pages/31/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |
8 |

Other Child 31

9 | 10 |

I am the other child.

11 |
12 | -------------------------------------------------------------------------------- /examples/big/src/pages/31/OtherGrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

Other GrandChild 31

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/big/src/pages/32/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

GrandChild 32

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/big/src/pages/32/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |
8 |

Other Child 32

9 | 10 |

I am the other child.

11 |
12 | -------------------------------------------------------------------------------- /examples/big/src/pages/32/OtherGrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

Other GrandChild 32

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/big/src/pages/33/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

GrandChild 33

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/big/src/pages/33/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |
8 |

Other Child 33

9 | 10 |

I am the other child.

11 |
12 | -------------------------------------------------------------------------------- /examples/big/src/pages/33/OtherGrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

Other GrandChild 33

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/big/src/pages/34/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

GrandChild 34

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/big/src/pages/34/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |
8 |

Other Child 34

9 | 10 |

I am the other child.

11 |
12 | -------------------------------------------------------------------------------- /examples/big/src/pages/34/OtherGrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

Other GrandChild 34

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/big/src/pages/35/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

GrandChild 35

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/big/src/pages/35/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |
8 |

Other Child 35

9 | 10 |

I am the other child.

11 |
12 | -------------------------------------------------------------------------------- /examples/big/src/pages/35/OtherGrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

Other GrandChild 35

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/big/src/pages/36/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

GrandChild 36

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/big/src/pages/36/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |
8 |

Other Child 36

9 | 10 |

I am the other child.

11 |
12 | -------------------------------------------------------------------------------- /examples/big/src/pages/36/OtherGrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

Other GrandChild 36

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/big/src/pages/37/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

GrandChild 37

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/big/src/pages/37/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |
8 |

Other Child 37

9 | 10 |

I am the other child.

11 |
12 | -------------------------------------------------------------------------------- /examples/big/src/pages/37/OtherGrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

Other GrandChild 37

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/big/src/pages/38/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

GrandChild 38

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/big/src/pages/38/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |
8 |

Other Child 38

9 | 10 |

I am the other child.

11 |
12 | -------------------------------------------------------------------------------- /examples/big/src/pages/38/OtherGrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

Other GrandChild 38

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/big/src/pages/39/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

GrandChild 39

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/big/src/pages/39/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |
8 |

Other Child 39

9 | 10 |

I am the other child.

11 |
12 | -------------------------------------------------------------------------------- /examples/big/src/pages/39/OtherGrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

Other GrandChild 39

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/big/src/pages/40/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

GrandChild 40

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/big/src/pages/40/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |
8 |

Other Child 40

9 | 10 |

I am the other child.

11 |
12 | -------------------------------------------------------------------------------- /examples/big/src/pages/40/OtherGrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

Other GrandChild 40

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/big/src/pages/41/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

GrandChild 41

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/big/src/pages/41/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |
8 |

Other Child 41

9 | 10 |

I am the other child.

11 |
12 | -------------------------------------------------------------------------------- /examples/big/src/pages/41/OtherGrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

Other GrandChild 41

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/big/src/pages/42/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

GrandChild 42

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/big/src/pages/42/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |
8 |

Other Child 42

9 | 10 |

I am the other child.

11 |
12 | -------------------------------------------------------------------------------- /examples/big/src/pages/42/OtherGrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

Other GrandChild 42

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/big/src/pages/43/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

GrandChild 43

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/big/src/pages/43/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |
8 |

Other Child 43

9 | 10 |

I am the other child.

11 |
12 | -------------------------------------------------------------------------------- /examples/big/src/pages/43/OtherGrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

Other GrandChild 43

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/big/src/pages/44/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

GrandChild 44

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/big/src/pages/44/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |
8 |

Other Child 44

9 | 10 |

I am the other child.

11 |
12 | -------------------------------------------------------------------------------- /examples/big/src/pages/44/OtherGrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

Other GrandChild 44

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/big/src/pages/45/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

GrandChild 45

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/big/src/pages/45/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |
8 |

Other Child 45

9 | 10 |

I am the other child.

11 |
12 | -------------------------------------------------------------------------------- /examples/big/src/pages/45/OtherGrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

Other GrandChild 45

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/big/src/pages/46/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

GrandChild 46

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/big/src/pages/46/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |
8 |

Other Child 46

9 | 10 |

I am the other child.

11 |
12 | -------------------------------------------------------------------------------- /examples/big/src/pages/46/OtherGrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

Other GrandChild 46

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/big/src/pages/47/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

GrandChild 47

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/big/src/pages/47/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |
8 |

Other Child 47

9 | 10 |

I am the other child.

11 |
12 | -------------------------------------------------------------------------------- /examples/big/src/pages/47/OtherGrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

Other GrandChild 47

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/big/src/pages/48/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

GrandChild 48

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/big/src/pages/48/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |
8 |

Other Child 48

9 | 10 |

I am the other child.

11 |
12 | -------------------------------------------------------------------------------- /examples/big/src/pages/48/OtherGrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

Other GrandChild 48

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/big/src/pages/49/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

GrandChild 49

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/big/src/pages/49/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |
8 |

Other Child 49

9 | 10 |

I am the other child.

11 |
12 | -------------------------------------------------------------------------------- /examples/big/src/pages/49/OtherGrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

Other GrandChild 49

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/big/src/pages/50/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

GrandChild 50

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/big/src/pages/50/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |
8 |

Other Child 50

9 | 10 |

I am the other child.

11 |
12 | -------------------------------------------------------------------------------- /examples/big/src/pages/50/OtherGrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

Other GrandChild 50

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/big/src/pages/51/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

GrandChild 51

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/big/src/pages/51/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |
8 |

Other Child 51

9 | 10 |

I am the other child.

11 |
12 | -------------------------------------------------------------------------------- /examples/big/src/pages/51/OtherGrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

Other GrandChild 51

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/big/src/pages/52/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

GrandChild 52

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/big/src/pages/52/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |
8 |

Other Child 52

9 | 10 |

I am the other child.

11 |
12 | -------------------------------------------------------------------------------- /examples/big/src/pages/52/OtherGrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

Other GrandChild 52

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/big/src/pages/53/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

GrandChild 53

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/big/src/pages/53/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |
8 |

Other Child 53

9 | 10 |

I am the other child.

11 |
12 | -------------------------------------------------------------------------------- /examples/big/src/pages/53/OtherGrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

Other GrandChild 53

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/big/src/pages/54/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

GrandChild 54

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/big/src/pages/54/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |
8 |

Other Child 54

9 | 10 |

I am the other child.

11 |
12 | -------------------------------------------------------------------------------- /examples/big/src/pages/54/OtherGrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

Other GrandChild 54

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/big/src/pages/55/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

GrandChild 55

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/big/src/pages/55/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |
8 |

Other Child 55

9 | 10 |

I am the other child.

11 |
12 | -------------------------------------------------------------------------------- /examples/big/src/pages/55/OtherGrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

Other GrandChild 55

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/big/src/pages/56/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

GrandChild 56

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/big/src/pages/56/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |
8 |

Other Child 56

9 | 10 |

I am the other child.

11 |
12 | -------------------------------------------------------------------------------- /examples/big/src/pages/56/OtherGrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

Other GrandChild 56

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/big/src/pages/57/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

GrandChild 57

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/big/src/pages/57/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |
8 |

Other Child 57

9 | 10 |

I am the other child.

11 |
12 | -------------------------------------------------------------------------------- /examples/big/src/pages/57/OtherGrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

Other GrandChild 57

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/big/src/pages/58/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

GrandChild 58

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/big/src/pages/58/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |
8 |

Other Child 58

9 | 10 |

I am the other child.

11 |
12 | -------------------------------------------------------------------------------- /examples/big/src/pages/58/OtherGrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

Other GrandChild 58

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/big/src/pages/59/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

GrandChild 59

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/big/src/pages/59/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |
8 |

Other Child 59

9 | 10 |

I am the other child.

11 |
12 | -------------------------------------------------------------------------------- /examples/big/src/pages/59/OtherGrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

Other GrandChild 59

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/big/src/pages/60/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

GrandChild 60

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/big/src/pages/60/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |
8 |

Other Child 60

9 | 10 |

I am the other child.

11 |
12 | -------------------------------------------------------------------------------- /examples/big/src/pages/60/OtherGrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

Other GrandChild 60

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/big/src/pages/61/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

GrandChild 61

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/big/src/pages/61/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |
8 |

Other Child 61

9 | 10 |

I am the other child.

11 |
12 | -------------------------------------------------------------------------------- /examples/big/src/pages/61/OtherGrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

Other GrandChild 61

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/big/src/pages/62/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

GrandChild 62

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/big/src/pages/62/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |
8 |

Other Child 62

9 | 10 |

I am the other child.

11 |
12 | -------------------------------------------------------------------------------- /examples/big/src/pages/62/OtherGrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

Other GrandChild 62

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/big/src/pages/63/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

GrandChild 63

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/big/src/pages/63/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |
8 |

Other Child 63

9 | 10 |

I am the other child.

11 |
12 | -------------------------------------------------------------------------------- /examples/big/src/pages/63/OtherGrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

Other GrandChild 63

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/big/src/pages/64/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

GrandChild 64

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/big/src/pages/64/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |
8 |

Other Child 64

9 | 10 |

I am the other child.

11 |
12 | -------------------------------------------------------------------------------- /examples/big/src/pages/64/OtherGrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

Other GrandChild 64

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/big/src/pages/65/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

GrandChild 65

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/big/src/pages/65/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |
8 |

Other Child 65

9 | 10 |

I am the other child.

11 |
12 | -------------------------------------------------------------------------------- /examples/big/src/pages/65/OtherGrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

Other GrandChild 65

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/big/src/pages/66/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

GrandChild 66

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/big/src/pages/66/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |
8 |

Other Child 66

9 | 10 |

I am the other child.

11 |
12 | -------------------------------------------------------------------------------- /examples/big/src/pages/66/OtherGrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

Other GrandChild 66

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/big/src/pages/67/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

GrandChild 67

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/big/src/pages/67/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |
8 |

Other Child 67

9 | 10 |

I am the other child.

11 |
12 | -------------------------------------------------------------------------------- /examples/big/src/pages/67/OtherGrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

Other GrandChild 67

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/big/src/pages/68/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

GrandChild 68

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/big/src/pages/68/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |
8 |

Other Child 68

9 | 10 |

I am the other child.

11 |
12 | -------------------------------------------------------------------------------- /examples/big/src/pages/68/OtherGrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

Other GrandChild 68

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/big/src/pages/69/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

GrandChild 69

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/big/src/pages/69/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |
8 |

Other Child 69

9 | 10 |

I am the other child.

11 |
12 | -------------------------------------------------------------------------------- /examples/big/src/pages/69/OtherGrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

Other GrandChild 69

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/big/src/pages/70/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

GrandChild 70

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/big/src/pages/70/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |
8 |

Other Child 70

9 | 10 |

I am the other child.

11 |
12 | -------------------------------------------------------------------------------- /examples/big/src/pages/70/OtherGrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

Other GrandChild 70

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/big/src/pages/71/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

GrandChild 71

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/big/src/pages/71/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |
8 |

Other Child 71

9 | 10 |

I am the other child.

11 |
12 | -------------------------------------------------------------------------------- /examples/big/src/pages/71/OtherGrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

Other GrandChild 71

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/big/src/pages/72/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

GrandChild 72

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/big/src/pages/72/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |
8 |

Other Child 72

9 | 10 |

I am the other child.

11 |
12 | -------------------------------------------------------------------------------- /examples/big/src/pages/72/OtherGrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

Other GrandChild 72

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/big/src/pages/73/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

GrandChild 73

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/big/src/pages/73/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |
8 |

Other Child 73

9 | 10 |

I am the other child.

11 |
12 | -------------------------------------------------------------------------------- /examples/big/src/pages/73/OtherGrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

Other GrandChild 73

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/big/src/pages/74/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

GrandChild 74

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/big/src/pages/74/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |
8 |

Other Child 74

9 | 10 |

I am the other child.

11 |
12 | -------------------------------------------------------------------------------- /examples/big/src/pages/74/OtherGrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

Other GrandChild 74

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/big/src/pages/75/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

GrandChild 75

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/big/src/pages/75/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |
8 |

Other Child 75

9 | 10 |

I am the other child.

11 |
12 | -------------------------------------------------------------------------------- /examples/big/src/pages/75/OtherGrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

Other GrandChild 75

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/big/src/pages/76/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

GrandChild 76

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/big/src/pages/76/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |
8 |

Other Child 76

9 | 10 |

I am the other child.

11 |
12 | -------------------------------------------------------------------------------- /examples/big/src/pages/76/OtherGrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

Other GrandChild 76

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/big/src/pages/77/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

GrandChild 77

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/big/src/pages/77/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |
8 |

Other Child 77

9 | 10 |

I am the other child.

11 |
12 | -------------------------------------------------------------------------------- /examples/big/src/pages/77/OtherGrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

Other GrandChild 77

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/big/src/pages/78/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

GrandChild 78

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/big/src/pages/78/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |
8 |

Other Child 78

9 | 10 |

I am the other child.

11 |
12 | -------------------------------------------------------------------------------- /examples/big/src/pages/78/OtherGrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

Other GrandChild 78

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/big/src/pages/79/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

GrandChild 79

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/big/src/pages/79/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |
8 |

Other Child 79

9 | 10 |

I am the other child.

11 |
12 | -------------------------------------------------------------------------------- /examples/big/src/pages/79/OtherGrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

Other GrandChild 79

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/big/src/pages/80/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

GrandChild 80

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/big/src/pages/80/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |
8 |

Other Child 80

9 | 10 |

I am the other child.

11 |
12 | -------------------------------------------------------------------------------- /examples/big/src/pages/80/OtherGrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

Other GrandChild 80

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/big/src/pages/81/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

GrandChild 81

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/big/src/pages/81/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |
8 |

Other Child 81

9 | 10 |

I am the other child.

11 |
12 | -------------------------------------------------------------------------------- /examples/big/src/pages/81/OtherGrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

Other GrandChild 81

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/big/src/pages/82/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

GrandChild 82

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/big/src/pages/82/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |
8 |

Other Child 82

9 | 10 |

I am the other child.

11 |
12 | -------------------------------------------------------------------------------- /examples/big/src/pages/82/OtherGrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

Other GrandChild 82

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/big/src/pages/83/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

GrandChild 83

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/big/src/pages/83/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |
8 |

Other Child 83

9 | 10 |

I am the other child.

11 |
12 | -------------------------------------------------------------------------------- /examples/big/src/pages/83/OtherGrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

Other GrandChild 83

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/big/src/pages/84/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

GrandChild 84

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/big/src/pages/84/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |
8 |

Other Child 84

9 | 10 |

I am the other child.

11 |
12 | -------------------------------------------------------------------------------- /examples/big/src/pages/84/OtherGrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

Other GrandChild 84

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/big/src/pages/85/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

GrandChild 85

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/big/src/pages/85/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |
8 |

Other Child 85

9 | 10 |

I am the other child.

11 |
12 | -------------------------------------------------------------------------------- /examples/big/src/pages/85/OtherGrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

Other GrandChild 85

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/big/src/pages/86/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

GrandChild 86

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/big/src/pages/86/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |
8 |

Other Child 86

9 | 10 |

I am the other child.

11 |
12 | -------------------------------------------------------------------------------- /examples/big/src/pages/86/OtherGrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

Other GrandChild 86

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/big/src/pages/87/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

GrandChild 87

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/big/src/pages/87/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |
8 |

Other Child 87

9 | 10 |

I am the other child.

11 |
12 | -------------------------------------------------------------------------------- /examples/big/src/pages/87/OtherGrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

Other GrandChild 87

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/big/src/pages/88/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

GrandChild 88

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/big/src/pages/88/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |
8 |

Other Child 88

9 | 10 |

I am the other child.

11 |
12 | -------------------------------------------------------------------------------- /examples/big/src/pages/88/OtherGrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

Other GrandChild 88

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/big/src/pages/89/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

GrandChild 89

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/big/src/pages/89/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |
8 |

Other Child 89

9 | 10 |

I am the other child.

11 |
12 | -------------------------------------------------------------------------------- /examples/big/src/pages/89/OtherGrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

Other GrandChild 89

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/big/src/pages/90/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

GrandChild 90

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/big/src/pages/90/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |
8 |

Other Child 90

9 | 10 |

I am the other child.

11 |
12 | -------------------------------------------------------------------------------- /examples/big/src/pages/90/OtherGrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

Other GrandChild 90

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/big/src/pages/91/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

GrandChild 91

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/big/src/pages/91/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |
8 |

Other Child 91

9 | 10 |

I am the other child.

11 |
12 | -------------------------------------------------------------------------------- /examples/big/src/pages/91/OtherGrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

Other GrandChild 91

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/big/src/pages/92/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

GrandChild 92

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/big/src/pages/92/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |
8 |

Other Child 92

9 | 10 |

I am the other child.

11 |
12 | -------------------------------------------------------------------------------- /examples/big/src/pages/92/OtherGrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

Other GrandChild 92

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/big/src/pages/93/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

GrandChild 93

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/big/src/pages/93/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |
8 |

Other Child 93

9 | 10 |

I am the other child.

11 |
12 | -------------------------------------------------------------------------------- /examples/big/src/pages/93/OtherGrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

Other GrandChild 93

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/big/src/pages/94/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

GrandChild 94

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/big/src/pages/94/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |
8 |

Other Child 94

9 | 10 |

I am the other child.

11 |
12 | -------------------------------------------------------------------------------- /examples/big/src/pages/94/OtherGrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

Other GrandChild 94

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/big/src/pages/95/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

GrandChild 95

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/big/src/pages/95/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |
8 |

Other Child 95

9 | 10 |

I am the other child.

11 |
12 | -------------------------------------------------------------------------------- /examples/big/src/pages/95/OtherGrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

Other GrandChild 95

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/big/src/pages/96/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

GrandChild 96

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/big/src/pages/96/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |
8 |

Other Child 96

9 | 10 |

I am the other child.

11 |
12 | -------------------------------------------------------------------------------- /examples/big/src/pages/96/OtherGrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

Other GrandChild 96

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/big/src/pages/97/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

GrandChild 97

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/big/src/pages/97/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |
8 |

Other Child 97

9 | 10 |

I am the other child.

11 |
12 | -------------------------------------------------------------------------------- /examples/big/src/pages/97/OtherGrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

Other GrandChild 97

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/big/src/pages/98/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

GrandChild 98

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/big/src/pages/98/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |
8 |

Other Child 98

9 | 10 |

I am the other child.

11 |
12 | -------------------------------------------------------------------------------- /examples/big/src/pages/98/OtherGrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

Other GrandChild 98

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/big/src/pages/99/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

GrandChild 99

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/big/src/pages/99/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |
8 |

Other Child 99

9 | 10 |

I am the other child.

11 |
12 | -------------------------------------------------------------------------------- /examples/big/src/pages/99/OtherGrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

Other GrandChild 99

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/hmr-benchmark/.gitignore: -------------------------------------------------------------------------------- 1 | .vscode 2 | .idea 3 | node_modules 4 | dist 5 | dist-ssr 6 | screenshots 7 | -------------------------------------------------------------------------------- /examples/hmr-benchmark/src/App.svelte: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /examples/hmr-benchmark/src/index.js: -------------------------------------------------------------------------------- 1 | import App from './App.svelte'; 2 | 3 | const app = new App({ 4 | target: document.body, 5 | }); 6 | 7 | export default app; 8 | -------------------------------------------------------------------------------- /examples/hmr-benchmark/svelte.config.js: -------------------------------------------------------------------------------- 1 | const { typescript } = require('svelte-preprocess'); 2 | module.exports = { 3 | preprocess: [typescript()], 4 | }; 5 | -------------------------------------------------------------------------------- /examples/hmr-benchmark/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "@tsconfig/svelte/tsconfig.json", 3 | "include": ["src/**/*"], 4 | "exclude": ["node_modules/*", "public/*"] 5 | } 6 | -------------------------------------------------------------------------------- /examples/hmr-showcase/.gitignore: -------------------------------------------------------------------------------- 1 | .vscode 2 | .idea 3 | node_modules 4 | dist 5 | dist-ssr 6 | -------------------------------------------------------------------------------- /examples/hmr-showcase/public/favicon.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /examples/hmr-showcase/src/index.js: -------------------------------------------------------------------------------- 1 | import App from './App.svelte'; 2 | 3 | const app = new App({ 4 | target: document.body, 5 | }); 6 | 7 | export default app; 8 | -------------------------------------------------------------------------------- /examples/hmr-showcase/vite.config.js: -------------------------------------------------------------------------------- 1 | const svite = require('svite'); 2 | module.exports = { 3 | plugins: [svite()], 4 | }; 5 | -------------------------------------------------------------------------------- /examples/minimal/.gitignore: -------------------------------------------------------------------------------- 1 | .vscode 2 | .idea 3 | node_modules 4 | dist 5 | dist-ssr 6 | 7 | -------------------------------------------------------------------------------- /examples/minimal/public/favicon.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /examples/minimal/src/index.js: -------------------------------------------------------------------------------- 1 | import App from './App.svelte'; 2 | 3 | const app = new App({ 4 | target: document.body, 5 | }); 6 | 7 | export default app; 8 | -------------------------------------------------------------------------------- /examples/postcss-tailwind/.gitignore: -------------------------------------------------------------------------------- 1 | .vscode 2 | .idea 3 | node_modules 4 | dist 5 | dist-ssr 6 | -------------------------------------------------------------------------------- /examples/postcss-tailwind/postcss.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | plugins: [require('postcss-import'), require('tailwindcss'), require('postcss-preset-env')({ stage: 1 })], 3 | }; 4 | -------------------------------------------------------------------------------- /examples/postcss-tailwind/src/index.css: -------------------------------------------------------------------------------- 1 | @import 'tailwindcss/base.css'; 2 | @import 'tailwindcss/components.css'; 3 | @import 'tailwindcss/utilities.css'; 4 | -------------------------------------------------------------------------------- /examples/postcss-tailwind/src/index.js: -------------------------------------------------------------------------------- 1 | import App from './App.svelte'; 2 | import './index.css'; 3 | 4 | const app = new App({ 5 | target: document.body, 6 | }); 7 | 8 | export default app; 9 | -------------------------------------------------------------------------------- /examples/postcss-tailwind/svelte.config.js: -------------------------------------------------------------------------------- 1 | const { postcss } = require('svelte-preprocess'); 2 | module.exports = { 3 | preprocess: [postcss()], 4 | }; 5 | -------------------------------------------------------------------------------- /examples/routify-mdsvex/.gitignore: -------------------------------------------------------------------------------- 1 | .vscode 2 | .idea 3 | node_modules 4 | dist 5 | dist-ssr 6 | .routify 7 | -------------------------------------------------------------------------------- /examples/routify-mdsvex/routify.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | routifyDir: '.routify', 3 | dynamicImports: true, 4 | extensions: ['svelte', 'svx'], 5 | }; 6 | -------------------------------------------------------------------------------- /examples/routify-mdsvex/src/App.svelte: -------------------------------------------------------------------------------- 1 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /examples/routify-mdsvex/src/index.js: -------------------------------------------------------------------------------- 1 | import App from './App.svelte'; 2 | 3 | const app = new App({ 4 | target: document.body, 5 | }); 6 | 7 | export default app; 8 | -------------------------------------------------------------------------------- /examples/routify-mdsvex/src/pages/index.svelte: -------------------------------------------------------------------------------- 1 |

Welcome to the routify example

2 | Check out the link in the nav 3 | -------------------------------------------------------------------------------- /examples/routify-mdsvex/vite.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | optimizeDeps: { 3 | exclude: ['@roxi/routify'], 4 | }, 5 | }; 6 | -------------------------------------------------------------------------------- /examples/svelte-preprocess-auto/.gitignore: -------------------------------------------------------------------------------- 1 | .vscode 2 | .idea 3 | node_modules 4 | dist 5 | dist-ssr 6 | 7 | -------------------------------------------------------------------------------- /examples/svelte-preprocess-auto/src/Nested.svelte: -------------------------------------------------------------------------------- 1 | 4 | 5 |
Your name is '{name}'
6 | -------------------------------------------------------------------------------- /examples/typescript/big/.gitignore: -------------------------------------------------------------------------------- 1 | .vscode 2 | .idea 3 | node_modules 4 | dist 5 | dist-ssr 6 | 7 | 8 | -------------------------------------------------------------------------------- /examples/typescript/big/README.md: -------------------------------------------------------------------------------- 1 | # do not use as a starter 2 | 3 | This example is an artificially big app used for testing 4 | -------------------------------------------------------------------------------- /examples/typescript/big/src/app.css: -------------------------------------------------------------------------------- 1 | body { 2 | background-color: cyan; 3 | background-color: magenta; 4 | } 5 | -------------------------------------------------------------------------------- /examples/typescript/big/src/index.ts: -------------------------------------------------------------------------------- 1 | import App from './App.svelte'; 2 | 3 | const app = new App({ 4 | target: document.body, 5 | }); 6 | 7 | export default app; 8 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/00/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

GrandChild 00

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/00/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |
8 |

Other Child 00

9 | 10 |

I am the other child.

11 |
12 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/00/OtherGrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

Other GrandChild 00

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/01/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

GrandChild 01

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/01/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |
8 |

Other Child 01

9 | 10 |

I am the other child.

11 |
12 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/01/OtherGrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

Other GrandChild 01

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/02/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

GrandChild 02

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/02/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |
8 |

Other Child 02

9 | 10 |

I am the other child.

11 |
12 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/02/OtherGrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

Other GrandChild 02

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/03/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

GrandChild 03

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/03/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |
8 |

Other Child 03

9 | 10 |

I am the other child.

11 |
12 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/03/OtherGrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

Other GrandChild 03

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/04/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

GrandChild 04

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/04/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |
8 |

Other Child 04

9 | 10 |

I am the other child.

11 |
12 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/04/OtherGrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

Other GrandChild 04

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/05/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

GrandChild 05

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/05/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |
8 |

Other Child 05

9 | 10 |

I am the other child.

11 |
12 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/05/OtherGrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

Other GrandChild 05

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/06/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

GrandChild 06

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/06/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |
8 |

Other Child 06

9 | 10 |

I am the other child.

11 |
12 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/06/OtherGrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

Other GrandChild 06

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/07/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

GrandChild 07

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/07/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |
8 |

Other Child 07

9 | 10 |

I am the other child.

11 |
12 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/07/OtherGrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

Other GrandChild 07

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/08/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

GrandChild 08

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/08/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |
8 |

Other Child 08

9 | 10 |

I am the other child.

11 |
12 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/08/OtherGrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

Other GrandChild 08

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/09/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

GrandChild 09

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/09/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |
8 |

Other Child 09

9 | 10 |

I am the other child.

11 |
12 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/09/OtherGrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

Other GrandChild 09

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/10/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

GrandChild 10

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/10/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |
8 |

Other Child 10

9 | 10 |

I am the other child.

11 |
12 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/10/OtherGrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

Other GrandChild 10

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/11/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

GrandChild 11

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/11/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |
8 |

Other Child 11

9 | 10 |

I am the other child.

11 |
12 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/11/OtherGrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

Other GrandChild 11

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/12/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

GrandChild 12

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/12/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |
8 |

Other Child 12

9 | 10 |

I am the other child.

11 |
12 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/12/OtherGrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

Other GrandChild 12

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/13/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

GrandChild 13

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/13/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |
8 |

Other Child 13

9 | 10 |

I am the other child.

11 |
12 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/13/OtherGrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

Other GrandChild 13

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/14/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

GrandChild 14

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/14/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |
8 |

Other Child 14

9 | 10 |

I am the other child.

11 |
12 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/14/OtherGrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

Other GrandChild 14

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/15/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

GrandChild 15

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/15/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |
8 |

Other Child 15

9 | 10 |

I am the other child.

11 |
12 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/15/OtherGrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

Other GrandChild 15

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/16/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

GrandChild 16

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/16/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |
8 |

Other Child 16

9 | 10 |

I am the other child.

11 |
12 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/16/OtherGrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

Other GrandChild 16

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/17/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

GrandChild 17

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/17/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |
8 |

Other Child 17

9 | 10 |

I am the other child.

11 |
12 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/17/OtherGrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

Other GrandChild 17

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/18/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

GrandChild 18

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/18/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |
8 |

Other Child 18

9 | 10 |

I am the other child.

11 |
12 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/18/OtherGrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

Other GrandChild 18

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/19/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

GrandChild 19

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/19/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |
8 |

Other Child 19

9 | 10 |

I am the other child.

11 |
12 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/19/OtherGrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

Other GrandChild 19

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/20/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

GrandChild 20

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/20/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |
8 |

Other Child 20

9 | 10 |

I am the other child.

11 |
12 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/20/OtherGrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

Other GrandChild 20

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/21/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

GrandChild 21

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/21/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |
8 |

Other Child 21

9 | 10 |

I am the other child.

11 |
12 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/21/OtherGrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

Other GrandChild 21

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/22/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

GrandChild 22

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/22/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |
8 |

Other Child 22

9 | 10 |

I am the other child.

11 |
12 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/22/OtherGrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

Other GrandChild 22

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/23/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

GrandChild 23

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/23/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |
8 |

Other Child 23

9 | 10 |

I am the other child.

11 |
12 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/23/OtherGrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

Other GrandChild 23

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/24/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

GrandChild 24

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/24/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |
8 |

Other Child 24

9 | 10 |

I am the other child.

11 |
12 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/24/OtherGrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

Other GrandChild 24

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/25/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

GrandChild 25

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/25/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |
8 |

Other Child 25

9 | 10 |

I am the other child.

11 |
12 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/25/OtherGrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

Other GrandChild 25

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/26/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

GrandChild 26

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/26/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |
8 |

Other Child 26

9 | 10 |

I am the other child.

11 |
12 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/26/OtherGrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

Other GrandChild 26

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/27/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

GrandChild 27

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/27/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |
8 |

Other Child 27

9 | 10 |

I am the other child.

11 |
12 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/27/OtherGrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

Other GrandChild 27

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/28/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

GrandChild 28

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/28/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |
8 |

Other Child 28

9 | 10 |

I am the other child.

11 |
12 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/28/OtherGrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

Other GrandChild 28

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/29/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

GrandChild 29

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/29/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |
8 |

Other Child 29

9 | 10 |

I am the other child.

11 |
12 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/29/OtherGrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

Other GrandChild 29

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/30/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

GrandChild 30

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/30/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |
8 |

Other Child 30

9 | 10 |

I am the other child.

11 |
12 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/30/OtherGrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

Other GrandChild 30

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/31/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

GrandChild 31

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/31/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |
8 |

Other Child 31

9 | 10 |

I am the other child.

11 |
12 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/31/OtherGrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

Other GrandChild 31

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/32/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

GrandChild 32

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/32/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |
8 |

Other Child 32

9 | 10 |

I am the other child.

11 |
12 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/32/OtherGrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

Other GrandChild 32

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/33/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

GrandChild 33

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/33/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |
8 |

Other Child 33

9 | 10 |

I am the other child.

11 |
12 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/33/OtherGrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

Other GrandChild 33

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/34/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

GrandChild 34

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/34/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |
8 |

Other Child 34

9 | 10 |

I am the other child.

11 |
12 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/34/OtherGrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

Other GrandChild 34

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/35/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

GrandChild 35

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/35/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |
8 |

Other Child 35

9 | 10 |

I am the other child.

11 |
12 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/35/OtherGrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

Other GrandChild 35

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/36/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

GrandChild 36

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/36/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |
8 |

Other Child 36

9 | 10 |

I am the other child.

11 |
12 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/36/OtherGrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

Other GrandChild 36

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/37/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

GrandChild 37

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/37/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |
8 |

Other Child 37

9 | 10 |

I am the other child.

11 |
12 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/37/OtherGrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

Other GrandChild 37

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/38/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

GrandChild 38

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/38/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |
8 |

Other Child 38

9 | 10 |

I am the other child.

11 |
12 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/38/OtherGrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

Other GrandChild 38

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/39/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

GrandChild 39

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/39/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |
8 |

Other Child 39

9 | 10 |

I am the other child.

11 |
12 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/39/OtherGrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

Other GrandChild 39

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/40/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

GrandChild 40

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/40/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |
8 |

Other Child 40

9 | 10 |

I am the other child.

11 |
12 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/40/OtherGrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

Other GrandChild 40

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/41/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

GrandChild 41

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/41/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |
8 |

Other Child 41

9 | 10 |

I am the other child.

11 |
12 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/41/OtherGrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

Other GrandChild 41

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/42/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

GrandChild 42

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/42/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |
8 |

Other Child 42

9 | 10 |

I am the other child.

11 |
12 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/42/OtherGrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

Other GrandChild 42

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/43/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

GrandChild 43

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/43/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |
8 |

Other Child 43

9 | 10 |

I am the other child.

11 |
12 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/43/OtherGrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

Other GrandChild 43

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/44/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

GrandChild 44

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/44/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |
8 |

Other Child 44

9 | 10 |

I am the other child.

11 |
12 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/44/OtherGrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

Other GrandChild 44

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/45/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

GrandChild 45

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/45/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |
8 |

Other Child 45

9 | 10 |

I am the other child.

11 |
12 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/45/OtherGrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

Other GrandChild 45

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/46/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

GrandChild 46

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/46/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |
8 |

Other Child 46

9 | 10 |

I am the other child.

11 |
12 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/46/OtherGrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

Other GrandChild 46

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/47/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

GrandChild 47

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/47/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |
8 |

Other Child 47

9 | 10 |

I am the other child.

11 |
12 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/47/OtherGrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

Other GrandChild 47

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/48/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

GrandChild 48

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/48/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |
8 |

Other Child 48

9 | 10 |

I am the other child.

11 |
12 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/48/OtherGrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

Other GrandChild 48

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/49/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

GrandChild 49

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/49/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |
8 |

Other Child 49

9 | 10 |

I am the other child.

11 |
12 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/49/OtherGrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

Other GrandChild 49

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/50/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

GrandChild 50

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/50/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |
8 |

Other Child 50

9 | 10 |

I am the other child.

11 |
12 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/50/OtherGrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

Other GrandChild 50

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/51/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

GrandChild 51

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/51/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |
8 |

Other Child 51

9 | 10 |

I am the other child.

11 |
12 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/51/OtherGrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

Other GrandChild 51

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/52/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

GrandChild 52

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/52/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |
8 |

Other Child 52

9 | 10 |

I am the other child.

11 |
12 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/52/OtherGrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

Other GrandChild 52

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/53/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

GrandChild 53

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/53/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |
8 |

Other Child 53

9 | 10 |

I am the other child.

11 |
12 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/53/OtherGrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

Other GrandChild 53

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/54/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

GrandChild 54

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/54/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |
8 |

Other Child 54

9 | 10 |

I am the other child.

11 |
12 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/54/OtherGrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

Other GrandChild 54

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/55/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

GrandChild 55

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/55/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |
8 |

Other Child 55

9 | 10 |

I am the other child.

11 |
12 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/55/OtherGrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

Other GrandChild 55

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/56/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

GrandChild 56

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/56/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |
8 |

Other Child 56

9 | 10 |

I am the other child.

11 |
12 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/56/OtherGrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

Other GrandChild 56

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/57/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

GrandChild 57

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/57/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |
8 |

Other Child 57

9 | 10 |

I am the other child.

11 |
12 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/57/OtherGrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

Other GrandChild 57

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/58/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

GrandChild 58

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/58/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |
8 |

Other Child 58

9 | 10 |

I am the other child.

11 |
12 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/58/OtherGrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

Other GrandChild 58

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/59/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

GrandChild 59

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/59/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |
8 |

Other Child 59

9 | 10 |

I am the other child.

11 |
12 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/59/OtherGrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

Other GrandChild 59

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/60/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

GrandChild 60

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/60/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |
8 |

Other Child 60

9 | 10 |

I am the other child.

11 |
12 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/60/OtherGrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

Other GrandChild 60

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/61/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

GrandChild 61

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/61/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |
8 |

Other Child 61

9 | 10 |

I am the other child.

11 |
12 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/61/OtherGrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

Other GrandChild 61

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/62/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

GrandChild 62

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/62/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |
8 |

Other Child 62

9 | 10 |

I am the other child.

11 |
12 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/62/OtherGrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

Other GrandChild 62

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/63/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

GrandChild 63

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/63/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |
8 |

Other Child 63

9 | 10 |

I am the other child.

11 |
12 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/63/OtherGrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

Other GrandChild 63

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/64/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

GrandChild 64

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/64/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |
8 |

Other Child 64

9 | 10 |

I am the other child.

11 |
12 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/64/OtherGrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

Other GrandChild 64

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/65/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

GrandChild 65

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/65/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |
8 |

Other Child 65

9 | 10 |

I am the other child.

11 |
12 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/65/OtherGrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

Other GrandChild 65

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/66/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

GrandChild 66

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/66/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |
8 |

Other Child 66

9 | 10 |

I am the other child.

11 |
12 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/66/OtherGrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

Other GrandChild 66

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/67/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

GrandChild 67

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/67/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |
8 |

Other Child 67

9 | 10 |

I am the other child.

11 |
12 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/67/OtherGrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

Other GrandChild 67

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/68/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

GrandChild 68

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/68/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |
8 |

Other Child 68

9 | 10 |

I am the other child.

11 |
12 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/68/OtherGrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

Other GrandChild 68

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/69/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

GrandChild 69

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/69/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |
8 |

Other Child 69

9 | 10 |

I am the other child.

11 |
12 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/69/OtherGrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

Other GrandChild 69

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/70/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

GrandChild 70

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/70/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |
8 |

Other Child 70

9 | 10 |

I am the other child.

11 |
12 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/70/OtherGrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

Other GrandChild 70

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/71/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

GrandChild 71

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/71/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |
8 |

Other Child 71

9 | 10 |

I am the other child.

11 |
12 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/71/OtherGrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

Other GrandChild 71

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/72/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

GrandChild 72

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/72/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |
8 |

Other Child 72

9 | 10 |

I am the other child.

11 |
12 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/72/OtherGrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

Other GrandChild 72

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/73/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

GrandChild 73

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/73/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |
8 |

Other Child 73

9 | 10 |

I am the other child.

11 |
12 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/73/OtherGrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

Other GrandChild 73

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/74/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

GrandChild 74

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/74/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |
8 |

Other Child 74

9 | 10 |

I am the other child.

11 |
12 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/74/OtherGrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

Other GrandChild 74

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/75/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

GrandChild 75

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/75/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |
8 |

Other Child 75

9 | 10 |

I am the other child.

11 |
12 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/75/OtherGrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

Other GrandChild 75

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/76/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

GrandChild 76

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/76/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |
8 |

Other Child 76

9 | 10 |

I am the other child.

11 |
12 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/76/OtherGrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

Other GrandChild 76

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/77/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

GrandChild 77

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/77/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |
8 |

Other Child 77

9 | 10 |

I am the other child.

11 |
12 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/77/OtherGrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

Other GrandChild 77

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/78/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

GrandChild 78

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/78/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |
8 |

Other Child 78

9 | 10 |

I am the other child.

11 |
12 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/78/OtherGrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

Other GrandChild 78

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/79/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

GrandChild 79

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/79/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |
8 |

Other Child 79

9 | 10 |

I am the other child.

11 |
12 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/79/OtherGrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

Other GrandChild 79

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/80/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

GrandChild 80

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/80/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |
8 |

Other Child 80

9 | 10 |

I am the other child.

11 |
12 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/80/OtherGrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

Other GrandChild 80

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/81/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

GrandChild 81

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/81/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |
8 |

Other Child 81

9 | 10 |

I am the other child.

11 |
12 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/81/OtherGrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

Other GrandChild 81

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/82/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

GrandChild 82

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/82/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |
8 |

Other Child 82

9 | 10 |

I am the other child.

11 |
12 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/82/OtherGrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

Other GrandChild 82

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/83/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

GrandChild 83

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/83/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |
8 |

Other Child 83

9 | 10 |

I am the other child.

11 |
12 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/83/OtherGrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

Other GrandChild 83

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/84/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

GrandChild 84

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/84/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |
8 |

Other Child 84

9 | 10 |

I am the other child.

11 |
12 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/84/OtherGrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

Other GrandChild 84

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/85/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

GrandChild 85

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/85/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |
8 |

Other Child 85

9 | 10 |

I am the other child.

11 |
12 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/85/OtherGrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

Other GrandChild 85

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/86/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

GrandChild 86

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/86/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |
8 |

Other Child 86

9 | 10 |

I am the other child.

11 |
12 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/86/OtherGrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

Other GrandChild 86

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/87/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

GrandChild 87

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/87/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |
8 |

Other Child 87

9 | 10 |

I am the other child.

11 |
12 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/87/OtherGrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

Other GrandChild 87

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/88/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

GrandChild 88

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/88/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |
8 |

Other Child 88

9 | 10 |

I am the other child.

11 |
12 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/88/OtherGrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

Other GrandChild 88

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/89/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

GrandChild 89

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/89/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |
8 |

Other Child 89

9 | 10 |

I am the other child.

11 |
12 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/89/OtherGrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

Other GrandChild 89

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/90/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

GrandChild 90

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/90/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |
8 |

Other Child 90

9 | 10 |

I am the other child.

11 |
12 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/90/OtherGrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

Other GrandChild 90

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/91/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

GrandChild 91

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/91/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |
8 |

Other Child 91

9 | 10 |

I am the other child.

11 |
12 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/91/OtherGrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

Other GrandChild 91

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/92/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

GrandChild 92

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/92/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |
8 |

Other Child 92

9 | 10 |

I am the other child.

11 |
12 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/92/OtherGrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

Other GrandChild 92

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/93/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

GrandChild 93

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/93/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |
8 |

Other Child 93

9 | 10 |

I am the other child.

11 |
12 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/93/OtherGrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

Other GrandChild 93

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/94/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

GrandChild 94

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/94/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |
8 |

Other Child 94

9 | 10 |

I am the other child.

11 |
12 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/94/OtherGrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

Other GrandChild 94

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/95/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

GrandChild 95

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/95/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |
8 |

Other Child 95

9 | 10 |

I am the other child.

11 |
12 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/95/OtherGrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

Other GrandChild 95

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/96/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

GrandChild 96

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/96/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |
8 |

Other Child 96

9 | 10 |

I am the other child.

11 |
12 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/96/OtherGrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

Other GrandChild 96

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/97/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

GrandChild 97

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/97/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |
8 |

Other Child 97

9 | 10 |

I am the other child.

11 |
12 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/97/OtherGrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

Other GrandChild 97

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/98/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

GrandChild 98

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/98/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |
8 |

Other Child 98

9 | 10 |

I am the other child.

11 |
12 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/98/OtherGrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

Other GrandChild 98

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/99/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

GrandChild 99

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/99/OtherGrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |

Other GrandChild 99

8 | 9 |

I am the child of Child.

10 | -------------------------------------------------------------------------------- /examples/typescript/big/vite.config.js: -------------------------------------------------------------------------------- 1 | const svite = require('svite'); 2 | module.exports = { 3 | plugins: [svite()], 4 | }; 5 | -------------------------------------------------------------------------------- /examples/typescript/minimal/.gitignore: -------------------------------------------------------------------------------- 1 | .vscode 2 | .idea 3 | node_modules 4 | dist 5 | dist-ssr 6 | 7 | -------------------------------------------------------------------------------- /examples/typescript/minimal/src/index.ts: -------------------------------------------------------------------------------- 1 | import App from './App.svelte'; 2 | 3 | const app = new App({ 4 | target: document.body, 5 | }); 6 | 7 | export default app; 8 | -------------------------------------------------------------------------------- /examples/typescript/postcss-tailwind/.gitignore: -------------------------------------------------------------------------------- 1 | .vscode 2 | .idea 3 | node_modules 4 | dist 5 | dist-ssr 6 | -------------------------------------------------------------------------------- /examples/typescript/postcss-tailwind/postcss.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | plugins: [require('postcss-import'), require('tailwindcss'), require('postcss-preset-env')({ stage: 1 })], 3 | }; 4 | -------------------------------------------------------------------------------- /examples/typescript/postcss-tailwind/src/index.css: -------------------------------------------------------------------------------- 1 | @import 'tailwindcss/base.css'; 2 | @import 'tailwindcss/components.css'; 3 | @import 'tailwindcss/utilities.css'; 4 | -------------------------------------------------------------------------------- /examples/typescript/postcss-tailwind/src/index.ts: -------------------------------------------------------------------------------- 1 | import App from './App.svelte'; 2 | import './index.css'; 3 | 4 | const app = new App({ 5 | target: document.body, 6 | }); 7 | 8 | export default app; 9 | -------------------------------------------------------------------------------- /examples/typescript/routify-mdsvex/.gitignore: -------------------------------------------------------------------------------- 1 | .vscode 2 | .idea 3 | node_modules 4 | dist 5 | dist-ssr 6 | .routify 7 | -------------------------------------------------------------------------------- /examples/typescript/routify-mdsvex/routify.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | routifyDir: '.routify', 3 | dynamicImports: true, 4 | extensions: ['svelte', 'svx'], 5 | }; 6 | -------------------------------------------------------------------------------- /examples/typescript/routify-mdsvex/src/App.svelte: -------------------------------------------------------------------------------- 1 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /examples/typescript/routify-mdsvex/src/index.ts: -------------------------------------------------------------------------------- 1 | import App from './App.svelte'; 2 | 3 | const app = new App({ 4 | target: document.body, 5 | }); 6 | 7 | export default app; 8 | -------------------------------------------------------------------------------- /examples/typescript/routify-mdsvex/src/pages/index.svelte: -------------------------------------------------------------------------------- 1 |

Welcome to the routify example

2 | Check out the link in the nav 3 | -------------------------------------------------------------------------------- /examples/typescript/routify-mdsvex/vite.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | optimizeDeps: { 3 | exclude: ['@roxi/routify'], 4 | }, 5 | }; 6 | -------------------------------------------------------------------------------- /examples/typescript/svelte-preprocess-auto/.gitignore: -------------------------------------------------------------------------------- 1 | .vscode 2 | .idea 3 | node_modules 4 | dist 5 | dist-ssr 6 | 7 | -------------------------------------------------------------------------------- /examples/typescript/svelte-preprocess-auto/src/Nested.svelte: -------------------------------------------------------------------------------- 1 | 4 | 5 |
Your name is '{name}'
6 | -------------------------------------------------------------------------------- /examples/typescript/svelte-preprocess-auto/svelte.config.js: -------------------------------------------------------------------------------- 1 | const sveltePreprocess = require('svelte-preprocess'); 2 | module.exports = { 3 | preprocess: sveltePreprocess(), 4 | }; 5 | -------------------------------------------------------------------------------- /test/.gitignore: -------------------------------------------------------------------------------- 1 | temp 2 | cache 3 | -------------------------------------------------------------------------------- /test/hmr-test/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | dist 3 | temp 4 | package-lock.json 5 | -------------------------------------------------------------------------------- /test/hmr-test/dependency/components/Dependency.svelte: -------------------------------------------------------------------------------- 1 | 4 | 5 |
{label}
6 | -------------------------------------------------------------------------------- /test/hmr-test/dependency/index.js: -------------------------------------------------------------------------------- 1 | import Dependency from './components/Dependency.svelte'; 2 | export default Dependency; 3 | -------------------------------------------------------------------------------- /test/hmr-test/dependency/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "1.0.0", 3 | "name": "@depdendency/dependency", 4 | "main": "index.js" 5 | } 6 | -------------------------------------------------------------------------------- /test/hmr-test/public/favicon.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /test/hmr-test/src/assets/static.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /test/hmr-test/src/index.js: -------------------------------------------------------------------------------- 1 | import App from './App.svelte'; 2 | 3 | const app = new App({ 4 | target: document.body, 5 | }); 6 | 7 | export default app; 8 | -------------------------------------------------------------------------------- /test/hmr-test/vite.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | optimizeDeps: { 3 | include: ['@dependency/dependency'], 4 | }, 5 | }; 6 | --------------------------------------------------------------------------------