├── .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 | 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 |
I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/big/src/pages/00/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the other child.
11 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/big/src/pages/01/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/big/src/pages/01/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the other child.
11 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/big/src/pages/02/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/big/src/pages/02/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the other child.
11 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/big/src/pages/03/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/big/src/pages/03/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the other child.
11 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/big/src/pages/04/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/big/src/pages/04/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the other child.
11 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/big/src/pages/05/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/big/src/pages/05/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the other child.
11 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/big/src/pages/06/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/big/src/pages/06/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the other child.
11 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/big/src/pages/07/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/big/src/pages/07/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the other child.
11 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/big/src/pages/08/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/big/src/pages/08/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the other child.
11 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/big/src/pages/09/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/big/src/pages/09/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the other child.
11 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/big/src/pages/10/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/big/src/pages/10/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the other child.
11 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/big/src/pages/11/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/big/src/pages/11/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the other child.
11 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/big/src/pages/12/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/big/src/pages/12/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the other child.
11 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/big/src/pages/13/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/big/src/pages/13/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the other child.
11 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/big/src/pages/14/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/big/src/pages/14/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the other child.
11 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/big/src/pages/15/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/big/src/pages/15/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the other child.
11 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/big/src/pages/16/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/big/src/pages/16/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the other child.
11 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/big/src/pages/17/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/big/src/pages/17/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the other child.
11 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/big/src/pages/18/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/big/src/pages/18/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the other child.
11 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/big/src/pages/19/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/big/src/pages/19/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the other child.
11 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/big/src/pages/20/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/big/src/pages/20/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the other child.
11 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/big/src/pages/21/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/big/src/pages/21/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the other child.
11 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/big/src/pages/22/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/big/src/pages/22/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the other child.
11 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/big/src/pages/23/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/big/src/pages/23/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the other child.
11 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/big/src/pages/24/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/big/src/pages/24/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the other child.
11 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/big/src/pages/25/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/big/src/pages/25/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the other child.
11 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/big/src/pages/26/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/big/src/pages/26/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the other child.
11 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/big/src/pages/27/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/big/src/pages/27/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the other child.
11 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/big/src/pages/28/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/big/src/pages/28/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the other child.
11 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/big/src/pages/29/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/big/src/pages/29/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the other child.
11 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/big/src/pages/30/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/big/src/pages/30/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the other child.
11 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/big/src/pages/31/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/big/src/pages/31/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the other child.
11 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/big/src/pages/32/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/big/src/pages/32/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the other child.
11 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/big/src/pages/33/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/big/src/pages/33/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the other child.
11 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/big/src/pages/34/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/big/src/pages/34/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the other child.
11 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/big/src/pages/35/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/big/src/pages/35/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the other child.
11 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/big/src/pages/36/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/big/src/pages/36/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the other child.
11 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/big/src/pages/37/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/big/src/pages/37/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the other child.
11 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/big/src/pages/38/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/big/src/pages/38/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the other child.
11 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/big/src/pages/39/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/big/src/pages/39/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the other child.
11 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/big/src/pages/40/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/big/src/pages/40/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the other child.
11 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/big/src/pages/41/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/big/src/pages/41/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the other child.
11 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/big/src/pages/42/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/big/src/pages/42/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the other child.
11 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/big/src/pages/43/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/big/src/pages/43/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the other child.
11 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/big/src/pages/44/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/big/src/pages/44/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the other child.
11 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/big/src/pages/45/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/big/src/pages/45/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the other child.
11 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/big/src/pages/46/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/big/src/pages/46/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the other child.
11 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/big/src/pages/47/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/big/src/pages/47/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the other child.
11 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/big/src/pages/48/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/big/src/pages/48/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the other child.
11 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/big/src/pages/49/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/big/src/pages/49/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the other child.
11 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/big/src/pages/50/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/big/src/pages/50/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the other child.
11 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/big/src/pages/51/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/big/src/pages/51/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the other child.
11 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/big/src/pages/52/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/big/src/pages/52/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the other child.
11 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/big/src/pages/53/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/big/src/pages/53/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the other child.
11 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/big/src/pages/54/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/big/src/pages/54/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the other child.
11 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/big/src/pages/55/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/big/src/pages/55/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the other child.
11 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/big/src/pages/56/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/big/src/pages/56/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the other child.
11 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/big/src/pages/57/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/big/src/pages/57/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the other child.
11 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/big/src/pages/58/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/big/src/pages/58/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the other child.
11 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/big/src/pages/59/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/big/src/pages/59/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the other child.
11 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/big/src/pages/60/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/big/src/pages/60/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the other child.
11 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/big/src/pages/61/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/big/src/pages/61/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the other child.
11 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/big/src/pages/62/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/big/src/pages/62/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the other child.
11 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/big/src/pages/63/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/big/src/pages/63/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the other child.
11 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/big/src/pages/64/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/big/src/pages/64/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the other child.
11 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/big/src/pages/65/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/big/src/pages/65/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the other child.
11 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/big/src/pages/66/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/big/src/pages/66/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the other child.
11 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/big/src/pages/67/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/big/src/pages/67/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the other child.
11 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/big/src/pages/68/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/big/src/pages/68/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the other child.
11 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/big/src/pages/69/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/big/src/pages/69/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the other child.
11 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/big/src/pages/70/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/big/src/pages/70/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the other child.
11 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/big/src/pages/71/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/big/src/pages/71/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the other child.
11 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/big/src/pages/72/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/big/src/pages/72/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the other child.
11 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/big/src/pages/73/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/big/src/pages/73/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the other child.
11 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/big/src/pages/74/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/big/src/pages/74/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the other child.
11 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/big/src/pages/75/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/big/src/pages/75/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the other child.
11 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/big/src/pages/76/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/big/src/pages/76/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the other child.
11 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/big/src/pages/77/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/big/src/pages/77/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the other child.
11 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/big/src/pages/78/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/big/src/pages/78/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the other child.
11 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/big/src/pages/79/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/big/src/pages/79/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the other child.
11 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/big/src/pages/80/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/big/src/pages/80/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the other child.
11 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/big/src/pages/81/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/big/src/pages/81/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the other child.
11 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/big/src/pages/82/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/big/src/pages/82/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the other child.
11 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/big/src/pages/83/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/big/src/pages/83/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the other child.
11 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/big/src/pages/84/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/big/src/pages/84/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the other child.
11 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/big/src/pages/85/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/big/src/pages/85/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the other child.
11 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/big/src/pages/86/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/big/src/pages/86/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the other child.
11 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/big/src/pages/87/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/big/src/pages/87/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the other child.
11 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/big/src/pages/88/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/big/src/pages/88/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the other child.
11 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/big/src/pages/89/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/big/src/pages/89/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the other child.
11 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/big/src/pages/90/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/big/src/pages/90/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the other child.
11 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/big/src/pages/91/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/big/src/pages/91/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the other child.
11 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/big/src/pages/92/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/big/src/pages/92/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the other child.
11 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/big/src/pages/93/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/big/src/pages/93/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the other child.
11 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/big/src/pages/94/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/big/src/pages/94/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the other child.
11 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/big/src/pages/95/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/big/src/pages/95/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the other child.
11 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/big/src/pages/96/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/big/src/pages/96/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the other child.
11 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/big/src/pages/97/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/big/src/pages/97/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the other child.
11 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/big/src/pages/98/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/big/src/pages/98/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the other child.
11 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/big/src/pages/99/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/big/src/pages/99/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the other child.
11 |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 | 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 | 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 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/00/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the other child.
11 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/01/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/01/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the other child.
11 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/02/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/02/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the other child.
11 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/03/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/03/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the other child.
11 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/04/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/04/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the other child.
11 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/05/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/05/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the other child.
11 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/06/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/06/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the other child.
11 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/07/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/07/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the other child.
11 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/08/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/08/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the other child.
11 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/09/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/09/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the other child.
11 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/10/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/10/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the other child.
11 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/11/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/11/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the other child.
11 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/12/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/12/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the other child.
11 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/13/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/13/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the other child.
11 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/14/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/14/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the other child.
11 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/15/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/15/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the other child.
11 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/16/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/16/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the other child.
11 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/17/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/17/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the other child.
11 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/18/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/18/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the other child.
11 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/19/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/19/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the other child.
11 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/20/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/20/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the other child.
11 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/21/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/21/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the other child.
11 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/22/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/22/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the other child.
11 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/23/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/23/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the other child.
11 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/24/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/24/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the other child.
11 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/25/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/25/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the other child.
11 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/26/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/26/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the other child.
11 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/27/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/27/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the other child.
11 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/28/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/28/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the other child.
11 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/29/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/29/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the other child.
11 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/30/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/30/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the other child.
11 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/31/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/31/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the other child.
11 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/32/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/32/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the other child.
11 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/33/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/33/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the other child.
11 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/34/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/34/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the other child.
11 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/35/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/35/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the other child.
11 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/36/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/36/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the other child.
11 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/37/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/37/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the other child.
11 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/38/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/38/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the other child.
11 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/39/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/39/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the other child.
11 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/40/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/40/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the other child.
11 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/41/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/41/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the other child.
11 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/42/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/42/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the other child.
11 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/43/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/43/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the other child.
11 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/44/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/44/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the other child.
11 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/45/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/45/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the other child.
11 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/46/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/46/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the other child.
11 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/47/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/47/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the other child.
11 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/48/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/48/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the other child.
11 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/49/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/49/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the other child.
11 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/50/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/50/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the other child.
11 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/51/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/51/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the other child.
11 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/52/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/52/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the other child.
11 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/53/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/53/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the other child.
11 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/54/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/54/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the other child.
11 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/55/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/55/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the other child.
11 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/56/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/56/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the other child.
11 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/57/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/57/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the other child.
11 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/58/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/58/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the other child.
11 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/59/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/59/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the other child.
11 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/60/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/60/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the other child.
11 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/61/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/61/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the other child.
11 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/62/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/62/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the other child.
11 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/63/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/63/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the other child.
11 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/64/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/64/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the other child.
11 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/65/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/65/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the other child.
11 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/66/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/66/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the other child.
11 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/67/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/67/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the other child.
11 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/68/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/68/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the other child.
11 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/69/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/69/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the other child.
11 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/70/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/70/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the other child.
11 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/71/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/71/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the other child.
11 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/72/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/72/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the other child.
11 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/73/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/73/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the other child.
11 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/74/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/74/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the other child.
11 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/75/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/75/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the other child.
11 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/76/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/76/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the other child.
11 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/77/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/77/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the other child.
11 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/78/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/78/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the other child.
11 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/79/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/79/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the other child.
11 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/80/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/80/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the other child.
11 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/81/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/81/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the other child.
11 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/82/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/82/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the other child.
11 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/83/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/83/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the other child.
11 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/84/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/84/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the other child.
11 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/85/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/85/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the other child.
11 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/86/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/86/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the other child.
11 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/87/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/87/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the other child.
11 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/88/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/88/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the other child.
11 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/89/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/89/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the other child.
11 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/90/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/90/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the other child.
11 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/91/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/91/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the other child.
11 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/92/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/92/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the other child.
11 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/93/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/93/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the other child.
11 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/94/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/94/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the other child.
11 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/95/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/95/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the other child.
11 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/96/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/96/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the other child.
11 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/97/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/97/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the other child.
11 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/98/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/98/OtherChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the other child.
11 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/99/GrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |I am the child of Child.
10 | -------------------------------------------------------------------------------- /examples/typescript/big/src/pages/99/OtherGrandChild.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |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 |