diff --git a/.gitignore b/.gitignore index 113f1eb0c..c5eb7a2ad 100644 --- a/.gitignore +++ b/.gitignore @@ -47,3 +47,8 @@ node_modules # other coverage + +# playgrounds +packages/playground/**/* +!packages/playground/README.md + diff --git a/packages/playground/README.md b/packages/playground/README.md index 4794ef6c3..962b9f1cd 100644 --- a/packages/playground/README.md +++ b/packages/playground/README.md @@ -1 +1,3 @@ -playground projects used for experiments, demos and manual testing +add your own playground projects here, using `"@sveltejs/vite-plugin-svelte":"workspace:*"` as reference + +subdirectories are ignored in git diff --git a/packages/playground/basic/.gitignore b/packages/playground/basic/.gitignore deleted file mode 100644 index a547bf36d..000000000 --- a/packages/playground/basic/.gitignore +++ /dev/null @@ -1,24 +0,0 @@ -# Logs -logs -*.log -npm-debug.log* -yarn-debug.log* -yarn-error.log* -pnpm-debug.log* -lerna-debug.log* - -node_modules -dist -dist-ssr -*.local - -# Editor directories and files -.vscode/* -!.vscode/extensions.json -.idea -.DS_Store -*.suo -*.ntvs* -*.njsproj -*.sln -*.sw? diff --git a/packages/playground/basic/README.md b/packages/playground/basic/README.md deleted file mode 100644 index 47379abff..000000000 --- a/packages/playground/basic/README.md +++ /dev/null @@ -1,3 +0,0 @@ -# Svelte + Vite - -and a little something 5 diff --git a/packages/playground/basic/index.html b/packages/playground/basic/index.html deleted file mode 100644 index 7d4f5f410..000000000 --- a/packages/playground/basic/index.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - Vite + Svelte - - -
- - - diff --git a/packages/playground/basic/jsconfig.json b/packages/playground/basic/jsconfig.json deleted file mode 100644 index 31e2eea42..000000000 --- a/packages/playground/basic/jsconfig.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "compilerOptions": { - "moduleResolution": "bundler", - "target": "ESNext", - "module": "ESNext", - /** - * svelte-preprocess cannot figure out whether you have - * a value or a type, so tell TypeScript to enforce using - * `import type` instead of `import` for Types. - */ - "verbatimModuleSyntax": true, - "isolatedModules": true, - "resolveJsonModule": true, - /** - * To have warnings / errors of the Svelte compiler at the - * correct position, enable source maps by default. - */ - "sourceMap": true, - "esModuleInterop": true, - "skipLibCheck": true, - /** - * Typecheck JS in `.svelte` and `.js` files by default. - * Disable this if you'd like to use dynamic types. - */ - "checkJs": true - }, - /** - * Use global.d.ts instead of compilerOptions.types - * to avoid limiting type declarations. - */ - "include": ["src/**/*.d.ts", "src/**/*.js", "src/**/*.svelte"] -} diff --git a/packages/playground/basic/package.json b/packages/playground/basic/package.json deleted file mode 100644 index d089d8e73..000000000 --- a/packages/playground/basic/package.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "name": "playground-basic", - "private": true, - "version": "0.0.0", - "type": "module", - "scripts": { - "dev": "vite", - "build": "vite build", - "preview": "vite preview" - }, - "devDependencies": { - "@sveltejs/vite-plugin-svelte": "workspace:^", - "e2e-test-dep-svelte-module": "workspace:^", - "svelte": "^5.22.2", - "vite": "^6.2.0" - } -} diff --git a/packages/playground/basic/public/vite.svg b/packages/playground/basic/public/vite.svg deleted file mode 100644 index e7b8dfb1b..000000000 --- a/packages/playground/basic/public/vite.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/packages/playground/basic/src/App.svelte b/packages/playground/basic/src/App.svelte deleted file mode 100644 index 71f4af0e1..000000000 --- a/packages/playground/basic/src/App.svelte +++ /dev/null @@ -1,63 +0,0 @@ - - -
-
- - - - - - -
-

Vite + Svelte

- -
-
local
-
imported
-
- imported function -
-
- -

- Check out SvelteKit, the official Svelte app framework powered by Vite! -

- -

Click on the Vite and Svelte logos to learn more

-
- - diff --git a/packages/playground/basic/src/app.css b/packages/playground/basic/src/app.css deleted file mode 100644 index e7f3e4652..000000000 --- a/packages/playground/basic/src/app.css +++ /dev/null @@ -1,79 +0,0 @@ -:root { - font-family: Inter, system-ui, Avenir, Helvetica, Arial, sans-serif; - line-height: 1.5; - font-weight: 400; - - color-scheme: light dark; - color: rgba(255, 255, 255, 0.87); - background-color: #242424; - - font-synthesis: none; - text-rendering: optimizeLegibility; - -webkit-font-smoothing: antialiased; - -moz-osx-font-smoothing: grayscale; -} - -a { - font-weight: 500; - color: #646cff; - text-decoration: inherit; -} -a:hover { - color: #535bf2; -} - -body { - margin: 0; - display: flex; - place-items: center; - min-width: 320px; - min-height: 100vh; -} - -h1 { - font-size: 3.2em; - line-height: 1.1; -} - -.card { - padding: 2em; -} - -#app { - max-width: 1280px; - margin: 0 auto; - padding: 2rem; - text-align: center; -} - -button { - border-radius: 8px; - border: 1px solid transparent; - padding: 0.6em 1.2em; - font-size: 1em; - font-weight: 500; - font-family: inherit; - background-color: #1a1a1a; - cursor: pointer; - transition: border-color 0.25s; -} -button:hover { - border-color: #646cff; -} -button:focus, -button:focus-visible { - outline: 4px auto -webkit-focus-ring-color; -} - -@media (prefers-color-scheme: light) { - :root { - color: #213547; - background-color: #ffffff; - } - a:hover { - color: #747bff; - } - button { - background-color: #f9f9f9; - } -} diff --git a/packages/playground/basic/src/assets/svelte.svg b/packages/playground/basic/src/assets/svelte.svg deleted file mode 100644 index c5e08481f..000000000 --- a/packages/playground/basic/src/assets/svelte.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/packages/playground/basic/src/lib/Counter.svelte b/packages/playground/basic/src/lib/Counter.svelte deleted file mode 100644 index 2c7d841b0..000000000 --- a/packages/playground/basic/src/lib/Counter.svelte +++ /dev/null @@ -1,13 +0,0 @@ - - - - - diff --git a/packages/playground/basic/src/lib/Counter.svelte.js b/packages/playground/basic/src/lib/Counter.svelte.js deleted file mode 100644 index 3fd8bdac0..000000000 --- a/packages/playground/basic/src/lib/Counter.svelte.js +++ /dev/null @@ -1,11 +0,0 @@ -export function createCounter(n = 0) { - let count = $state(n); - return { - get count() { - return count; - }, - increment() { - count++; - } - }; -} diff --git a/packages/playground/basic/src/main.js b/packages/playground/basic/src/main.js deleted file mode 100644 index 2607d8649..000000000 --- a/packages/playground/basic/src/main.js +++ /dev/null @@ -1,19 +0,0 @@ -import './app.css'; -import App from './App.svelte'; -import { VERSION } from 'svelte/compiler'; -import * as svelte from 'svelte'; -const isSvelte5 = VERSION.startsWith('5.'); -let app; - -if (isSvelte5) { - app = [window.unmount] = svelte.mount(App, { - props: {}, - target: document.getElementById('app') - }); -} else { - app = new App({ - target: document.getElementById('app') - }); -} - -export default app; diff --git a/packages/playground/basic/src/vite-env.d.ts b/packages/playground/basic/src/vite-env.d.ts deleted file mode 100644 index 4078e7476..000000000 --- a/packages/playground/basic/src/vite-env.d.ts +++ /dev/null @@ -1,2 +0,0 @@ -/// -/// diff --git a/packages/playground/basic/svelte.config.js b/packages/playground/basic/svelte.config.js deleted file mode 100644 index c6e11400a..000000000 --- a/packages/playground/basic/svelte.config.js +++ /dev/null @@ -1,7 +0,0 @@ -import { vitePreprocess } from '@sveltejs/vite-plugin-svelte'; - -export default { - // Consult https://svelte.dev/docs#compile-time-svelte-preprocess - // for more information about preprocessors - preprocess: vitePreprocess() -}; diff --git a/packages/playground/basic/vite.config.js b/packages/playground/basic/vite.config.js deleted file mode 100644 index 4a89713c0..000000000 --- a/packages/playground/basic/vite.config.js +++ /dev/null @@ -1,10 +0,0 @@ -import { defineConfig } from 'vite'; -import { svelte } from '@sveltejs/vite-plugin-svelte'; - -// https://vitejs.dev/config/ -export default defineConfig({ - optimizeDeps: { - include: ['e2e-test-dep-svelte-module'] - }, - plugins: [svelte()] -}); diff --git a/packages/playground/big-component-library-kit/jsconfig.json b/packages/playground/big-component-library-kit/jsconfig.json deleted file mode 100644 index fe45e13fd..000000000 --- a/packages/playground/big-component-library-kit/jsconfig.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "extends": "./.svelte-kit/tsconfig.json", - "compilerOptions": { - "allowJs": true, - "checkJs": true, - "esModuleInterop": true, - "forceConsistentCasingInFileNames": true, - "resolveJsonModule": true, - "skipLibCheck": true, - "sourceMap": true, - "strict": true - } - // Path aliases are handled by https://kit.svelte.dev/docs/configuration#alias and https://kit.svelte.dev/docs/configuration#files - // - // If you want to overwrite includes/excludes, make sure to copy over the relevant includes/excludes - // from the referenced tsconfig.json - TypeScript does not merge them in -} diff --git a/packages/playground/big-component-library-kit/package.json b/packages/playground/big-component-library-kit/package.json deleted file mode 100644 index f2a8923f8..000000000 --- a/packages/playground/big-component-library-kit/package.json +++ /dev/null @@ -1,27 +0,0 @@ -{ - "name": "playground-big-component-library-kit", - "version": "0.0.0", - "private": true, - "scripts": { - "dev": "vite dev", - "build": "vite build", - "preview": "vite preview", - "check": "svelte-kit sync && svelte-check --tsconfig ./jsconfig.json", - "check:watch": "svelte-kit sync && svelte-check --tsconfig ./jsconfig.json --watch" - }, - "devDependencies": { - "@sveltejs/adapter-auto": "4.0.0", - "@sveltejs/kit": "^2.18.0", - "@sveltejs/vite-plugin-svelte": "workspace:^", - "carbon-components-svelte": "^0.87.6", - "carbon-icons-svelte": "^13.3.0", - "carbon-preprocess-svelte": "^0.11.11", - "lodash-es": "^4.17.21", - "svelte": "^5.22.2", - "svelte-check": "^4.1.4", - "svelte-preprocess": "^6.0.3", - "typescript": "^5.8.2", - "vite": "^6.2.0" - }, - "type": "module" -} diff --git a/packages/playground/big-component-library-kit/src/app.d.ts b/packages/playground/big-component-library-kit/src/app.d.ts deleted file mode 100644 index 8f4d63895..000000000 --- a/packages/playground/big-component-library-kit/src/app.d.ts +++ /dev/null @@ -1,9 +0,0 @@ -// See https://kit.svelte.dev/docs/types#app -// for information about these interfaces -// and what to do when importing types -declare namespace App { - // interface Locals {} - // interface PageData {} - // interface Error {} - // interface Platform {} -} diff --git a/packages/playground/big-component-library-kit/src/app.html b/packages/playground/big-component-library-kit/src/app.html deleted file mode 100644 index f0ab33648..000000000 --- a/packages/playground/big-component-library-kit/src/app.html +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - %sveltekit.head% - - -
%sveltekit.body%
- - diff --git a/packages/playground/big-component-library-kit/src/routes/+layout.svelte b/packages/playground/big-component-library-kit/src/routes/+layout.svelte deleted file mode 100644 index ad94bc69d..000000000 --- a/packages/playground/big-component-library-kit/src/routes/+layout.svelte +++ /dev/null @@ -1,5 +0,0 @@ - - - diff --git a/packages/playground/big-component-library-kit/src/routes/+page.svelte b/packages/playground/big-component-library-kit/src/routes/+page.svelte deleted file mode 100644 index 0c867a8aa..000000000 --- a/packages/playground/big-component-library-kit/src/routes/+page.svelte +++ /dev/null @@ -1,39 +0,0 @@ - - -go to sub page - - - - - - - - Content 1 - Content 2 - Content 3 - - diff --git a/packages/playground/big-component-library-kit/src/routes/sub/+page.svelte b/packages/playground/big-component-library-kit/src/routes/sub/+page.svelte deleted file mode 100644 index 380d094d4..000000000 --- a/packages/playground/big-component-library-kit/src/routes/sub/+page.svelte +++ /dev/null @@ -1,17 +0,0 @@ - - -

sub page

-back home - - diff --git a/packages/playground/big-component-library-kit/static/favicon.png b/packages/playground/big-component-library-kit/static/favicon.png deleted file mode 100644 index 825b9e65a..000000000 Binary files a/packages/playground/big-component-library-kit/static/favicon.png and /dev/null differ diff --git a/packages/playground/big-component-library-kit/svelte.config.js b/packages/playground/big-component-library-kit/svelte.config.js deleted file mode 100644 index 62a746dea..000000000 --- a/packages/playground/big-component-library-kit/svelte.config.js +++ /dev/null @@ -1,16 +0,0 @@ -import adapter from '@sveltejs/adapter-auto'; -import { optimizeImports } from 'carbon-preprocess-svelte'; -import process from 'node:process'; -import { sveltePreprocess } from 'svelte-preprocess'; - -/** @type {import('@sveltejs/kit').Config} */ -const config = { - preprocess: [sveltePreprocess(), process.env.DEEP_IMPORTS ? optimizeImports() : null].filter( - Boolean - ), - kit: { - adapter: adapter() - } -}; - -export default config; diff --git a/packages/playground/big-component-library-kit/vite.config.js b/packages/playground/big-component-library-kit/vite.config.js deleted file mode 100644 index 81b11a3fc..000000000 --- a/packages/playground/big-component-library-kit/vite.config.js +++ /dev/null @@ -1,11 +0,0 @@ -import { sveltekit } from '@sveltejs/kit/vite'; - -/** @type {import('vite').UserConfig} */ -const config = { - plugins: [sveltekit()], - optimizeDeps: { - include: ['carbon-components-svelte', 'carbon-icons-svelte'] - } -}; - -export default config; diff --git a/packages/playground/big-component-library-vite-ssr/README.md b/packages/playground/big-component-library-vite-ssr/README.md deleted file mode 100644 index 2242a6e26..000000000 --- a/packages/playground/big-component-library-vite-ssr/README.md +++ /dev/null @@ -1,3 +0,0 @@ -# playground project with a big component library - -useful for testing compile speed and prebundling behaviors diff --git a/packages/playground/big-component-library-vite-ssr/index.html b/packages/playground/big-component-library-vite-ssr/index.html deleted file mode 100644 index 2a4224767..000000000 --- a/packages/playground/big-component-library-vite-ssr/index.html +++ /dev/null @@ -1,14 +0,0 @@ - - - - - - - Vite + Svelte - - - -
- - - diff --git a/packages/playground/big-component-library-vite-ssr/jsconfig.json b/packages/playground/big-component-library-vite-ssr/jsconfig.json deleted file mode 100644 index 20cc0be91..000000000 --- a/packages/playground/big-component-library-vite-ssr/jsconfig.json +++ /dev/null @@ -1,33 +0,0 @@ -{ - "compilerOptions": { - "moduleResolution": "Bundler", - "target": "ESNext", - "module": "ESNext", - /** - * svelte-preprocess cannot figure out whether you have - * a value or a type, so tell TypeScript to enforce using - * `import type` instead of `import` for Types. - */ - "importsNotUsedAsValues": "error", - "isolatedModules": true, - "resolveJsonModule": true, - /** - * To have warnings / errors of the Svelte compiler at the - * correct position, enable source maps by default. - */ - "sourceMap": true, - "esModuleInterop": true, - "skipLibCheck": true, - "forceConsistentCasingInFileNames": true, - /** - * Typecheck JS in `.svelte` and `.js` files by default. - * Disable this if you'd like to use dynamic types. - */ - "checkJs": true - }, - /** - * Use global.d.ts instead of compilerOptions.types - * to avoid limiting type declarations. - */ - "include": ["src/**/*.d.ts", "src/**/*.js", "src/**/*.svelte"] -} diff --git a/packages/playground/big-component-library-vite-ssr/package.json b/packages/playground/big-component-library-vite-ssr/package.json deleted file mode 100644 index e260cc259..000000000 --- a/packages/playground/big-component-library-vite-ssr/package.json +++ /dev/null @@ -1,29 +0,0 @@ -{ - "name": "playground-big-component-library-vite-ssr", - "private": true, - "version": "0.0.0", - "type": "module", - "scripts": { - "dev": "node server", - "build": "npm run build:client && npm run build:server", - "build:client": "vite build --ssrManifest .vite/ssr-manifest.json --outDir dist/client", - "build:server": "vite build --ssr src/entry-server.js --outDir dist/server", - "preview": "cross-env NODE_ENV=production node server" - }, - "dependencies": { - "compression": "^1.8.0", - "express": "^4.21.2", - "sirv": "^3.0.1" - }, - "devDependencies": { - "@sveltejs/vite-plugin-svelte": "workspace:^", - "carbon-components-svelte": "^0.87.6", - "carbon-icons-svelte": "^13.3.0", - "carbon-preprocess-svelte": "^0.11.11", - "cross-env": "^7.0.3", - "lodash-es": "^4.17.21", - "svelte": "^5.22.2", - "svelte-preprocess": "^6.0.3", - "vite": "^6.2.0" - } -} diff --git a/packages/playground/big-component-library-vite-ssr/public/vite.svg b/packages/playground/big-component-library-vite-ssr/public/vite.svg deleted file mode 100644 index e7b8dfb1b..000000000 --- a/packages/playground/big-component-library-vite-ssr/public/vite.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/packages/playground/big-component-library-vite-ssr/server.js b/packages/playground/big-component-library-vite-ssr/server.js deleted file mode 100644 index c7cae7b13..000000000 --- a/packages/playground/big-component-library-vite-ssr/server.js +++ /dev/null @@ -1,71 +0,0 @@ -import fs from 'node:fs/promises'; -import process from 'node:process'; -import express from 'express'; - -// Constants -const isProduction = process.env.NODE_ENV === 'production'; -const port = process.env.PORT || 5173; -const base = process.env.BASE || '/'; - -// Cached production assets -const templateHtml = isProduction ? await fs.readFile('./dist/client/index.html', 'utf-8') : ''; -const ssrManifest = isProduction - ? await fs.readFile('./dist/client/.vite/ssr-manifest.json', 'utf-8') - : undefined; - -// Create http server -const app = express(); - -// Add Vite or respective production middlewares -let vite; -if (!isProduction) { - const { createServer } = await import('vite'); - vite = await createServer({ - server: { middlewareMode: true }, - appType: 'custom', - base - }); - app.use(vite.middlewares); -} else { - const compression = (await import('compression')).default; - const sirv = (await import('sirv')).default; - app.use(compression()); - app.use(base, sirv('./dist/client', { extensions: [] })); -} - -// Serve HTML -app.use('*', async (req, res) => { - try { - const url = req.originalUrl.replace(base, ''); - - let template; - let render; - if (!isProduction) { - // Always read fresh template in development - template = await fs.readFile('./index.html', 'utf-8'); - template = await vite.transformIndexHtml(url, template); - render = (await vite.ssrLoadModule('/src/entry-server.js')).render; - } else { - template = templateHtml; - // eslint-disable-next-line n/no-missing-import - render = (await import('./dist/server/entry-server.js')).render; - } - - const rendered = await render(url, ssrManifest); - - const html = template - .replace('', rendered.head ?? '') - .replace('', rendered.html ?? ''); - - res.status(200).set({ 'Content-Type': 'text/html' }).end(html); - } catch (e) { - vite?.ssrFixStacktrace(e); - console.log(e.stack); - res.status(500).end(e.stack); - } -}); - -// Start http server -app.listen(port, () => { - console.log(`Server started at http://localhost:${port}`); -}); diff --git a/packages/playground/big-component-library-vite-ssr/src/App.svelte b/packages/playground/big-component-library-vite-ssr/src/App.svelte deleted file mode 100644 index 0b38154d6..000000000 --- a/packages/playground/big-component-library-vite-ssr/src/App.svelte +++ /dev/null @@ -1,42 +0,0 @@ - - - - -A - - - - - - - Content 1 - Content 2 - Content 3 - - diff --git a/packages/playground/big-component-library-vite-ssr/src/assets/svelte.svg b/packages/playground/big-component-library-vite-ssr/src/assets/svelte.svg deleted file mode 100644 index c5e08481f..000000000 --- a/packages/playground/big-component-library-vite-ssr/src/assets/svelte.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/packages/playground/big-component-library-vite-ssr/src/entry-client.js b/packages/playground/big-component-library-vite-ssr/src/entry-client.js deleted file mode 100644 index 28a4f4740..000000000 --- a/packages/playground/big-component-library-vite-ssr/src/entry-client.js +++ /dev/null @@ -1,7 +0,0 @@ -import 'carbon-components-svelte/css/white.css'; -import App from './App.svelte'; - -new App({ - target: document.getElementById('app'), - hydrate: true -}); diff --git a/packages/playground/big-component-library-vite-ssr/src/entry-server.js b/packages/playground/big-component-library-vite-ssr/src/entry-server.js deleted file mode 100644 index 0f6c130f5..000000000 --- a/packages/playground/big-component-library-vite-ssr/src/entry-server.js +++ /dev/null @@ -1,5 +0,0 @@ -import App from './App.svelte'; - -export function render() { - return App.render(); -} diff --git a/packages/playground/big-component-library-vite-ssr/src/lib/Counter.svelte b/packages/playground/big-component-library-vite-ssr/src/lib/Counter.svelte deleted file mode 100644 index 7933ba1c9..000000000 --- a/packages/playground/big-component-library-vite-ssr/src/lib/Counter.svelte +++ /dev/null @@ -1,10 +0,0 @@ - - - diff --git a/packages/playground/big-component-library-vite-ssr/src/vite-env.d.ts b/packages/playground/big-component-library-vite-ssr/src/vite-env.d.ts deleted file mode 100644 index 4078e7476..000000000 --- a/packages/playground/big-component-library-vite-ssr/src/vite-env.d.ts +++ /dev/null @@ -1,2 +0,0 @@ -/// -/// diff --git a/packages/playground/big-component-library-vite-ssr/svelte.config.js b/packages/playground/big-component-library-vite-ssr/svelte.config.js deleted file mode 100644 index 108cd05a2..000000000 --- a/packages/playground/big-component-library-vite-ssr/svelte.config.js +++ /dev/null @@ -1,8 +0,0 @@ -import { optimizeImports } from 'carbon-preprocess-svelte'; -import process from 'node:process'; -import { sveltePreprocess } from 'svelte-preprocess'; -export default { - preprocess: [sveltePreprocess(), process.env.DEEP_IMPORTS ? optimizeImports() : null].filter( - Boolean - ) -}; diff --git a/packages/playground/big-component-library-vite-ssr/vite.config.js b/packages/playground/big-component-library-vite-ssr/vite.config.js deleted file mode 100644 index 8352414ec..000000000 --- a/packages/playground/big-component-library-vite-ssr/vite.config.js +++ /dev/null @@ -1,14 +0,0 @@ -import { svelte } from '@sveltejs/vite-plugin-svelte'; -import { defineConfig } from 'vite'; - -export default defineConfig({ - plugins: [svelte({ prebundleSvelteLibraries: true })], - optimizeDeps: { - include: ['carbon-components-svelte', 'carbon-icons-svelte'] - }, - ssr: { - optimizeDeps: { - include: ['carbon-components-svelte', 'carbon-icons-svelte'] - } - } -}); diff --git a/packages/playground/big-component-library/README.md b/packages/playground/big-component-library/README.md deleted file mode 100644 index 919823b3a..000000000 --- a/packages/playground/big-component-library/README.md +++ /dev/null @@ -1,3 +0,0 @@ -# do not use as a starter - -This example is an app using a large component library diff --git a/packages/playground/big-component-library/index.html b/packages/playground/big-component-library/index.html deleted file mode 100644 index 50421938b..000000000 --- a/packages/playground/big-component-library/index.html +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - Svelte + Vite App - - -
- - - diff --git a/packages/playground/big-component-library/jsconfig.json b/packages/playground/big-component-library/jsconfig.json deleted file mode 100644 index e0fe30cb3..000000000 --- a/packages/playground/big-component-library/jsconfig.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "compilerOptions": { - "moduleResolution": "Bundler", - "target": "ESNext", - "module": "ESNext", - /** - * svelte-preprocess cannot figure out whether you have - * a value or a type, so tell TypeScript to enforce using - * `import type` instead of `import` for Types. - */ - "importsNotUsedAsValues": "error", - "isolatedModules": true, - "resolveJsonModule": true, - /** - * To have warnings / errors of the Svelte compiler at the - * correct position, enable source maps by default. - */ - "sourceMap": true, - "esModuleInterop": true, - "skipLibCheck": true, - "forceConsistentCasingInFileNames": true, - "baseUrl": ".", - /** - * Typecheck JS in `.svelte` and `.js` files by default. - * Disable this if you'd like to use dynamic types. - */ - "checkJs": true - }, - /** - * Use global.d.ts instead of compilerOptions.types - * to avoid limiting type declarations. - */ - "include": ["src/**/*.d.ts", "src/**/*.js", "src/**/*.svelte"] -} diff --git a/packages/playground/big-component-library/package.json b/packages/playground/big-component-library/package.json deleted file mode 100644 index 6dbd42bed..000000000 --- a/packages/playground/big-component-library/package.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "name": "playground-big-component-library", - "private": true, - "version": "0.0.0", - "type": "module", - "scripts": { - "dev": "vite", - "build": "vite build", - "serve": "vite preview" - }, - "devDependencies": { - "@sveltejs/vite-plugin-svelte": "workspace:^", - "carbon-components-svelte": "^0.87.6", - "carbon-icons-svelte": "^13.3.0", - "carbon-preprocess-svelte": "^0.11.11", - "svelte": "^5.22.2", - "svelte-preprocess": "^6.0.3", - "vite": "^6.2.0" - }, - "dependencies": { - "lodash-es": "^4.17.21" - } -} diff --git a/packages/playground/big-component-library/src/App.svelte b/packages/playground/big-component-library/src/App.svelte deleted file mode 100644 index 0b38154d6..000000000 --- a/packages/playground/big-component-library/src/App.svelte +++ /dev/null @@ -1,42 +0,0 @@ - - - - -A - - - - - - - Content 1 - Content 2 - Content 3 - - diff --git a/packages/playground/big-component-library/src/main.js b/packages/playground/big-component-library/src/main.js deleted file mode 100644 index 53f5b9373..000000000 --- a/packages/playground/big-component-library/src/main.js +++ /dev/null @@ -1,8 +0,0 @@ -import App from './App.svelte'; -import 'carbon-components-svelte/css/white.css'; - -const app = new App({ - target: document.getElementById('app') -}); - -export default app; diff --git a/packages/playground/big-component-library/svelte.config.js b/packages/playground/big-component-library/svelte.config.js deleted file mode 100644 index eec8c0487..000000000 --- a/packages/playground/big-component-library/svelte.config.js +++ /dev/null @@ -1,8 +0,0 @@ -import process from 'node:process'; -import { optimizeImports } from 'carbon-preprocess-svelte'; -import { sveltePreprocess } from 'svelte-preprocess'; -export default { - preprocess: [sveltePreprocess(), process.env.DEEP_IMPORTS ? optimizeImports() : null].filter( - Boolean - ) -}; diff --git a/packages/playground/big-component-library/vite.config.js b/packages/playground/big-component-library/vite.config.js deleted file mode 100644 index b787b88fc..000000000 --- a/packages/playground/big-component-library/vite.config.js +++ /dev/null @@ -1,12 +0,0 @@ -import { svelte } from '@sveltejs/vite-plugin-svelte'; -import { defineConfig } from 'vite'; - -export default defineConfig({ - plugins: [svelte({ prebundleSvelteLibraries: true })], - optimizeDeps: { - // carbon-components-svelte is large, prebundle - include: ['carbon-components-svelte', 'carbon-icons-svelte'], - // carbon-icons-svelte is huge and takes 12s to prebundle, better use deep imports for the icons you need - exclude: [] - } -}); diff --git a/packages/playground/big/README.md b/packages/playground/big/README.md deleted file mode 100644 index fbe8700f2..000000000 --- a/packages/playground/big/README.md +++ /dev/null @@ -1,3 +0,0 @@ -# do not use as a starter - -This example is an artificially big app used for testing diff --git a/packages/playground/big/index.html b/packages/playground/big/index.html deleted file mode 100644 index 5203079ba..000000000 --- a/packages/playground/big/index.html +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - Svelte App - - - - - diff --git a/packages/playground/big/jsconfig.json b/packages/playground/big/jsconfig.json deleted file mode 100644 index 31e2eea42..000000000 --- a/packages/playground/big/jsconfig.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "compilerOptions": { - "moduleResolution": "bundler", - "target": "ESNext", - "module": "ESNext", - /** - * svelte-preprocess cannot figure out whether you have - * a value or a type, so tell TypeScript to enforce using - * `import type` instead of `import` for Types. - */ - "verbatimModuleSyntax": true, - "isolatedModules": true, - "resolveJsonModule": true, - /** - * To have warnings / errors of the Svelte compiler at the - * correct position, enable source maps by default. - */ - "sourceMap": true, - "esModuleInterop": true, - "skipLibCheck": true, - /** - * Typecheck JS in `.svelte` and `.js` files by default. - * Disable this if you'd like to use dynamic types. - */ - "checkJs": true - }, - /** - * Use global.d.ts instead of compilerOptions.types - * to avoid limiting type declarations. - */ - "include": ["src/**/*.d.ts", "src/**/*.js", "src/**/*.svelte"] -} diff --git a/packages/playground/big/package.json b/packages/playground/big/package.json deleted file mode 100644 index db90f7a45..000000000 --- a/packages/playground/big/package.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "name": "playground-big", - "private": true, - "version": "0.0.0", - "type": "module", - "scripts": { - "dev": "vite", - "build": "vite build", - "serve": "vite preview" - }, - "devDependencies": { - "@sveltejs/vite-plugin-svelte": "workspace:^", - "svelte": "^5.22.2", - "vite": "^6.2.0" - } -} diff --git a/packages/playground/big/public/favicon.png b/packages/playground/big/public/favicon.png deleted file mode 100644 index 7e6f5eb5a..000000000 Binary files a/packages/playground/big/public/favicon.png and /dev/null differ diff --git a/packages/playground/big/src/App.svelte b/packages/playground/big/src/App.svelte deleted file mode 100644 index 686b5c336..000000000 --- a/packages/playground/big/src/App.svelte +++ /dev/null @@ -1,77 +0,0 @@ - - - - -{#if currentCmp} -
- -
-{:else} -
-
-

- Edit - src/App.svelte - and save to reload (prepare tissues). -

- Learn Svelte -
-
-{/if} - - diff --git a/packages/playground/big/src/app.css b/packages/playground/big/src/app.css deleted file mode 100644 index a69e3e70f..000000000 --- a/packages/playground/big/src/app.css +++ /dev/null @@ -1,4 +0,0 @@ -body { - background-color: cyan; - background-color: magenta; -} diff --git a/packages/playground/big/src/index.js b/packages/playground/big/src/index.js deleted file mode 100644 index 2c27a2579..000000000 --- a/packages/playground/big/src/index.js +++ /dev/null @@ -1,7 +0,0 @@ -import App from './App.svelte'; - -const app = new App({ - target: document.body -}); - -export default app; diff --git a/packages/playground/big/src/pages.js b/packages/playground/big/src/pages.js deleted file mode 100644 index 99ac6983a..000000000 --- a/packages/playground/big/src/pages.js +++ /dev/null @@ -1,100 +0,0 @@ -export { default as Page_00 } from './pages/00/index.svelte'; -export { default as Page_01 } from './pages/01/index.svelte'; -export { default as Page_02 } from './pages/02/index.svelte'; -export { default as Page_03 } from './pages/03/index.svelte'; -export { default as Page_04 } from './pages/04/index.svelte'; -export { default as Page_05 } from './pages/05/index.svelte'; -export { default as Page_06 } from './pages/06/index.svelte'; -export { default as Page_07 } from './pages/07/index.svelte'; -export { default as Page_08 } from './pages/08/index.svelte'; -export { default as Page_09 } from './pages/09/index.svelte'; -export { default as Page_10 } from './pages/10/index.svelte'; -export { default as Page_11 } from './pages/11/index.svelte'; -export { default as Page_12 } from './pages/12/index.svelte'; -export { default as Page_13 } from './pages/13/index.svelte'; -export { default as Page_14 } from './pages/14/index.svelte'; -export { default as Page_15 } from './pages/15/index.svelte'; -export { default as Page_16 } from './pages/16/index.svelte'; -export { default as Page_17 } from './pages/17/index.svelte'; -export { default as Page_18 } from './pages/18/index.svelte'; -export { default as Page_19 } from './pages/19/index.svelte'; -export { default as Page_20 } from './pages/20/index.svelte'; -export { default as Page_21 } from './pages/21/index.svelte'; -export { default as Page_22 } from './pages/22/index.svelte'; -export { default as Page_23 } from './pages/23/index.svelte'; -export { default as Page_24 } from './pages/24/index.svelte'; -export { default as Page_25 } from './pages/25/index.svelte'; -export { default as Page_26 } from './pages/26/index.svelte'; -export { default as Page_27 } from './pages/27/index.svelte'; -export { default as Page_28 } from './pages/28/index.svelte'; -export { default as Page_29 } from './pages/29/index.svelte'; -export { default as Page_30 } from './pages/30/index.svelte'; -export { default as Page_31 } from './pages/31/index.svelte'; -export { default as Page_32 } from './pages/32/index.svelte'; -export { default as Page_33 } from './pages/33/index.svelte'; -export { default as Page_34 } from './pages/34/index.svelte'; -export { default as Page_35 } from './pages/35/index.svelte'; -export { default as Page_36 } from './pages/36/index.svelte'; -export { default as Page_37 } from './pages/37/index.svelte'; -export { default as Page_38 } from './pages/38/index.svelte'; -export { default as Page_39 } from './pages/39/index.svelte'; -export { default as Page_40 } from './pages/40/index.svelte'; -export { default as Page_41 } from './pages/41/index.svelte'; -export { default as Page_42 } from './pages/42/index.svelte'; -export { default as Page_43 } from './pages/43/index.svelte'; -export { default as Page_44 } from './pages/44/index.svelte'; -export { default as Page_45 } from './pages/45/index.svelte'; -export { default as Page_46 } from './pages/46/index.svelte'; -export { default as Page_47 } from './pages/47/index.svelte'; -export { default as Page_48 } from './pages/48/index.svelte'; -export { default as Page_49 } from './pages/49/index.svelte'; -export { default as Page_50 } from './pages/50/index.svelte'; -export { default as Page_51 } from './pages/51/index.svelte'; -export { default as Page_52 } from './pages/52/index.svelte'; -export { default as Page_53 } from './pages/53/index.svelte'; -export { default as Page_54 } from './pages/54/index.svelte'; -export { default as Page_55 } from './pages/55/index.svelte'; -export { default as Page_56 } from './pages/56/index.svelte'; -export { default as Page_57 } from './pages/57/index.svelte'; -export { default as Page_58 } from './pages/58/index.svelte'; -export { default as Page_59 } from './pages/59/index.svelte'; -export { default as Page_60 } from './pages/60/index.svelte'; -export { default as Page_61 } from './pages/61/index.svelte'; -export { default as Page_62 } from './pages/62/index.svelte'; -export { default as Page_63 } from './pages/63/index.svelte'; -export { default as Page_64 } from './pages/64/index.svelte'; -export { default as Page_65 } from './pages/65/index.svelte'; -export { default as Page_66 } from './pages/66/index.svelte'; -export { default as Page_67 } from './pages/67/index.svelte'; -export { default as Page_68 } from './pages/68/index.svelte'; -export { default as Page_69 } from './pages/69/index.svelte'; -export { default as Page_70 } from './pages/70/index.svelte'; -export { default as Page_71 } from './pages/71/index.svelte'; -export { default as Page_72 } from './pages/72/index.svelte'; -export { default as Page_73 } from './pages/73/index.svelte'; -export { default as Page_74 } from './pages/74/index.svelte'; -export { default as Page_75 } from './pages/75/index.svelte'; -export { default as Page_76 } from './pages/76/index.svelte'; -export { default as Page_77 } from './pages/77/index.svelte'; -export { default as Page_78 } from './pages/78/index.svelte'; -export { default as Page_79 } from './pages/79/index.svelte'; -export { default as Page_80 } from './pages/80/index.svelte'; -export { default as Page_81 } from './pages/81/index.svelte'; -export { default as Page_82 } from './pages/82/index.svelte'; -export { default as Page_83 } from './pages/83/index.svelte'; -export { default as Page_84 } from './pages/84/index.svelte'; -export { default as Page_85 } from './pages/85/index.svelte'; -export { default as Page_86 } from './pages/86/index.svelte'; -export { default as Page_87 } from './pages/87/index.svelte'; -export { default as Page_88 } from './pages/88/index.svelte'; -export { default as Page_89 } from './pages/89/index.svelte'; -export { default as Page_90 } from './pages/90/index.svelte'; -export { default as Page_91 } from './pages/91/index.svelte'; -export { default as Page_92 } from './pages/92/index.svelte'; -export { default as Page_93 } from './pages/93/index.svelte'; -export { default as Page_94 } from './pages/94/index.svelte'; -export { default as Page_95 } from './pages/95/index.svelte'; -export { default as Page_96 } from './pages/96/index.svelte'; -export { default as Page_97 } from './pages/97/index.svelte'; -export { default as Page_98 } from './pages/98/index.svelte'; -export { default as Page_99 } from './pages/99/index.svelte'; diff --git a/packages/playground/big/src/pages/00/Child.svelte b/packages/playground/big/src/pages/00/Child.svelte deleted file mode 100644 index 0a284102c..000000000 --- a/packages/playground/big/src/pages/00/Child.svelte +++ /dev/null @@ -1,20 +0,0 @@ - - -
-

Child 00

- -

I have kids too:

- - - - -
- - diff --git a/packages/playground/big/src/pages/00/GrandChild.svelte b/packages/playground/big/src/pages/00/GrandChild.svelte deleted file mode 100644 index 61871aff5..000000000 --- a/packages/playground/big/src/pages/00/GrandChild.svelte +++ /dev/null @@ -1,9 +0,0 @@ -

GrandChild 00

- -

I am the child of Child.

- - diff --git a/packages/playground/big/src/pages/00/OtherChild.svelte b/packages/playground/big/src/pages/00/OtherChild.svelte deleted file mode 100644 index daa23fd80..000000000 --- a/packages/playground/big/src/pages/00/OtherChild.svelte +++ /dev/null @@ -1,11 +0,0 @@ -
-

Other Child 00

- -

I am the other child.

-
- - diff --git a/packages/playground/big/src/pages/00/OtherGrandChild.svelte b/packages/playground/big/src/pages/00/OtherGrandChild.svelte deleted file mode 100644 index 066211011..000000000 --- a/packages/playground/big/src/pages/00/OtherGrandChild.svelte +++ /dev/null @@ -1,9 +0,0 @@ -

Other GrandChild 00

- -

I am the child of Child.

- - diff --git a/packages/playground/big/src/pages/00/index.svelte b/packages/playground/big/src/pages/00/index.svelte deleted file mode 100644 index 1835ce4a1..000000000 --- a/packages/playground/big/src/pages/00/index.svelte +++ /dev/null @@ -1,29 +0,0 @@ - - -

Page 00

- -

I am page 01.

- -

I have some children:

- -
- - -
- - diff --git a/packages/playground/big/src/pages/01/Child.svelte b/packages/playground/big/src/pages/01/Child.svelte deleted file mode 100644 index ab26a3a21..000000000 --- a/packages/playground/big/src/pages/01/Child.svelte +++ /dev/null @@ -1,20 +0,0 @@ - - -
-

Child 01

- -

I have kids too:

- - - - -
- - diff --git a/packages/playground/big/src/pages/01/GrandChild.svelte b/packages/playground/big/src/pages/01/GrandChild.svelte deleted file mode 100644 index 276aa060f..000000000 --- a/packages/playground/big/src/pages/01/GrandChild.svelte +++ /dev/null @@ -1,9 +0,0 @@ -

GrandChild 01

- -

I am the child of Child.

- - diff --git a/packages/playground/big/src/pages/01/OtherChild.svelte b/packages/playground/big/src/pages/01/OtherChild.svelte deleted file mode 100644 index be0d96a9e..000000000 --- a/packages/playground/big/src/pages/01/OtherChild.svelte +++ /dev/null @@ -1,11 +0,0 @@ -
-

Other Child 01

- -

I am the other child.

-
- - diff --git a/packages/playground/big/src/pages/01/OtherGrandChild.svelte b/packages/playground/big/src/pages/01/OtherGrandChild.svelte deleted file mode 100644 index 7a13833a4..000000000 --- a/packages/playground/big/src/pages/01/OtherGrandChild.svelte +++ /dev/null @@ -1,9 +0,0 @@ -

Other GrandChild 01

- -

I am the child of Child.

- - diff --git a/packages/playground/big/src/pages/01/index.svelte b/packages/playground/big/src/pages/01/index.svelte deleted file mode 100644 index d2faef091..000000000 --- a/packages/playground/big/src/pages/01/index.svelte +++ /dev/null @@ -1,29 +0,0 @@ - - -

Page 01

- -

I am page 01.

- -

I have some children:

- -
- - -
- - diff --git a/packages/playground/big/src/pages/02/Child.svelte b/packages/playground/big/src/pages/02/Child.svelte deleted file mode 100644 index b3fc2683d..000000000 --- a/packages/playground/big/src/pages/02/Child.svelte +++ /dev/null @@ -1,20 +0,0 @@ - - -
-

Child 02

- -

I have kids too:

- - - - -
- - diff --git a/packages/playground/big/src/pages/02/GrandChild.svelte b/packages/playground/big/src/pages/02/GrandChild.svelte deleted file mode 100644 index c4fc7928e..000000000 --- a/packages/playground/big/src/pages/02/GrandChild.svelte +++ /dev/null @@ -1,9 +0,0 @@ -

GrandChild 02

- -

I am the child of Child.

- - diff --git a/packages/playground/big/src/pages/02/OtherChild.svelte b/packages/playground/big/src/pages/02/OtherChild.svelte deleted file mode 100644 index d021988cb..000000000 --- a/packages/playground/big/src/pages/02/OtherChild.svelte +++ /dev/null @@ -1,11 +0,0 @@ -
-

Other Child 02

- -

I am the other child.

-
- - diff --git a/packages/playground/big/src/pages/02/OtherGrandChild.svelte b/packages/playground/big/src/pages/02/OtherGrandChild.svelte deleted file mode 100644 index 68587098f..000000000 --- a/packages/playground/big/src/pages/02/OtherGrandChild.svelte +++ /dev/null @@ -1,9 +0,0 @@ -

Other GrandChild 02

- -

I am the child of Child.

- - diff --git a/packages/playground/big/src/pages/02/index.svelte b/packages/playground/big/src/pages/02/index.svelte deleted file mode 100644 index ca0ff68da..000000000 --- a/packages/playground/big/src/pages/02/index.svelte +++ /dev/null @@ -1,29 +0,0 @@ - - -

Page 02

- -

I am page 01.

- -

I have some children:

- -
- - -
- - diff --git a/packages/playground/big/src/pages/03/Child.svelte b/packages/playground/big/src/pages/03/Child.svelte deleted file mode 100644 index 55e373c88..000000000 --- a/packages/playground/big/src/pages/03/Child.svelte +++ /dev/null @@ -1,20 +0,0 @@ - - -
-

Child 03

- -

I have kids too:

- - - - -
- - diff --git a/packages/playground/big/src/pages/03/GrandChild.svelte b/packages/playground/big/src/pages/03/GrandChild.svelte deleted file mode 100644 index 476014112..000000000 --- a/packages/playground/big/src/pages/03/GrandChild.svelte +++ /dev/null @@ -1,9 +0,0 @@ -

GrandChild 03

- -

I am the child of Child.

- - diff --git a/packages/playground/big/src/pages/03/OtherChild.svelte b/packages/playground/big/src/pages/03/OtherChild.svelte deleted file mode 100644 index cef59773f..000000000 --- a/packages/playground/big/src/pages/03/OtherChild.svelte +++ /dev/null @@ -1,11 +0,0 @@ -
-

Other Child 03

- -

I am the other child.

-
- - diff --git a/packages/playground/big/src/pages/03/OtherGrandChild.svelte b/packages/playground/big/src/pages/03/OtherGrandChild.svelte deleted file mode 100644 index b0c554d0f..000000000 --- a/packages/playground/big/src/pages/03/OtherGrandChild.svelte +++ /dev/null @@ -1,9 +0,0 @@ -

Other GrandChild 03

- -

I am the child of Child.

- - diff --git a/packages/playground/big/src/pages/03/index.svelte b/packages/playground/big/src/pages/03/index.svelte deleted file mode 100644 index 05626b886..000000000 --- a/packages/playground/big/src/pages/03/index.svelte +++ /dev/null @@ -1,29 +0,0 @@ - - -

Page 03

- -

I am page 01.

- -

I have some children:

- -
- - -
- - diff --git a/packages/playground/big/src/pages/04/Child.svelte b/packages/playground/big/src/pages/04/Child.svelte deleted file mode 100644 index 0900071ec..000000000 --- a/packages/playground/big/src/pages/04/Child.svelte +++ /dev/null @@ -1,20 +0,0 @@ - - -
-

Child 04

- -

I have kids too:

- - - - -
- - diff --git a/packages/playground/big/src/pages/04/GrandChild.svelte b/packages/playground/big/src/pages/04/GrandChild.svelte deleted file mode 100644 index dcb479d07..000000000 --- a/packages/playground/big/src/pages/04/GrandChild.svelte +++ /dev/null @@ -1,9 +0,0 @@ -

GrandChild 04

- -

I am the child of Child.

- - diff --git a/packages/playground/big/src/pages/04/OtherChild.svelte b/packages/playground/big/src/pages/04/OtherChild.svelte deleted file mode 100644 index 27fc3b72f..000000000 --- a/packages/playground/big/src/pages/04/OtherChild.svelte +++ /dev/null @@ -1,11 +0,0 @@ -
-

Other Child 04

- -

I am the other child.

-
- - diff --git a/packages/playground/big/src/pages/04/OtherGrandChild.svelte b/packages/playground/big/src/pages/04/OtherGrandChild.svelte deleted file mode 100644 index 590ab500b..000000000 --- a/packages/playground/big/src/pages/04/OtherGrandChild.svelte +++ /dev/null @@ -1,9 +0,0 @@ -

Other GrandChild 04

- -

I am the child of Child.

- - diff --git a/packages/playground/big/src/pages/04/index.svelte b/packages/playground/big/src/pages/04/index.svelte deleted file mode 100644 index 4b9fc61c5..000000000 --- a/packages/playground/big/src/pages/04/index.svelte +++ /dev/null @@ -1,29 +0,0 @@ - - -

Page 04

- -

I am page 01.

- -

I have some children:

- -
- - -
- - diff --git a/packages/playground/big/src/pages/05/Child.svelte b/packages/playground/big/src/pages/05/Child.svelte deleted file mode 100644 index 261a4cedc..000000000 --- a/packages/playground/big/src/pages/05/Child.svelte +++ /dev/null @@ -1,20 +0,0 @@ - - -
-

Child 05

- -

I have kids too:

- - - - -
- - diff --git a/packages/playground/big/src/pages/05/GrandChild.svelte b/packages/playground/big/src/pages/05/GrandChild.svelte deleted file mode 100644 index 166922573..000000000 --- a/packages/playground/big/src/pages/05/GrandChild.svelte +++ /dev/null @@ -1,9 +0,0 @@ -

GrandChild 05

- -

I am the child of Child.

- - diff --git a/packages/playground/big/src/pages/05/OtherChild.svelte b/packages/playground/big/src/pages/05/OtherChild.svelte deleted file mode 100644 index 00ca5cc2b..000000000 --- a/packages/playground/big/src/pages/05/OtherChild.svelte +++ /dev/null @@ -1,11 +0,0 @@ -
-

Other Child 05

- -

I am the other child.

-
- - diff --git a/packages/playground/big/src/pages/05/OtherGrandChild.svelte b/packages/playground/big/src/pages/05/OtherGrandChild.svelte deleted file mode 100644 index fa177dd68..000000000 --- a/packages/playground/big/src/pages/05/OtherGrandChild.svelte +++ /dev/null @@ -1,9 +0,0 @@ -

Other GrandChild 05

- -

I am the child of Child.

- - diff --git a/packages/playground/big/src/pages/05/index.svelte b/packages/playground/big/src/pages/05/index.svelte deleted file mode 100644 index 2fe55c7e7..000000000 --- a/packages/playground/big/src/pages/05/index.svelte +++ /dev/null @@ -1,29 +0,0 @@ - - -

Page 05

- -

I am page 01.

- -

I have some children:

- -
- - -
- - diff --git a/packages/playground/big/src/pages/06/Child.svelte b/packages/playground/big/src/pages/06/Child.svelte deleted file mode 100644 index 9208833dc..000000000 --- a/packages/playground/big/src/pages/06/Child.svelte +++ /dev/null @@ -1,20 +0,0 @@ - - -
-

Child 06

- -

I have kids too:

- - - - -
- - diff --git a/packages/playground/big/src/pages/06/GrandChild.svelte b/packages/playground/big/src/pages/06/GrandChild.svelte deleted file mode 100644 index 1019c125e..000000000 --- a/packages/playground/big/src/pages/06/GrandChild.svelte +++ /dev/null @@ -1,9 +0,0 @@ -

GrandChild 06

- -

I am the child of Child.

- - diff --git a/packages/playground/big/src/pages/06/OtherChild.svelte b/packages/playground/big/src/pages/06/OtherChild.svelte deleted file mode 100644 index 1c4591aa9..000000000 --- a/packages/playground/big/src/pages/06/OtherChild.svelte +++ /dev/null @@ -1,11 +0,0 @@ -
-

Other Child 06

- -

I am the other child.

-
- - diff --git a/packages/playground/big/src/pages/06/OtherGrandChild.svelte b/packages/playground/big/src/pages/06/OtherGrandChild.svelte deleted file mode 100644 index fe938ac20..000000000 --- a/packages/playground/big/src/pages/06/OtherGrandChild.svelte +++ /dev/null @@ -1,9 +0,0 @@ -

Other GrandChild 06

- -

I am the child of Child.

- - diff --git a/packages/playground/big/src/pages/06/index.svelte b/packages/playground/big/src/pages/06/index.svelte deleted file mode 100644 index 0215ed12c..000000000 --- a/packages/playground/big/src/pages/06/index.svelte +++ /dev/null @@ -1,29 +0,0 @@ - - -

Page 06

- -

I am page 01.

- -

I have some children:

- -
- - -
- - diff --git a/packages/playground/big/src/pages/07/Child.svelte b/packages/playground/big/src/pages/07/Child.svelte deleted file mode 100644 index 2af374155..000000000 --- a/packages/playground/big/src/pages/07/Child.svelte +++ /dev/null @@ -1,20 +0,0 @@ - - -
-

Child 07

- -

I have kids too:

- - - - -
- - diff --git a/packages/playground/big/src/pages/07/GrandChild.svelte b/packages/playground/big/src/pages/07/GrandChild.svelte deleted file mode 100644 index 5cc30deb9..000000000 --- a/packages/playground/big/src/pages/07/GrandChild.svelte +++ /dev/null @@ -1,9 +0,0 @@ -

GrandChild 07

- -

I am the child of Child.

- - diff --git a/packages/playground/big/src/pages/07/OtherChild.svelte b/packages/playground/big/src/pages/07/OtherChild.svelte deleted file mode 100644 index d1fcb6cad..000000000 --- a/packages/playground/big/src/pages/07/OtherChild.svelte +++ /dev/null @@ -1,11 +0,0 @@ -
-

Other Child 07

- -

I am the other child.

-
- - diff --git a/packages/playground/big/src/pages/07/OtherGrandChild.svelte b/packages/playground/big/src/pages/07/OtherGrandChild.svelte deleted file mode 100644 index 4bc081865..000000000 --- a/packages/playground/big/src/pages/07/OtherGrandChild.svelte +++ /dev/null @@ -1,9 +0,0 @@ -

Other GrandChild 07

- -

I am the child of Child.

- - diff --git a/packages/playground/big/src/pages/07/index.svelte b/packages/playground/big/src/pages/07/index.svelte deleted file mode 100644 index beb0e463b..000000000 --- a/packages/playground/big/src/pages/07/index.svelte +++ /dev/null @@ -1,29 +0,0 @@ - - -

Page 07

- -

I am page 01.

- -

I have some children:

- -
- - -
- - diff --git a/packages/playground/big/src/pages/08/Child.svelte b/packages/playground/big/src/pages/08/Child.svelte deleted file mode 100644 index 7ddc4008d..000000000 --- a/packages/playground/big/src/pages/08/Child.svelte +++ /dev/null @@ -1,20 +0,0 @@ - - -
-

Child 08

- -

I have kids too:

- - - - -
- - diff --git a/packages/playground/big/src/pages/08/GrandChild.svelte b/packages/playground/big/src/pages/08/GrandChild.svelte deleted file mode 100644 index 9b6216519..000000000 --- a/packages/playground/big/src/pages/08/GrandChild.svelte +++ /dev/null @@ -1,9 +0,0 @@ -

GrandChild 08

- -

I am the child of Child.

- - diff --git a/packages/playground/big/src/pages/08/OtherChild.svelte b/packages/playground/big/src/pages/08/OtherChild.svelte deleted file mode 100644 index 7d14514ae..000000000 --- a/packages/playground/big/src/pages/08/OtherChild.svelte +++ /dev/null @@ -1,11 +0,0 @@ -
-

Other Child 08

- -

I am the other child.

-
- - diff --git a/packages/playground/big/src/pages/08/OtherGrandChild.svelte b/packages/playground/big/src/pages/08/OtherGrandChild.svelte deleted file mode 100644 index d6f61ef61..000000000 --- a/packages/playground/big/src/pages/08/OtherGrandChild.svelte +++ /dev/null @@ -1,9 +0,0 @@ -

Other GrandChild 08

- -

I am the child of Child.

- - diff --git a/packages/playground/big/src/pages/08/index.svelte b/packages/playground/big/src/pages/08/index.svelte deleted file mode 100644 index 1816690c6..000000000 --- a/packages/playground/big/src/pages/08/index.svelte +++ /dev/null @@ -1,29 +0,0 @@ - - -

Page 08

- -

I am page 01.

- -

I have some children:

- -
- - -
- - diff --git a/packages/playground/big/src/pages/09/Child.svelte b/packages/playground/big/src/pages/09/Child.svelte deleted file mode 100644 index adb1e363c..000000000 --- a/packages/playground/big/src/pages/09/Child.svelte +++ /dev/null @@ -1,20 +0,0 @@ - - -
-

Child 09

- -

I have kids too:

- - - - -
- - diff --git a/packages/playground/big/src/pages/09/GrandChild.svelte b/packages/playground/big/src/pages/09/GrandChild.svelte deleted file mode 100644 index 5bb167744..000000000 --- a/packages/playground/big/src/pages/09/GrandChild.svelte +++ /dev/null @@ -1,9 +0,0 @@ -

GrandChild 09

- -

I am the child of Child.

- - diff --git a/packages/playground/big/src/pages/09/OtherChild.svelte b/packages/playground/big/src/pages/09/OtherChild.svelte deleted file mode 100644 index 648970d56..000000000 --- a/packages/playground/big/src/pages/09/OtherChild.svelte +++ /dev/null @@ -1,11 +0,0 @@ -
-

Other Child 09

- -

I am the other child.

-
- - diff --git a/packages/playground/big/src/pages/09/OtherGrandChild.svelte b/packages/playground/big/src/pages/09/OtherGrandChild.svelte deleted file mode 100644 index b0606b54f..000000000 --- a/packages/playground/big/src/pages/09/OtherGrandChild.svelte +++ /dev/null @@ -1,9 +0,0 @@ -

Other GrandChild 09

- -

I am the child of Child.

- - diff --git a/packages/playground/big/src/pages/09/index.svelte b/packages/playground/big/src/pages/09/index.svelte deleted file mode 100644 index 76ee0b0f2..000000000 --- a/packages/playground/big/src/pages/09/index.svelte +++ /dev/null @@ -1,29 +0,0 @@ - - -

Page 09

- -

I am page 01.

- -

I have some children:

- -
- - -
- - diff --git a/packages/playground/big/src/pages/10/Child.svelte b/packages/playground/big/src/pages/10/Child.svelte deleted file mode 100644 index 9e8779299..000000000 --- a/packages/playground/big/src/pages/10/Child.svelte +++ /dev/null @@ -1,20 +0,0 @@ - - -
-

Child 10

- -

I have kids too:

- - - - -
- - diff --git a/packages/playground/big/src/pages/10/GrandChild.svelte b/packages/playground/big/src/pages/10/GrandChild.svelte deleted file mode 100644 index e69f41d0d..000000000 --- a/packages/playground/big/src/pages/10/GrandChild.svelte +++ /dev/null @@ -1,9 +0,0 @@ -

GrandChild 10

- -

I am the child of Child.

- - diff --git a/packages/playground/big/src/pages/10/OtherChild.svelte b/packages/playground/big/src/pages/10/OtherChild.svelte deleted file mode 100644 index 97890ff42..000000000 --- a/packages/playground/big/src/pages/10/OtherChild.svelte +++ /dev/null @@ -1,11 +0,0 @@ -
-

Other Child 10

- -

I am the other child.

-
- - diff --git a/packages/playground/big/src/pages/10/OtherGrandChild.svelte b/packages/playground/big/src/pages/10/OtherGrandChild.svelte deleted file mode 100644 index 65bd9bb4e..000000000 --- a/packages/playground/big/src/pages/10/OtherGrandChild.svelte +++ /dev/null @@ -1,9 +0,0 @@ -

Other GrandChild 10

- -

I am the child of Child.

- - diff --git a/packages/playground/big/src/pages/10/index.svelte b/packages/playground/big/src/pages/10/index.svelte deleted file mode 100644 index c7bfa037f..000000000 --- a/packages/playground/big/src/pages/10/index.svelte +++ /dev/null @@ -1,29 +0,0 @@ - - -

Page 10

- -

I am page 01.

- -

I have some children:

- -
- - -
- - diff --git a/packages/playground/big/src/pages/11/Child.svelte b/packages/playground/big/src/pages/11/Child.svelte deleted file mode 100644 index dd4320581..000000000 --- a/packages/playground/big/src/pages/11/Child.svelte +++ /dev/null @@ -1,20 +0,0 @@ - - -
-

Child 11

- -

I have kids too:

- - - - -
- - diff --git a/packages/playground/big/src/pages/11/GrandChild.svelte b/packages/playground/big/src/pages/11/GrandChild.svelte deleted file mode 100644 index 9e81aa14c..000000000 --- a/packages/playground/big/src/pages/11/GrandChild.svelte +++ /dev/null @@ -1,9 +0,0 @@ -

GrandChild 11

- -

I am the child of Child.

- - diff --git a/packages/playground/big/src/pages/11/OtherChild.svelte b/packages/playground/big/src/pages/11/OtherChild.svelte deleted file mode 100644 index a141ad7ca..000000000 --- a/packages/playground/big/src/pages/11/OtherChild.svelte +++ /dev/null @@ -1,11 +0,0 @@ -
-

Other Child 11

- -

I am the other child.

-
- - diff --git a/packages/playground/big/src/pages/11/OtherGrandChild.svelte b/packages/playground/big/src/pages/11/OtherGrandChild.svelte deleted file mode 100644 index d4f5952f4..000000000 --- a/packages/playground/big/src/pages/11/OtherGrandChild.svelte +++ /dev/null @@ -1,9 +0,0 @@ -

Other GrandChild 11

- -

I am the child of Child.

- - diff --git a/packages/playground/big/src/pages/11/index.svelte b/packages/playground/big/src/pages/11/index.svelte deleted file mode 100644 index 9beb7306f..000000000 --- a/packages/playground/big/src/pages/11/index.svelte +++ /dev/null @@ -1,29 +0,0 @@ - - -

Page 11

- -

I am page 01.

- -

I have some children:

- -
- - -
- - diff --git a/packages/playground/big/src/pages/12/Child.svelte b/packages/playground/big/src/pages/12/Child.svelte deleted file mode 100644 index 1ff8b036e..000000000 --- a/packages/playground/big/src/pages/12/Child.svelte +++ /dev/null @@ -1,20 +0,0 @@ - - -
-

Child 12

- -

I have kids too:

- - - - -
- - diff --git a/packages/playground/big/src/pages/12/GrandChild.svelte b/packages/playground/big/src/pages/12/GrandChild.svelte deleted file mode 100644 index 3376beb8a..000000000 --- a/packages/playground/big/src/pages/12/GrandChild.svelte +++ /dev/null @@ -1,9 +0,0 @@ -

GrandChild 12

- -

I am the child of Child.

- - diff --git a/packages/playground/big/src/pages/12/OtherChild.svelte b/packages/playground/big/src/pages/12/OtherChild.svelte deleted file mode 100644 index a114a9c3d..000000000 --- a/packages/playground/big/src/pages/12/OtherChild.svelte +++ /dev/null @@ -1,11 +0,0 @@ -
-

Other Child 12

- -

I am the other child.

-
- - diff --git a/packages/playground/big/src/pages/12/OtherGrandChild.svelte b/packages/playground/big/src/pages/12/OtherGrandChild.svelte deleted file mode 100644 index 4ba08f142..000000000 --- a/packages/playground/big/src/pages/12/OtherGrandChild.svelte +++ /dev/null @@ -1,9 +0,0 @@ -

Other GrandChild 12

- -

I am the child of Child.

- - diff --git a/packages/playground/big/src/pages/12/index.svelte b/packages/playground/big/src/pages/12/index.svelte deleted file mode 100644 index 97d7ef2b8..000000000 --- a/packages/playground/big/src/pages/12/index.svelte +++ /dev/null @@ -1,29 +0,0 @@ - - -

Page 12

- -

I am page 01.

- -

I have some children:

- -
- - -
- - diff --git a/packages/playground/big/src/pages/13/Child.svelte b/packages/playground/big/src/pages/13/Child.svelte deleted file mode 100644 index fae168d59..000000000 --- a/packages/playground/big/src/pages/13/Child.svelte +++ /dev/null @@ -1,20 +0,0 @@ - - -
-

Child 13

- -

I have kids too:

- - - - -
- - diff --git a/packages/playground/big/src/pages/13/GrandChild.svelte b/packages/playground/big/src/pages/13/GrandChild.svelte deleted file mode 100644 index d23754dc2..000000000 --- a/packages/playground/big/src/pages/13/GrandChild.svelte +++ /dev/null @@ -1,9 +0,0 @@ -

GrandChild 13

- -

I am the child of Child.

- - diff --git a/packages/playground/big/src/pages/13/OtherChild.svelte b/packages/playground/big/src/pages/13/OtherChild.svelte deleted file mode 100644 index 3cf50f7f1..000000000 --- a/packages/playground/big/src/pages/13/OtherChild.svelte +++ /dev/null @@ -1,11 +0,0 @@ -
-

Other Child 13

- -

I am the other child.

-
- - diff --git a/packages/playground/big/src/pages/13/OtherGrandChild.svelte b/packages/playground/big/src/pages/13/OtherGrandChild.svelte deleted file mode 100644 index 61e3a0ea0..000000000 --- a/packages/playground/big/src/pages/13/OtherGrandChild.svelte +++ /dev/null @@ -1,9 +0,0 @@ -

Other GrandChild 13

- -

I am the child of Child.

- - diff --git a/packages/playground/big/src/pages/13/index.svelte b/packages/playground/big/src/pages/13/index.svelte deleted file mode 100644 index fc9839cc6..000000000 --- a/packages/playground/big/src/pages/13/index.svelte +++ /dev/null @@ -1,29 +0,0 @@ - - -

Page 13

- -

I am page 01.

- -

I have some children:

- -
- - -
- - diff --git a/packages/playground/big/src/pages/14/Child.svelte b/packages/playground/big/src/pages/14/Child.svelte deleted file mode 100644 index ad94889dd..000000000 --- a/packages/playground/big/src/pages/14/Child.svelte +++ /dev/null @@ -1,20 +0,0 @@ - - -
-

Child 14

- -

I have kids too:

- - - - -
- - diff --git a/packages/playground/big/src/pages/14/GrandChild.svelte b/packages/playground/big/src/pages/14/GrandChild.svelte deleted file mode 100644 index b66774f24..000000000 --- a/packages/playground/big/src/pages/14/GrandChild.svelte +++ /dev/null @@ -1,9 +0,0 @@ -

GrandChild 14

- -

I am the child of Child.

- - diff --git a/packages/playground/big/src/pages/14/OtherChild.svelte b/packages/playground/big/src/pages/14/OtherChild.svelte deleted file mode 100644 index 6d2f48a1e..000000000 --- a/packages/playground/big/src/pages/14/OtherChild.svelte +++ /dev/null @@ -1,11 +0,0 @@ -
-

Other Child 14

- -

I am the other child.

-
- - diff --git a/packages/playground/big/src/pages/14/OtherGrandChild.svelte b/packages/playground/big/src/pages/14/OtherGrandChild.svelte deleted file mode 100644 index 7f8dd24f0..000000000 --- a/packages/playground/big/src/pages/14/OtherGrandChild.svelte +++ /dev/null @@ -1,9 +0,0 @@ -

Other GrandChild 14

- -

I am the child of Child.

- - diff --git a/packages/playground/big/src/pages/14/index.svelte b/packages/playground/big/src/pages/14/index.svelte deleted file mode 100644 index 456ad7b5c..000000000 --- a/packages/playground/big/src/pages/14/index.svelte +++ /dev/null @@ -1,29 +0,0 @@ - - -

Page 14

- -

I am page 01.

- -

I have some children:

- -
- - -
- - diff --git a/packages/playground/big/src/pages/15/Child.svelte b/packages/playground/big/src/pages/15/Child.svelte deleted file mode 100644 index 488a334bc..000000000 --- a/packages/playground/big/src/pages/15/Child.svelte +++ /dev/null @@ -1,20 +0,0 @@ - - -
-

Child 15

- -

I have kids too:

- - - - -
- - diff --git a/packages/playground/big/src/pages/15/GrandChild.svelte b/packages/playground/big/src/pages/15/GrandChild.svelte deleted file mode 100644 index c4c5521a2..000000000 --- a/packages/playground/big/src/pages/15/GrandChild.svelte +++ /dev/null @@ -1,9 +0,0 @@ -

GrandChild 15

- -

I am the child of Child.

- - diff --git a/packages/playground/big/src/pages/15/OtherChild.svelte b/packages/playground/big/src/pages/15/OtherChild.svelte deleted file mode 100644 index d1808c7b5..000000000 --- a/packages/playground/big/src/pages/15/OtherChild.svelte +++ /dev/null @@ -1,11 +0,0 @@ -
-

Other Child 15

- -

I am the other child.

-
- - diff --git a/packages/playground/big/src/pages/15/OtherGrandChild.svelte b/packages/playground/big/src/pages/15/OtherGrandChild.svelte deleted file mode 100644 index b6995b3d2..000000000 --- a/packages/playground/big/src/pages/15/OtherGrandChild.svelte +++ /dev/null @@ -1,9 +0,0 @@ -

Other GrandChild 15

- -

I am the child of Child.

- - diff --git a/packages/playground/big/src/pages/15/index.svelte b/packages/playground/big/src/pages/15/index.svelte deleted file mode 100644 index ddd25f181..000000000 --- a/packages/playground/big/src/pages/15/index.svelte +++ /dev/null @@ -1,29 +0,0 @@ - - -

Page 15

- -

I am page 01.

- -

I have some children:

- -
- - -
- - diff --git a/packages/playground/big/src/pages/16/Child.svelte b/packages/playground/big/src/pages/16/Child.svelte deleted file mode 100644 index a8ba4874f..000000000 --- a/packages/playground/big/src/pages/16/Child.svelte +++ /dev/null @@ -1,20 +0,0 @@ - - -
-

Child 16

- -

I have kids too:

- - - - -
- - diff --git a/packages/playground/big/src/pages/16/GrandChild.svelte b/packages/playground/big/src/pages/16/GrandChild.svelte deleted file mode 100644 index 1e7d40bd2..000000000 --- a/packages/playground/big/src/pages/16/GrandChild.svelte +++ /dev/null @@ -1,9 +0,0 @@ -

GrandChild 16

- -

I am the child of Child.

- - diff --git a/packages/playground/big/src/pages/16/OtherChild.svelte b/packages/playground/big/src/pages/16/OtherChild.svelte deleted file mode 100644 index 306bfb051..000000000 --- a/packages/playground/big/src/pages/16/OtherChild.svelte +++ /dev/null @@ -1,11 +0,0 @@ -
-

Other Child 16

- -

I am the other child.

-
- - diff --git a/packages/playground/big/src/pages/16/OtherGrandChild.svelte b/packages/playground/big/src/pages/16/OtherGrandChild.svelte deleted file mode 100644 index 778aae13f..000000000 --- a/packages/playground/big/src/pages/16/OtherGrandChild.svelte +++ /dev/null @@ -1,9 +0,0 @@ -

Other GrandChild 16

- -

I am the child of Child.

- - diff --git a/packages/playground/big/src/pages/16/index.svelte b/packages/playground/big/src/pages/16/index.svelte deleted file mode 100644 index 0d252e9ab..000000000 --- a/packages/playground/big/src/pages/16/index.svelte +++ /dev/null @@ -1,29 +0,0 @@ - - -

Page 16

- -

I am page 01.

- -

I have some children:

- -
- - -
- - diff --git a/packages/playground/big/src/pages/17/Child.svelte b/packages/playground/big/src/pages/17/Child.svelte deleted file mode 100644 index 66c12815a..000000000 --- a/packages/playground/big/src/pages/17/Child.svelte +++ /dev/null @@ -1,20 +0,0 @@ - - -
-

Child 17

- -

I have kids too:

- - - - -
- - diff --git a/packages/playground/big/src/pages/17/GrandChild.svelte b/packages/playground/big/src/pages/17/GrandChild.svelte deleted file mode 100644 index dbd053b2b..000000000 --- a/packages/playground/big/src/pages/17/GrandChild.svelte +++ /dev/null @@ -1,9 +0,0 @@ -

GrandChild 17

- -

I am the child of Child.

- - diff --git a/packages/playground/big/src/pages/17/OtherChild.svelte b/packages/playground/big/src/pages/17/OtherChild.svelte deleted file mode 100644 index 68b64dc10..000000000 --- a/packages/playground/big/src/pages/17/OtherChild.svelte +++ /dev/null @@ -1,11 +0,0 @@ -
-

Other Child 17

- -

I am the other child.

-
- - diff --git a/packages/playground/big/src/pages/17/OtherGrandChild.svelte b/packages/playground/big/src/pages/17/OtherGrandChild.svelte deleted file mode 100644 index a3563ff7b..000000000 --- a/packages/playground/big/src/pages/17/OtherGrandChild.svelte +++ /dev/null @@ -1,9 +0,0 @@ -

Other GrandChild 17

- -

I am the child of Child.

- - diff --git a/packages/playground/big/src/pages/17/index.svelte b/packages/playground/big/src/pages/17/index.svelte deleted file mode 100644 index 5f52965ec..000000000 --- a/packages/playground/big/src/pages/17/index.svelte +++ /dev/null @@ -1,29 +0,0 @@ - - -

Page 17

- -

I am page 01.

- -

I have some children:

- -
- - -
- - diff --git a/packages/playground/big/src/pages/18/Child.svelte b/packages/playground/big/src/pages/18/Child.svelte deleted file mode 100644 index 107dfee66..000000000 --- a/packages/playground/big/src/pages/18/Child.svelte +++ /dev/null @@ -1,20 +0,0 @@ - - -
-

Child 18

- -

I have kids too:

- - - - -
- - diff --git a/packages/playground/big/src/pages/18/GrandChild.svelte b/packages/playground/big/src/pages/18/GrandChild.svelte deleted file mode 100644 index bb985598e..000000000 --- a/packages/playground/big/src/pages/18/GrandChild.svelte +++ /dev/null @@ -1,9 +0,0 @@ -

GrandChild 18

- -

I am the child of Child.

- - diff --git a/packages/playground/big/src/pages/18/OtherChild.svelte b/packages/playground/big/src/pages/18/OtherChild.svelte deleted file mode 100644 index 9c30a8a86..000000000 --- a/packages/playground/big/src/pages/18/OtherChild.svelte +++ /dev/null @@ -1,11 +0,0 @@ -
-

Other Child 18

- -

I am the other child.

-
- - diff --git a/packages/playground/big/src/pages/18/OtherGrandChild.svelte b/packages/playground/big/src/pages/18/OtherGrandChild.svelte deleted file mode 100644 index 8789410aa..000000000 --- a/packages/playground/big/src/pages/18/OtherGrandChild.svelte +++ /dev/null @@ -1,9 +0,0 @@ -

Other GrandChild 18

- -

I am the child of Child.

- - diff --git a/packages/playground/big/src/pages/18/index.svelte b/packages/playground/big/src/pages/18/index.svelte deleted file mode 100644 index d674f7251..000000000 --- a/packages/playground/big/src/pages/18/index.svelte +++ /dev/null @@ -1,29 +0,0 @@ - - -

Page 18

- -

I am page 01.

- -

I have some children:

- -
- - -
- - diff --git a/packages/playground/big/src/pages/19/Child.svelte b/packages/playground/big/src/pages/19/Child.svelte deleted file mode 100644 index 7855ab8e2..000000000 --- a/packages/playground/big/src/pages/19/Child.svelte +++ /dev/null @@ -1,20 +0,0 @@ - - -
-

Child 19

- -

I have kids too:

- - - - -
- - diff --git a/packages/playground/big/src/pages/19/GrandChild.svelte b/packages/playground/big/src/pages/19/GrandChild.svelte deleted file mode 100644 index 70ba64895..000000000 --- a/packages/playground/big/src/pages/19/GrandChild.svelte +++ /dev/null @@ -1,9 +0,0 @@ -

GrandChild 19

- -

I am the child of Child.

- - diff --git a/packages/playground/big/src/pages/19/OtherChild.svelte b/packages/playground/big/src/pages/19/OtherChild.svelte deleted file mode 100644 index 71108f4ad..000000000 --- a/packages/playground/big/src/pages/19/OtherChild.svelte +++ /dev/null @@ -1,11 +0,0 @@ -
-

Other Child 19

- -

I am the other child.

-
- - diff --git a/packages/playground/big/src/pages/19/OtherGrandChild.svelte b/packages/playground/big/src/pages/19/OtherGrandChild.svelte deleted file mode 100644 index 45dbff85d..000000000 --- a/packages/playground/big/src/pages/19/OtherGrandChild.svelte +++ /dev/null @@ -1,9 +0,0 @@ -

Other GrandChild 19

- -

I am the child of Child.

- - diff --git a/packages/playground/big/src/pages/19/index.svelte b/packages/playground/big/src/pages/19/index.svelte deleted file mode 100644 index e784d117e..000000000 --- a/packages/playground/big/src/pages/19/index.svelte +++ /dev/null @@ -1,29 +0,0 @@ - - -

Page 19

- -

I am page 01.

- -

I have some children:

- -
- - -
- - diff --git a/packages/playground/big/src/pages/20/Child.svelte b/packages/playground/big/src/pages/20/Child.svelte deleted file mode 100644 index 0e1e6e62d..000000000 --- a/packages/playground/big/src/pages/20/Child.svelte +++ /dev/null @@ -1,20 +0,0 @@ - - -
-

Child 20

- -

I have kids too:

- - - - -
- - diff --git a/packages/playground/big/src/pages/20/GrandChild.svelte b/packages/playground/big/src/pages/20/GrandChild.svelte deleted file mode 100644 index 8dfe00fb7..000000000 --- a/packages/playground/big/src/pages/20/GrandChild.svelte +++ /dev/null @@ -1,9 +0,0 @@ -

GrandChild 20

- -

I am the child of Child.

- - diff --git a/packages/playground/big/src/pages/20/OtherChild.svelte b/packages/playground/big/src/pages/20/OtherChild.svelte deleted file mode 100644 index 055e322ad..000000000 --- a/packages/playground/big/src/pages/20/OtherChild.svelte +++ /dev/null @@ -1,11 +0,0 @@ -
-

Other Child 20

- -

I am the other child.

-
- - diff --git a/packages/playground/big/src/pages/20/OtherGrandChild.svelte b/packages/playground/big/src/pages/20/OtherGrandChild.svelte deleted file mode 100644 index a17aa14f7..000000000 --- a/packages/playground/big/src/pages/20/OtherGrandChild.svelte +++ /dev/null @@ -1,9 +0,0 @@ -

Other GrandChild 20

- -

I am the child of Child.

- - diff --git a/packages/playground/big/src/pages/20/index.svelte b/packages/playground/big/src/pages/20/index.svelte deleted file mode 100644 index 7a7199978..000000000 --- a/packages/playground/big/src/pages/20/index.svelte +++ /dev/null @@ -1,29 +0,0 @@ - - -

Page 20

- -

I am page 01.

- -

I have some children:

- -
- - -
- - diff --git a/packages/playground/big/src/pages/21/Child.svelte b/packages/playground/big/src/pages/21/Child.svelte deleted file mode 100644 index 04594eb45..000000000 --- a/packages/playground/big/src/pages/21/Child.svelte +++ /dev/null @@ -1,20 +0,0 @@ - - -
-

Child 21

- -

I have kids too:

- - - - -
- - diff --git a/packages/playground/big/src/pages/21/GrandChild.svelte b/packages/playground/big/src/pages/21/GrandChild.svelte deleted file mode 100644 index ed00212e4..000000000 --- a/packages/playground/big/src/pages/21/GrandChild.svelte +++ /dev/null @@ -1,9 +0,0 @@ -

GrandChild 21

- -

I am the child of Child.

- - diff --git a/packages/playground/big/src/pages/21/OtherChild.svelte b/packages/playground/big/src/pages/21/OtherChild.svelte deleted file mode 100644 index d9f90707f..000000000 --- a/packages/playground/big/src/pages/21/OtherChild.svelte +++ /dev/null @@ -1,11 +0,0 @@ -
-

Other Child 21

- -

I am the other child.

-
- - diff --git a/packages/playground/big/src/pages/21/OtherGrandChild.svelte b/packages/playground/big/src/pages/21/OtherGrandChild.svelte deleted file mode 100644 index fa0e8bbdc..000000000 --- a/packages/playground/big/src/pages/21/OtherGrandChild.svelte +++ /dev/null @@ -1,9 +0,0 @@ -

Other GrandChild 21

- -

I am the child of Child.

- - diff --git a/packages/playground/big/src/pages/21/index.svelte b/packages/playground/big/src/pages/21/index.svelte deleted file mode 100644 index 1ed8c27cc..000000000 --- a/packages/playground/big/src/pages/21/index.svelte +++ /dev/null @@ -1,29 +0,0 @@ - - -

Page 21

- -

I am page 01.

- -

I have some children:

- -
- - -
- - diff --git a/packages/playground/big/src/pages/22/Child.svelte b/packages/playground/big/src/pages/22/Child.svelte deleted file mode 100644 index 044b86d2b..000000000 --- a/packages/playground/big/src/pages/22/Child.svelte +++ /dev/null @@ -1,20 +0,0 @@ - - -
-

Child 22

- -

I have kids too:

- - - - -
- - diff --git a/packages/playground/big/src/pages/22/GrandChild.svelte b/packages/playground/big/src/pages/22/GrandChild.svelte deleted file mode 100644 index 1e271d70b..000000000 --- a/packages/playground/big/src/pages/22/GrandChild.svelte +++ /dev/null @@ -1,9 +0,0 @@ -

GrandChild 22

- -

I am the child of Child.

- - diff --git a/packages/playground/big/src/pages/22/OtherChild.svelte b/packages/playground/big/src/pages/22/OtherChild.svelte deleted file mode 100644 index 9f8c960b2..000000000 --- a/packages/playground/big/src/pages/22/OtherChild.svelte +++ /dev/null @@ -1,11 +0,0 @@ -
-

Other Child 22

- -

I am the other child.

-
- - diff --git a/packages/playground/big/src/pages/22/OtherGrandChild.svelte b/packages/playground/big/src/pages/22/OtherGrandChild.svelte deleted file mode 100644 index 3d545d391..000000000 --- a/packages/playground/big/src/pages/22/OtherGrandChild.svelte +++ /dev/null @@ -1,9 +0,0 @@ -

Other GrandChild 22

- -

I am the child of Child.

- - diff --git a/packages/playground/big/src/pages/22/index.svelte b/packages/playground/big/src/pages/22/index.svelte deleted file mode 100644 index e863889ba..000000000 --- a/packages/playground/big/src/pages/22/index.svelte +++ /dev/null @@ -1,29 +0,0 @@ - - -

Page 22

- -

I am page 01.

- -

I have some children:

- -
- - -
- - diff --git a/packages/playground/big/src/pages/23/Child.svelte b/packages/playground/big/src/pages/23/Child.svelte deleted file mode 100644 index 217350e9f..000000000 --- a/packages/playground/big/src/pages/23/Child.svelte +++ /dev/null @@ -1,20 +0,0 @@ - - -
-

Child 23

- -

I have kids too:

- - - - -
- - diff --git a/packages/playground/big/src/pages/23/GrandChild.svelte b/packages/playground/big/src/pages/23/GrandChild.svelte deleted file mode 100644 index 0abfdfdde..000000000 --- a/packages/playground/big/src/pages/23/GrandChild.svelte +++ /dev/null @@ -1,9 +0,0 @@ -

GrandChild 23

- -

I am the child of Child.

- - diff --git a/packages/playground/big/src/pages/23/OtherChild.svelte b/packages/playground/big/src/pages/23/OtherChild.svelte deleted file mode 100644 index 1f6a6312c..000000000 --- a/packages/playground/big/src/pages/23/OtherChild.svelte +++ /dev/null @@ -1,11 +0,0 @@ -
-

Other Child 23

- -

I am the other child.

-
- - diff --git a/packages/playground/big/src/pages/23/OtherGrandChild.svelte b/packages/playground/big/src/pages/23/OtherGrandChild.svelte deleted file mode 100644 index 9319da5f6..000000000 --- a/packages/playground/big/src/pages/23/OtherGrandChild.svelte +++ /dev/null @@ -1,9 +0,0 @@ -

Other GrandChild 23

- -

I am the child of Child.

- - diff --git a/packages/playground/big/src/pages/23/index.svelte b/packages/playground/big/src/pages/23/index.svelte deleted file mode 100644 index 782ad8dd3..000000000 --- a/packages/playground/big/src/pages/23/index.svelte +++ /dev/null @@ -1,29 +0,0 @@ - - -

Page 23

- -

I am page 01.

- -

I have some children:

- -
- - -
- - diff --git a/packages/playground/big/src/pages/24/Child.svelte b/packages/playground/big/src/pages/24/Child.svelte deleted file mode 100644 index 28a0cef18..000000000 --- a/packages/playground/big/src/pages/24/Child.svelte +++ /dev/null @@ -1,20 +0,0 @@ - - -
-

Child 24

- -

I have kids too:

- - - - -
- - diff --git a/packages/playground/big/src/pages/24/GrandChild.svelte b/packages/playground/big/src/pages/24/GrandChild.svelte deleted file mode 100644 index 6f7ef7433..000000000 --- a/packages/playground/big/src/pages/24/GrandChild.svelte +++ /dev/null @@ -1,9 +0,0 @@ -

GrandChild 24

- -

I am the child of Child.

- - diff --git a/packages/playground/big/src/pages/24/OtherChild.svelte b/packages/playground/big/src/pages/24/OtherChild.svelte deleted file mode 100644 index 9178e1ee2..000000000 --- a/packages/playground/big/src/pages/24/OtherChild.svelte +++ /dev/null @@ -1,11 +0,0 @@ -
-

Other Child 24

- -

I am the other child.

-
- - diff --git a/packages/playground/big/src/pages/24/OtherGrandChild.svelte b/packages/playground/big/src/pages/24/OtherGrandChild.svelte deleted file mode 100644 index 47646406a..000000000 --- a/packages/playground/big/src/pages/24/OtherGrandChild.svelte +++ /dev/null @@ -1,9 +0,0 @@ -

Other GrandChild 24

- -

I am the child of Child.

- - diff --git a/packages/playground/big/src/pages/24/index.svelte b/packages/playground/big/src/pages/24/index.svelte deleted file mode 100644 index f9bb173d0..000000000 --- a/packages/playground/big/src/pages/24/index.svelte +++ /dev/null @@ -1,29 +0,0 @@ - - -

Page 24

- -

I am page 01.

- -

I have some children:

- -
- - -
- - diff --git a/packages/playground/big/src/pages/25/Child.svelte b/packages/playground/big/src/pages/25/Child.svelte deleted file mode 100644 index 221371bcf..000000000 --- a/packages/playground/big/src/pages/25/Child.svelte +++ /dev/null @@ -1,20 +0,0 @@ - - -
-

Child 25

- -

I have kids too:

- - - - -
- - diff --git a/packages/playground/big/src/pages/25/GrandChild.svelte b/packages/playground/big/src/pages/25/GrandChild.svelte deleted file mode 100644 index ae0c1022b..000000000 --- a/packages/playground/big/src/pages/25/GrandChild.svelte +++ /dev/null @@ -1,9 +0,0 @@ -

GrandChild 25

- -

I am the child of Child.

- - diff --git a/packages/playground/big/src/pages/25/OtherChild.svelte b/packages/playground/big/src/pages/25/OtherChild.svelte deleted file mode 100644 index 3e8ad699c..000000000 --- a/packages/playground/big/src/pages/25/OtherChild.svelte +++ /dev/null @@ -1,11 +0,0 @@ -
-

Other Child 25

- -

I am the other child.

-
- - diff --git a/packages/playground/big/src/pages/25/OtherGrandChild.svelte b/packages/playground/big/src/pages/25/OtherGrandChild.svelte deleted file mode 100644 index b057cd208..000000000 --- a/packages/playground/big/src/pages/25/OtherGrandChild.svelte +++ /dev/null @@ -1,9 +0,0 @@ -

Other GrandChild 25

- -

I am the child of Child.

- - diff --git a/packages/playground/big/src/pages/25/index.svelte b/packages/playground/big/src/pages/25/index.svelte deleted file mode 100644 index f87cf39a5..000000000 --- a/packages/playground/big/src/pages/25/index.svelte +++ /dev/null @@ -1,29 +0,0 @@ - - -

Page 25

- -

I am page 01.

- -

I have some children:

- -
- - -
- - diff --git a/packages/playground/big/src/pages/26/Child.svelte b/packages/playground/big/src/pages/26/Child.svelte deleted file mode 100644 index 1b6fbbd62..000000000 --- a/packages/playground/big/src/pages/26/Child.svelte +++ /dev/null @@ -1,20 +0,0 @@ - - -
-

Child 26

- -

I have kids too:

- - - - -
- - diff --git a/packages/playground/big/src/pages/26/GrandChild.svelte b/packages/playground/big/src/pages/26/GrandChild.svelte deleted file mode 100644 index 695c7c3ca..000000000 --- a/packages/playground/big/src/pages/26/GrandChild.svelte +++ /dev/null @@ -1,9 +0,0 @@ -

GrandChild 26

- -

I am the child of Child.

- - diff --git a/packages/playground/big/src/pages/26/OtherChild.svelte b/packages/playground/big/src/pages/26/OtherChild.svelte deleted file mode 100644 index 8ffde3304..000000000 --- a/packages/playground/big/src/pages/26/OtherChild.svelte +++ /dev/null @@ -1,11 +0,0 @@ -
-

Other Child 26

- -

I am the other child.

-
- - diff --git a/packages/playground/big/src/pages/26/OtherGrandChild.svelte b/packages/playground/big/src/pages/26/OtherGrandChild.svelte deleted file mode 100644 index 8d4cfec32..000000000 --- a/packages/playground/big/src/pages/26/OtherGrandChild.svelte +++ /dev/null @@ -1,9 +0,0 @@ -

Other GrandChild 26

- -

I am the child of Child.

- - diff --git a/packages/playground/big/src/pages/26/index.svelte b/packages/playground/big/src/pages/26/index.svelte deleted file mode 100644 index 9eaab8d3f..000000000 --- a/packages/playground/big/src/pages/26/index.svelte +++ /dev/null @@ -1,29 +0,0 @@ - - -

Page 26

- -

I am page 01.

- -

I have some children:

- -
- - -
- - diff --git a/packages/playground/big/src/pages/27/Child.svelte b/packages/playground/big/src/pages/27/Child.svelte deleted file mode 100644 index b75bdb1a7..000000000 --- a/packages/playground/big/src/pages/27/Child.svelte +++ /dev/null @@ -1,20 +0,0 @@ - - -
-

Child 27

- -

I have kids too:

- - - - -
- - diff --git a/packages/playground/big/src/pages/27/GrandChild.svelte b/packages/playground/big/src/pages/27/GrandChild.svelte deleted file mode 100644 index 23599febb..000000000 --- a/packages/playground/big/src/pages/27/GrandChild.svelte +++ /dev/null @@ -1,9 +0,0 @@ -

GrandChild 27

- -

I am the child of Child.

- - diff --git a/packages/playground/big/src/pages/27/OtherChild.svelte b/packages/playground/big/src/pages/27/OtherChild.svelte deleted file mode 100644 index 8c77cd050..000000000 --- a/packages/playground/big/src/pages/27/OtherChild.svelte +++ /dev/null @@ -1,11 +0,0 @@ -
-

Other Child 27

- -

I am the other child.

-
- - diff --git a/packages/playground/big/src/pages/27/OtherGrandChild.svelte b/packages/playground/big/src/pages/27/OtherGrandChild.svelte deleted file mode 100644 index 55c05cee4..000000000 --- a/packages/playground/big/src/pages/27/OtherGrandChild.svelte +++ /dev/null @@ -1,9 +0,0 @@ -

Other GrandChild 27

- -

I am the child of Child.

- - diff --git a/packages/playground/big/src/pages/27/index.svelte b/packages/playground/big/src/pages/27/index.svelte deleted file mode 100644 index fb5b39a8d..000000000 --- a/packages/playground/big/src/pages/27/index.svelte +++ /dev/null @@ -1,29 +0,0 @@ - - -

Page 27

- -

I am page 01.

- -

I have some children:

- -
- - -
- - diff --git a/packages/playground/big/src/pages/28/Child.svelte b/packages/playground/big/src/pages/28/Child.svelte deleted file mode 100644 index 572a0b8d4..000000000 --- a/packages/playground/big/src/pages/28/Child.svelte +++ /dev/null @@ -1,20 +0,0 @@ - - -
-

Child 28

- -

I have kids too:

- - - - -
- - diff --git a/packages/playground/big/src/pages/28/GrandChild.svelte b/packages/playground/big/src/pages/28/GrandChild.svelte deleted file mode 100644 index 72ce4dbe5..000000000 --- a/packages/playground/big/src/pages/28/GrandChild.svelte +++ /dev/null @@ -1,9 +0,0 @@ -

GrandChild 28

- -

I am the child of Child.

- - diff --git a/packages/playground/big/src/pages/28/OtherChild.svelte b/packages/playground/big/src/pages/28/OtherChild.svelte deleted file mode 100644 index c33734f10..000000000 --- a/packages/playground/big/src/pages/28/OtherChild.svelte +++ /dev/null @@ -1,11 +0,0 @@ -
-

Other Child 28

- -

I am the other child.

-
- - diff --git a/packages/playground/big/src/pages/28/OtherGrandChild.svelte b/packages/playground/big/src/pages/28/OtherGrandChild.svelte deleted file mode 100644 index b84e87764..000000000 --- a/packages/playground/big/src/pages/28/OtherGrandChild.svelte +++ /dev/null @@ -1,9 +0,0 @@ -

Other GrandChild 28

- -

I am the child of Child.

- - diff --git a/packages/playground/big/src/pages/28/index.svelte b/packages/playground/big/src/pages/28/index.svelte deleted file mode 100644 index 9ba89c7e4..000000000 --- a/packages/playground/big/src/pages/28/index.svelte +++ /dev/null @@ -1,29 +0,0 @@ - - -

Page 28

- -

I am page 01.

- -

I have some children:

- -
- - -
- - diff --git a/packages/playground/big/src/pages/29/Child.svelte b/packages/playground/big/src/pages/29/Child.svelte deleted file mode 100644 index a19f5745d..000000000 --- a/packages/playground/big/src/pages/29/Child.svelte +++ /dev/null @@ -1,20 +0,0 @@ - - -
-

Child 29

- -

I have kids too:

- - - - -
- - diff --git a/packages/playground/big/src/pages/29/GrandChild.svelte b/packages/playground/big/src/pages/29/GrandChild.svelte deleted file mode 100644 index e81b6fecd..000000000 --- a/packages/playground/big/src/pages/29/GrandChild.svelte +++ /dev/null @@ -1,9 +0,0 @@ -

GrandChild 29

- -

I am the child of Child.

- - diff --git a/packages/playground/big/src/pages/29/OtherChild.svelte b/packages/playground/big/src/pages/29/OtherChild.svelte deleted file mode 100644 index e58eaed99..000000000 --- a/packages/playground/big/src/pages/29/OtherChild.svelte +++ /dev/null @@ -1,11 +0,0 @@ -
-

Other Child 29

- -

I am the other child.

-
- - diff --git a/packages/playground/big/src/pages/29/OtherGrandChild.svelte b/packages/playground/big/src/pages/29/OtherGrandChild.svelte deleted file mode 100644 index 48ab9614c..000000000 --- a/packages/playground/big/src/pages/29/OtherGrandChild.svelte +++ /dev/null @@ -1,9 +0,0 @@ -

Other GrandChild 29

- -

I am the child of Child.

- - diff --git a/packages/playground/big/src/pages/29/index.svelte b/packages/playground/big/src/pages/29/index.svelte deleted file mode 100644 index ade48fda2..000000000 --- a/packages/playground/big/src/pages/29/index.svelte +++ /dev/null @@ -1,29 +0,0 @@ - - -

Page 29

- -

I am page 01.

- -

I have some children:

- -
- - -
- - diff --git a/packages/playground/big/src/pages/30/Child.svelte b/packages/playground/big/src/pages/30/Child.svelte deleted file mode 100644 index 17b1755a5..000000000 --- a/packages/playground/big/src/pages/30/Child.svelte +++ /dev/null @@ -1,20 +0,0 @@ - - -
-

Child 30

- -

I have kids too:

- - - - -
- - diff --git a/packages/playground/big/src/pages/30/GrandChild.svelte b/packages/playground/big/src/pages/30/GrandChild.svelte deleted file mode 100644 index 3a2ab2076..000000000 --- a/packages/playground/big/src/pages/30/GrandChild.svelte +++ /dev/null @@ -1,9 +0,0 @@ -

GrandChild 30

- -

I am the child of Child.

- - diff --git a/packages/playground/big/src/pages/30/OtherChild.svelte b/packages/playground/big/src/pages/30/OtherChild.svelte deleted file mode 100644 index 74b82dca0..000000000 --- a/packages/playground/big/src/pages/30/OtherChild.svelte +++ /dev/null @@ -1,11 +0,0 @@ -
-

Other Child 30

- -

I am the other child.

-
- - diff --git a/packages/playground/big/src/pages/30/OtherGrandChild.svelte b/packages/playground/big/src/pages/30/OtherGrandChild.svelte deleted file mode 100644 index 6a3cb5ed4..000000000 --- a/packages/playground/big/src/pages/30/OtherGrandChild.svelte +++ /dev/null @@ -1,9 +0,0 @@ -

Other GrandChild 30

- -

I am the child of Child.

- - diff --git a/packages/playground/big/src/pages/30/index.svelte b/packages/playground/big/src/pages/30/index.svelte deleted file mode 100644 index 1d1b4fc3e..000000000 --- a/packages/playground/big/src/pages/30/index.svelte +++ /dev/null @@ -1,29 +0,0 @@ - - -

Page 30

- -

I am page 01.

- -

I have some children:

- -
- - -
- - diff --git a/packages/playground/big/src/pages/31/Child.svelte b/packages/playground/big/src/pages/31/Child.svelte deleted file mode 100644 index 4a430c830..000000000 --- a/packages/playground/big/src/pages/31/Child.svelte +++ /dev/null @@ -1,20 +0,0 @@ - - -
-

Child 31

- -

I have kids too:

- - - - -
- - diff --git a/packages/playground/big/src/pages/31/GrandChild.svelte b/packages/playground/big/src/pages/31/GrandChild.svelte deleted file mode 100644 index cccdf7bef..000000000 --- a/packages/playground/big/src/pages/31/GrandChild.svelte +++ /dev/null @@ -1,9 +0,0 @@ -

GrandChild 31

- -

I am the child of Child.

- - diff --git a/packages/playground/big/src/pages/31/OtherChild.svelte b/packages/playground/big/src/pages/31/OtherChild.svelte deleted file mode 100644 index dcfc2a353..000000000 --- a/packages/playground/big/src/pages/31/OtherChild.svelte +++ /dev/null @@ -1,11 +0,0 @@ -
-

Other Child 31

- -

I am the other child.

-
- - diff --git a/packages/playground/big/src/pages/31/OtherGrandChild.svelte b/packages/playground/big/src/pages/31/OtherGrandChild.svelte deleted file mode 100644 index e6101981a..000000000 --- a/packages/playground/big/src/pages/31/OtherGrandChild.svelte +++ /dev/null @@ -1,9 +0,0 @@ -

Other GrandChild 31

- -

I am the child of Child.

- - diff --git a/packages/playground/big/src/pages/31/index.svelte b/packages/playground/big/src/pages/31/index.svelte deleted file mode 100644 index 854406f1b..000000000 --- a/packages/playground/big/src/pages/31/index.svelte +++ /dev/null @@ -1,29 +0,0 @@ - - -

Page 31

- -

I am page 01.

- -

I have some children:

- -
- - -
- - diff --git a/packages/playground/big/src/pages/32/Child.svelte b/packages/playground/big/src/pages/32/Child.svelte deleted file mode 100644 index 79f389578..000000000 --- a/packages/playground/big/src/pages/32/Child.svelte +++ /dev/null @@ -1,20 +0,0 @@ - - -
-

Child 32

- -

I have kids too:

- - - - -
- - diff --git a/packages/playground/big/src/pages/32/GrandChild.svelte b/packages/playground/big/src/pages/32/GrandChild.svelte deleted file mode 100644 index d6721bd37..000000000 --- a/packages/playground/big/src/pages/32/GrandChild.svelte +++ /dev/null @@ -1,9 +0,0 @@ -

GrandChild 32

- -

I am the child of Child.

- - diff --git a/packages/playground/big/src/pages/32/OtherChild.svelte b/packages/playground/big/src/pages/32/OtherChild.svelte deleted file mode 100644 index 56ed9cb5a..000000000 --- a/packages/playground/big/src/pages/32/OtherChild.svelte +++ /dev/null @@ -1,11 +0,0 @@ -
-

Other Child 32

- -

I am the other child.

-
- - diff --git a/packages/playground/big/src/pages/32/OtherGrandChild.svelte b/packages/playground/big/src/pages/32/OtherGrandChild.svelte deleted file mode 100644 index 9ce2662eb..000000000 --- a/packages/playground/big/src/pages/32/OtherGrandChild.svelte +++ /dev/null @@ -1,9 +0,0 @@ -

Other GrandChild 32

- -

I am the child of Child.

- - diff --git a/packages/playground/big/src/pages/32/index.svelte b/packages/playground/big/src/pages/32/index.svelte deleted file mode 100644 index 2a45035b3..000000000 --- a/packages/playground/big/src/pages/32/index.svelte +++ /dev/null @@ -1,29 +0,0 @@ - - -

Page 32

- -

I am page 01.

- -

I have some children:

- -
- - -
- - diff --git a/packages/playground/big/src/pages/33/Child.svelte b/packages/playground/big/src/pages/33/Child.svelte deleted file mode 100644 index 546024d60..000000000 --- a/packages/playground/big/src/pages/33/Child.svelte +++ /dev/null @@ -1,20 +0,0 @@ - - -
-

Child 33

- -

I have kids too:

- - - - -
- - diff --git a/packages/playground/big/src/pages/33/GrandChild.svelte b/packages/playground/big/src/pages/33/GrandChild.svelte deleted file mode 100644 index bd19a9fb3..000000000 --- a/packages/playground/big/src/pages/33/GrandChild.svelte +++ /dev/null @@ -1,9 +0,0 @@ -

GrandChild 33

- -

I am the child of Child.

- - diff --git a/packages/playground/big/src/pages/33/OtherChild.svelte b/packages/playground/big/src/pages/33/OtherChild.svelte deleted file mode 100644 index 033b0fde7..000000000 --- a/packages/playground/big/src/pages/33/OtherChild.svelte +++ /dev/null @@ -1,11 +0,0 @@ -
-

Other Child 33

- -

I am the other child.

-
- - diff --git a/packages/playground/big/src/pages/33/OtherGrandChild.svelte b/packages/playground/big/src/pages/33/OtherGrandChild.svelte deleted file mode 100644 index 33774a68e..000000000 --- a/packages/playground/big/src/pages/33/OtherGrandChild.svelte +++ /dev/null @@ -1,9 +0,0 @@ -

Other GrandChild 33

- -

I am the child of Child.

- - diff --git a/packages/playground/big/src/pages/33/index.svelte b/packages/playground/big/src/pages/33/index.svelte deleted file mode 100644 index 202883852..000000000 --- a/packages/playground/big/src/pages/33/index.svelte +++ /dev/null @@ -1,29 +0,0 @@ - - -

Page 33

- -

I am page 01.

- -

I have some children:

- -
- - -
- - diff --git a/packages/playground/big/src/pages/34/Child.svelte b/packages/playground/big/src/pages/34/Child.svelte deleted file mode 100644 index 9e2eb45ee..000000000 --- a/packages/playground/big/src/pages/34/Child.svelte +++ /dev/null @@ -1,20 +0,0 @@ - - -
-

Child 34

- -

I have kids too:

- - - - -
- - diff --git a/packages/playground/big/src/pages/34/GrandChild.svelte b/packages/playground/big/src/pages/34/GrandChild.svelte deleted file mode 100644 index 823a7d4cf..000000000 --- a/packages/playground/big/src/pages/34/GrandChild.svelte +++ /dev/null @@ -1,9 +0,0 @@ -

GrandChild 34

- -

I am the child of Child.

- - diff --git a/packages/playground/big/src/pages/34/OtherChild.svelte b/packages/playground/big/src/pages/34/OtherChild.svelte deleted file mode 100644 index c6a526bf2..000000000 --- a/packages/playground/big/src/pages/34/OtherChild.svelte +++ /dev/null @@ -1,11 +0,0 @@ -
-

Other Child 34

- -

I am the other child.

-
- - diff --git a/packages/playground/big/src/pages/34/OtherGrandChild.svelte b/packages/playground/big/src/pages/34/OtherGrandChild.svelte deleted file mode 100644 index d2806f114..000000000 --- a/packages/playground/big/src/pages/34/OtherGrandChild.svelte +++ /dev/null @@ -1,9 +0,0 @@ -

Other GrandChild 34

- -

I am the child of Child.

- - diff --git a/packages/playground/big/src/pages/34/index.svelte b/packages/playground/big/src/pages/34/index.svelte deleted file mode 100644 index 1c56a66e0..000000000 --- a/packages/playground/big/src/pages/34/index.svelte +++ /dev/null @@ -1,29 +0,0 @@ - - -

Page 34

- -

I am page 01.

- -

I have some children:

- -
- - -
- - diff --git a/packages/playground/big/src/pages/35/Child.svelte b/packages/playground/big/src/pages/35/Child.svelte deleted file mode 100644 index b5c1a2fdb..000000000 --- a/packages/playground/big/src/pages/35/Child.svelte +++ /dev/null @@ -1,20 +0,0 @@ - - -
-

Child 35

- -

I have kids too:

- - - - -
- - diff --git a/packages/playground/big/src/pages/35/GrandChild.svelte b/packages/playground/big/src/pages/35/GrandChild.svelte deleted file mode 100644 index 66d7439ca..000000000 --- a/packages/playground/big/src/pages/35/GrandChild.svelte +++ /dev/null @@ -1,9 +0,0 @@ -

GrandChild 35

- -

I am the child of Child.

- - diff --git a/packages/playground/big/src/pages/35/OtherChild.svelte b/packages/playground/big/src/pages/35/OtherChild.svelte deleted file mode 100644 index 6c6780592..000000000 --- a/packages/playground/big/src/pages/35/OtherChild.svelte +++ /dev/null @@ -1,11 +0,0 @@ -
-

Other Child 35

- -

I am the other child.

-
- - diff --git a/packages/playground/big/src/pages/35/OtherGrandChild.svelte b/packages/playground/big/src/pages/35/OtherGrandChild.svelte deleted file mode 100644 index 53cd8c88a..000000000 --- a/packages/playground/big/src/pages/35/OtherGrandChild.svelte +++ /dev/null @@ -1,9 +0,0 @@ -

Other GrandChild 35

- -

I am the child of Child.

- - diff --git a/packages/playground/big/src/pages/35/index.svelte b/packages/playground/big/src/pages/35/index.svelte deleted file mode 100644 index fe15ef4e1..000000000 --- a/packages/playground/big/src/pages/35/index.svelte +++ /dev/null @@ -1,29 +0,0 @@ - - -

Page 35

- -

I am page 01.

- -

I have some children:

- -
- - -
- - diff --git a/packages/playground/big/src/pages/36/Child.svelte b/packages/playground/big/src/pages/36/Child.svelte deleted file mode 100644 index 362c1d093..000000000 --- a/packages/playground/big/src/pages/36/Child.svelte +++ /dev/null @@ -1,20 +0,0 @@ - - -
-

Child 36

- -

I have kids too:

- - - - -
- - diff --git a/packages/playground/big/src/pages/36/GrandChild.svelte b/packages/playground/big/src/pages/36/GrandChild.svelte deleted file mode 100644 index 61a450a14..000000000 --- a/packages/playground/big/src/pages/36/GrandChild.svelte +++ /dev/null @@ -1,9 +0,0 @@ -

GrandChild 36

- -

I am the child of Child.

- - diff --git a/packages/playground/big/src/pages/36/OtherChild.svelte b/packages/playground/big/src/pages/36/OtherChild.svelte deleted file mode 100644 index a6aae290c..000000000 --- a/packages/playground/big/src/pages/36/OtherChild.svelte +++ /dev/null @@ -1,11 +0,0 @@ -
-

Other Child 36

- -

I am the other child.

-
- - diff --git a/packages/playground/big/src/pages/36/OtherGrandChild.svelte b/packages/playground/big/src/pages/36/OtherGrandChild.svelte deleted file mode 100644 index 88571f1b8..000000000 --- a/packages/playground/big/src/pages/36/OtherGrandChild.svelte +++ /dev/null @@ -1,9 +0,0 @@ -

Other GrandChild 36

- -

I am the child of Child.

- - diff --git a/packages/playground/big/src/pages/36/index.svelte b/packages/playground/big/src/pages/36/index.svelte deleted file mode 100644 index 0035267d0..000000000 --- a/packages/playground/big/src/pages/36/index.svelte +++ /dev/null @@ -1,29 +0,0 @@ - - -

Page 36

- -

I am page 01.

- -

I have some children:

- -
- - -
- - diff --git a/packages/playground/big/src/pages/37/Child.svelte b/packages/playground/big/src/pages/37/Child.svelte deleted file mode 100644 index eb8e90f5a..000000000 --- a/packages/playground/big/src/pages/37/Child.svelte +++ /dev/null @@ -1,20 +0,0 @@ - - -
-

Child 37

- -

I have kids too:

- - - - -
- - diff --git a/packages/playground/big/src/pages/37/GrandChild.svelte b/packages/playground/big/src/pages/37/GrandChild.svelte deleted file mode 100644 index e97d9bc03..000000000 --- a/packages/playground/big/src/pages/37/GrandChild.svelte +++ /dev/null @@ -1,9 +0,0 @@ -

GrandChild 37

- -

I am the child of Child.

- - diff --git a/packages/playground/big/src/pages/37/OtherChild.svelte b/packages/playground/big/src/pages/37/OtherChild.svelte deleted file mode 100644 index afa8c0f64..000000000 --- a/packages/playground/big/src/pages/37/OtherChild.svelte +++ /dev/null @@ -1,11 +0,0 @@ -
-

Other Child 37

- -

I am the other child.

-
- - diff --git a/packages/playground/big/src/pages/37/OtherGrandChild.svelte b/packages/playground/big/src/pages/37/OtherGrandChild.svelte deleted file mode 100644 index e47a7107d..000000000 --- a/packages/playground/big/src/pages/37/OtherGrandChild.svelte +++ /dev/null @@ -1,9 +0,0 @@ -

Other GrandChild 37

- -

I am the child of Child.

- - diff --git a/packages/playground/big/src/pages/37/index.svelte b/packages/playground/big/src/pages/37/index.svelte deleted file mode 100644 index e25d68e6a..000000000 --- a/packages/playground/big/src/pages/37/index.svelte +++ /dev/null @@ -1,29 +0,0 @@ - - -

Page 37

- -

I am page 01.

- -

I have some children:

- -
- - -
- - diff --git a/packages/playground/big/src/pages/38/Child.svelte b/packages/playground/big/src/pages/38/Child.svelte deleted file mode 100644 index 73dcb51dc..000000000 --- a/packages/playground/big/src/pages/38/Child.svelte +++ /dev/null @@ -1,20 +0,0 @@ - - -
-

Child 38

- -

I have kids too:

- - - - -
- - diff --git a/packages/playground/big/src/pages/38/GrandChild.svelte b/packages/playground/big/src/pages/38/GrandChild.svelte deleted file mode 100644 index 884c0ffaf..000000000 --- a/packages/playground/big/src/pages/38/GrandChild.svelte +++ /dev/null @@ -1,9 +0,0 @@ -

GrandChild 38

- -

I am the child of Child.

- - diff --git a/packages/playground/big/src/pages/38/OtherChild.svelte b/packages/playground/big/src/pages/38/OtherChild.svelte deleted file mode 100644 index 5968c5260..000000000 --- a/packages/playground/big/src/pages/38/OtherChild.svelte +++ /dev/null @@ -1,11 +0,0 @@ -
-

Other Child 38

- -

I am the other child.

-
- - diff --git a/packages/playground/big/src/pages/38/OtherGrandChild.svelte b/packages/playground/big/src/pages/38/OtherGrandChild.svelte deleted file mode 100644 index 916569f38..000000000 --- a/packages/playground/big/src/pages/38/OtherGrandChild.svelte +++ /dev/null @@ -1,9 +0,0 @@ -

Other GrandChild 38

- -

I am the child of Child.

- - diff --git a/packages/playground/big/src/pages/38/index.svelte b/packages/playground/big/src/pages/38/index.svelte deleted file mode 100644 index 543885950..000000000 --- a/packages/playground/big/src/pages/38/index.svelte +++ /dev/null @@ -1,29 +0,0 @@ - - -

Page 38

- -

I am page 01.

- -

I have some children:

- -
- - -
- - diff --git a/packages/playground/big/src/pages/39/Child.svelte b/packages/playground/big/src/pages/39/Child.svelte deleted file mode 100644 index 75d2fcd7e..000000000 --- a/packages/playground/big/src/pages/39/Child.svelte +++ /dev/null @@ -1,20 +0,0 @@ - - -
-

Child 39

- -

I have kids too:

- - - - -
- - diff --git a/packages/playground/big/src/pages/39/GrandChild.svelte b/packages/playground/big/src/pages/39/GrandChild.svelte deleted file mode 100644 index 51cfd7cd5..000000000 --- a/packages/playground/big/src/pages/39/GrandChild.svelte +++ /dev/null @@ -1,9 +0,0 @@ -

GrandChild 39

- -

I am the child of Child.

- - diff --git a/packages/playground/big/src/pages/39/OtherChild.svelte b/packages/playground/big/src/pages/39/OtherChild.svelte deleted file mode 100644 index 60813cb64..000000000 --- a/packages/playground/big/src/pages/39/OtherChild.svelte +++ /dev/null @@ -1,11 +0,0 @@ -
-

Other Child 39

- -

I am the other child.

-
- - diff --git a/packages/playground/big/src/pages/39/OtherGrandChild.svelte b/packages/playground/big/src/pages/39/OtherGrandChild.svelte deleted file mode 100644 index 8486d1828..000000000 --- a/packages/playground/big/src/pages/39/OtherGrandChild.svelte +++ /dev/null @@ -1,9 +0,0 @@ -

Other GrandChild 39

- -

I am the child of Child.

- - diff --git a/packages/playground/big/src/pages/39/index.svelte b/packages/playground/big/src/pages/39/index.svelte deleted file mode 100644 index 5a7f88abe..000000000 --- a/packages/playground/big/src/pages/39/index.svelte +++ /dev/null @@ -1,29 +0,0 @@ - - -

Page 39

- -

I am page 01.

- -

I have some children:

- -
- - -
- - diff --git a/packages/playground/big/src/pages/40/Child.svelte b/packages/playground/big/src/pages/40/Child.svelte deleted file mode 100644 index 476d575a9..000000000 --- a/packages/playground/big/src/pages/40/Child.svelte +++ /dev/null @@ -1,20 +0,0 @@ - - -
-

Child 40

- -

I have kids too:

- - - - -
- - diff --git a/packages/playground/big/src/pages/40/GrandChild.svelte b/packages/playground/big/src/pages/40/GrandChild.svelte deleted file mode 100644 index 7b9347c19..000000000 --- a/packages/playground/big/src/pages/40/GrandChild.svelte +++ /dev/null @@ -1,9 +0,0 @@ -

GrandChild 40

- -

I am the child of Child.

- - diff --git a/packages/playground/big/src/pages/40/OtherChild.svelte b/packages/playground/big/src/pages/40/OtherChild.svelte deleted file mode 100644 index 91b3e816b..000000000 --- a/packages/playground/big/src/pages/40/OtherChild.svelte +++ /dev/null @@ -1,11 +0,0 @@ -
-

Other Child 40

- -

I am the other child.

-
- - diff --git a/packages/playground/big/src/pages/40/OtherGrandChild.svelte b/packages/playground/big/src/pages/40/OtherGrandChild.svelte deleted file mode 100644 index 405b2efaa..000000000 --- a/packages/playground/big/src/pages/40/OtherGrandChild.svelte +++ /dev/null @@ -1,9 +0,0 @@ -

Other GrandChild 40

- -

I am the child of Child.

- - diff --git a/packages/playground/big/src/pages/40/index.svelte b/packages/playground/big/src/pages/40/index.svelte deleted file mode 100644 index 866d092b7..000000000 --- a/packages/playground/big/src/pages/40/index.svelte +++ /dev/null @@ -1,29 +0,0 @@ - - -

Page 40

- -

I am page 01.

- -

I have some children:

- -
- - -
- - diff --git a/packages/playground/big/src/pages/41/Child.svelte b/packages/playground/big/src/pages/41/Child.svelte deleted file mode 100644 index c12641f70..000000000 --- a/packages/playground/big/src/pages/41/Child.svelte +++ /dev/null @@ -1,20 +0,0 @@ - - -
-

Child 41

- -

I have kids too:

- - - - -
- - diff --git a/packages/playground/big/src/pages/41/GrandChild.svelte b/packages/playground/big/src/pages/41/GrandChild.svelte deleted file mode 100644 index d6b5490c3..000000000 --- a/packages/playground/big/src/pages/41/GrandChild.svelte +++ /dev/null @@ -1,9 +0,0 @@ -

GrandChild 41

- -

I am the child of Child.

- - diff --git a/packages/playground/big/src/pages/41/OtherChild.svelte b/packages/playground/big/src/pages/41/OtherChild.svelte deleted file mode 100644 index da2c1690d..000000000 --- a/packages/playground/big/src/pages/41/OtherChild.svelte +++ /dev/null @@ -1,11 +0,0 @@ -
-

Other Child 41

- -

I am the other child.

-
- - diff --git a/packages/playground/big/src/pages/41/OtherGrandChild.svelte b/packages/playground/big/src/pages/41/OtherGrandChild.svelte deleted file mode 100644 index a009b9934..000000000 --- a/packages/playground/big/src/pages/41/OtherGrandChild.svelte +++ /dev/null @@ -1,9 +0,0 @@ -

Other GrandChild 41

- -

I am the child of Child.

- - diff --git a/packages/playground/big/src/pages/41/index.svelte b/packages/playground/big/src/pages/41/index.svelte deleted file mode 100644 index 584576a7b..000000000 --- a/packages/playground/big/src/pages/41/index.svelte +++ /dev/null @@ -1,29 +0,0 @@ - - -

Page 41

- -

I am page 01.

- -

I have some children:

- -
- - -
- - diff --git a/packages/playground/big/src/pages/42/Child.svelte b/packages/playground/big/src/pages/42/Child.svelte deleted file mode 100644 index 9c9ab83a3..000000000 --- a/packages/playground/big/src/pages/42/Child.svelte +++ /dev/null @@ -1,20 +0,0 @@ - - -
-

Child 42

- -

I have kids too:

- - - - -
- - diff --git a/packages/playground/big/src/pages/42/GrandChild.svelte b/packages/playground/big/src/pages/42/GrandChild.svelte deleted file mode 100644 index 73ca93d4c..000000000 --- a/packages/playground/big/src/pages/42/GrandChild.svelte +++ /dev/null @@ -1,9 +0,0 @@ -

GrandChild 42

- -

I am the child of Child.

- - diff --git a/packages/playground/big/src/pages/42/OtherChild.svelte b/packages/playground/big/src/pages/42/OtherChild.svelte deleted file mode 100644 index 09a3e6b98..000000000 --- a/packages/playground/big/src/pages/42/OtherChild.svelte +++ /dev/null @@ -1,11 +0,0 @@ -
-

Other Child 42

- -

I am the other child.

-
- - diff --git a/packages/playground/big/src/pages/42/OtherGrandChild.svelte b/packages/playground/big/src/pages/42/OtherGrandChild.svelte deleted file mode 100644 index a883a267e..000000000 --- a/packages/playground/big/src/pages/42/OtherGrandChild.svelte +++ /dev/null @@ -1,9 +0,0 @@ -

Other GrandChild 42

- -

I am the child of Child.

- - diff --git a/packages/playground/big/src/pages/42/index.svelte b/packages/playground/big/src/pages/42/index.svelte deleted file mode 100644 index 49dd4519e..000000000 --- a/packages/playground/big/src/pages/42/index.svelte +++ /dev/null @@ -1,29 +0,0 @@ - - -

Page 42

- -

I am page 01.

- -

I have some children:

- -
- - -
- - diff --git a/packages/playground/big/src/pages/43/Child.svelte b/packages/playground/big/src/pages/43/Child.svelte deleted file mode 100644 index fac77bb32..000000000 --- a/packages/playground/big/src/pages/43/Child.svelte +++ /dev/null @@ -1,20 +0,0 @@ - - -
-

Child 43

- -

I have kids too:

- - - - -
- - diff --git a/packages/playground/big/src/pages/43/GrandChild.svelte b/packages/playground/big/src/pages/43/GrandChild.svelte deleted file mode 100644 index b92d80432..000000000 --- a/packages/playground/big/src/pages/43/GrandChild.svelte +++ /dev/null @@ -1,9 +0,0 @@ -

GrandChild 43

- -

I am the child of Child.

- - diff --git a/packages/playground/big/src/pages/43/OtherChild.svelte b/packages/playground/big/src/pages/43/OtherChild.svelte deleted file mode 100644 index 11ccb9f63..000000000 --- a/packages/playground/big/src/pages/43/OtherChild.svelte +++ /dev/null @@ -1,11 +0,0 @@ -
-

Other Child 43

- -

I am the other child.

-
- - diff --git a/packages/playground/big/src/pages/43/OtherGrandChild.svelte b/packages/playground/big/src/pages/43/OtherGrandChild.svelte deleted file mode 100644 index 38b343509..000000000 --- a/packages/playground/big/src/pages/43/OtherGrandChild.svelte +++ /dev/null @@ -1,9 +0,0 @@ -

Other GrandChild 43

- -

I am the child of Child.

- - diff --git a/packages/playground/big/src/pages/43/index.svelte b/packages/playground/big/src/pages/43/index.svelte deleted file mode 100644 index d29fce890..000000000 --- a/packages/playground/big/src/pages/43/index.svelte +++ /dev/null @@ -1,29 +0,0 @@ - - -

Page 43

- -

I am page 01.

- -

I have some children:

- -
- - -
- - diff --git a/packages/playground/big/src/pages/44/Child.svelte b/packages/playground/big/src/pages/44/Child.svelte deleted file mode 100644 index 6769d6e4e..000000000 --- a/packages/playground/big/src/pages/44/Child.svelte +++ /dev/null @@ -1,20 +0,0 @@ - - -
-

Child 44

- -

I have kids too:

- - - - -
- - diff --git a/packages/playground/big/src/pages/44/GrandChild.svelte b/packages/playground/big/src/pages/44/GrandChild.svelte deleted file mode 100644 index 467642552..000000000 --- a/packages/playground/big/src/pages/44/GrandChild.svelte +++ /dev/null @@ -1,9 +0,0 @@ -

GrandChild 44

- -

I am the child of Child.

- - diff --git a/packages/playground/big/src/pages/44/OtherChild.svelte b/packages/playground/big/src/pages/44/OtherChild.svelte deleted file mode 100644 index 3db769187..000000000 --- a/packages/playground/big/src/pages/44/OtherChild.svelte +++ /dev/null @@ -1,11 +0,0 @@ -
-

Other Child 44

- -

I am the other child.

-
- - diff --git a/packages/playground/big/src/pages/44/OtherGrandChild.svelte b/packages/playground/big/src/pages/44/OtherGrandChild.svelte deleted file mode 100644 index 6ff8e567a..000000000 --- a/packages/playground/big/src/pages/44/OtherGrandChild.svelte +++ /dev/null @@ -1,9 +0,0 @@ -

Other GrandChild 44

- -

I am the child of Child.

- - diff --git a/packages/playground/big/src/pages/44/index.svelte b/packages/playground/big/src/pages/44/index.svelte deleted file mode 100644 index 4db29bee4..000000000 --- a/packages/playground/big/src/pages/44/index.svelte +++ /dev/null @@ -1,29 +0,0 @@ - - -

Page 44

- -

I am page 01.

- -

I have some children:

- -
- - -
- - diff --git a/packages/playground/big/src/pages/45/Child.svelte b/packages/playground/big/src/pages/45/Child.svelte deleted file mode 100644 index f4d8460d4..000000000 --- a/packages/playground/big/src/pages/45/Child.svelte +++ /dev/null @@ -1,20 +0,0 @@ - - -
-

Child 45

- -

I have kids too:

- - - - -
- - diff --git a/packages/playground/big/src/pages/45/GrandChild.svelte b/packages/playground/big/src/pages/45/GrandChild.svelte deleted file mode 100644 index b3fd32452..000000000 --- a/packages/playground/big/src/pages/45/GrandChild.svelte +++ /dev/null @@ -1,9 +0,0 @@ -

GrandChild 45

- -

I am the child of Child.

- - diff --git a/packages/playground/big/src/pages/45/OtherChild.svelte b/packages/playground/big/src/pages/45/OtherChild.svelte deleted file mode 100644 index 6bfbf53fa..000000000 --- a/packages/playground/big/src/pages/45/OtherChild.svelte +++ /dev/null @@ -1,11 +0,0 @@ -
-

Other Child 45

- -

I am the other child.

-
- - diff --git a/packages/playground/big/src/pages/45/OtherGrandChild.svelte b/packages/playground/big/src/pages/45/OtherGrandChild.svelte deleted file mode 100644 index 7672f4f2c..000000000 --- a/packages/playground/big/src/pages/45/OtherGrandChild.svelte +++ /dev/null @@ -1,9 +0,0 @@ -

Other GrandChild 45

- -

I am the child of Child.

- - diff --git a/packages/playground/big/src/pages/45/index.svelte b/packages/playground/big/src/pages/45/index.svelte deleted file mode 100644 index 1044d4ca2..000000000 --- a/packages/playground/big/src/pages/45/index.svelte +++ /dev/null @@ -1,29 +0,0 @@ - - -

Page 45

- -

I am page 01.

- -

I have some children:

- -
- - -
- - diff --git a/packages/playground/big/src/pages/46/Child.svelte b/packages/playground/big/src/pages/46/Child.svelte deleted file mode 100644 index 7958fc0c0..000000000 --- a/packages/playground/big/src/pages/46/Child.svelte +++ /dev/null @@ -1,20 +0,0 @@ - - -
-

Child 46

- -

I have kids too:

- - - - -
- - diff --git a/packages/playground/big/src/pages/46/GrandChild.svelte b/packages/playground/big/src/pages/46/GrandChild.svelte deleted file mode 100644 index 4a6152274..000000000 --- a/packages/playground/big/src/pages/46/GrandChild.svelte +++ /dev/null @@ -1,9 +0,0 @@ -

GrandChild 46

- -

I am the child of Child.

- - diff --git a/packages/playground/big/src/pages/46/OtherChild.svelte b/packages/playground/big/src/pages/46/OtherChild.svelte deleted file mode 100644 index 9f384240b..000000000 --- a/packages/playground/big/src/pages/46/OtherChild.svelte +++ /dev/null @@ -1,11 +0,0 @@ -
-

Other Child 46

- -

I am the other child.

-
- - diff --git a/packages/playground/big/src/pages/46/OtherGrandChild.svelte b/packages/playground/big/src/pages/46/OtherGrandChild.svelte deleted file mode 100644 index 2bf475bea..000000000 --- a/packages/playground/big/src/pages/46/OtherGrandChild.svelte +++ /dev/null @@ -1,9 +0,0 @@ -

Other GrandChild 46

- -

I am the child of Child.

- - diff --git a/packages/playground/big/src/pages/46/index.svelte b/packages/playground/big/src/pages/46/index.svelte deleted file mode 100644 index cb11b5adc..000000000 --- a/packages/playground/big/src/pages/46/index.svelte +++ /dev/null @@ -1,29 +0,0 @@ - - -

Page 46

- -

I am page 01.

- -

I have some children:

- -
- - -
- - diff --git a/packages/playground/big/src/pages/47/Child.svelte b/packages/playground/big/src/pages/47/Child.svelte deleted file mode 100644 index c596b6567..000000000 --- a/packages/playground/big/src/pages/47/Child.svelte +++ /dev/null @@ -1,20 +0,0 @@ - - -
-

Child 47

- -

I have kids too:

- - - - -
- - diff --git a/packages/playground/big/src/pages/47/GrandChild.svelte b/packages/playground/big/src/pages/47/GrandChild.svelte deleted file mode 100644 index ebf439646..000000000 --- a/packages/playground/big/src/pages/47/GrandChild.svelte +++ /dev/null @@ -1,9 +0,0 @@ -

GrandChild 47

- -

I am the child of Child.

- - diff --git a/packages/playground/big/src/pages/47/OtherChild.svelte b/packages/playground/big/src/pages/47/OtherChild.svelte deleted file mode 100644 index 9c05f519b..000000000 --- a/packages/playground/big/src/pages/47/OtherChild.svelte +++ /dev/null @@ -1,11 +0,0 @@ -
-

Other Child 47

- -

I am the other child.

-
- - diff --git a/packages/playground/big/src/pages/47/OtherGrandChild.svelte b/packages/playground/big/src/pages/47/OtherGrandChild.svelte deleted file mode 100644 index e6baecde7..000000000 --- a/packages/playground/big/src/pages/47/OtherGrandChild.svelte +++ /dev/null @@ -1,9 +0,0 @@ -

Other GrandChild 47

- -

I am the child of Child.

- - diff --git a/packages/playground/big/src/pages/47/index.svelte b/packages/playground/big/src/pages/47/index.svelte deleted file mode 100644 index c55d58ea7..000000000 --- a/packages/playground/big/src/pages/47/index.svelte +++ /dev/null @@ -1,29 +0,0 @@ - - -

Page 47

- -

I am page 01.

- -

I have some children:

- -
- - -
- - diff --git a/packages/playground/big/src/pages/48/Child.svelte b/packages/playground/big/src/pages/48/Child.svelte deleted file mode 100644 index 6e5b20ceb..000000000 --- a/packages/playground/big/src/pages/48/Child.svelte +++ /dev/null @@ -1,20 +0,0 @@ - - -
-

Child 48

- -

I have kids too:

- - - - -
- - diff --git a/packages/playground/big/src/pages/48/GrandChild.svelte b/packages/playground/big/src/pages/48/GrandChild.svelte deleted file mode 100644 index 4b7625261..000000000 --- a/packages/playground/big/src/pages/48/GrandChild.svelte +++ /dev/null @@ -1,9 +0,0 @@ -

GrandChild 48

- -

I am the child of Child.

- - diff --git a/packages/playground/big/src/pages/48/OtherChild.svelte b/packages/playground/big/src/pages/48/OtherChild.svelte deleted file mode 100644 index 9a803b575..000000000 --- a/packages/playground/big/src/pages/48/OtherChild.svelte +++ /dev/null @@ -1,11 +0,0 @@ -
-

Other Child 48

- -

I am the other child.

-
- - diff --git a/packages/playground/big/src/pages/48/OtherGrandChild.svelte b/packages/playground/big/src/pages/48/OtherGrandChild.svelte deleted file mode 100644 index 42c577f69..000000000 --- a/packages/playground/big/src/pages/48/OtherGrandChild.svelte +++ /dev/null @@ -1,9 +0,0 @@ -

Other GrandChild 48

- -

I am the child of Child.

- - diff --git a/packages/playground/big/src/pages/48/index.svelte b/packages/playground/big/src/pages/48/index.svelte deleted file mode 100644 index 92fe10e39..000000000 --- a/packages/playground/big/src/pages/48/index.svelte +++ /dev/null @@ -1,29 +0,0 @@ - - -

Page 48

- -

I am page 01.

- -

I have some children:

- -
- - -
- - diff --git a/packages/playground/big/src/pages/49/Child.svelte b/packages/playground/big/src/pages/49/Child.svelte deleted file mode 100644 index faebc7896..000000000 --- a/packages/playground/big/src/pages/49/Child.svelte +++ /dev/null @@ -1,20 +0,0 @@ - - -
-

Child 49

- -

I have kids too:

- - - - -
- - diff --git a/packages/playground/big/src/pages/49/GrandChild.svelte b/packages/playground/big/src/pages/49/GrandChild.svelte deleted file mode 100644 index 918209bc4..000000000 --- a/packages/playground/big/src/pages/49/GrandChild.svelte +++ /dev/null @@ -1,9 +0,0 @@ -

GrandChild 49

- -

I am the child of Child.

- - diff --git a/packages/playground/big/src/pages/49/OtherChild.svelte b/packages/playground/big/src/pages/49/OtherChild.svelte deleted file mode 100644 index 8cb6b096c..000000000 --- a/packages/playground/big/src/pages/49/OtherChild.svelte +++ /dev/null @@ -1,11 +0,0 @@ -
-

Other Child 49

- -

I am the other child.

-
- - diff --git a/packages/playground/big/src/pages/49/OtherGrandChild.svelte b/packages/playground/big/src/pages/49/OtherGrandChild.svelte deleted file mode 100644 index 464571f1c..000000000 --- a/packages/playground/big/src/pages/49/OtherGrandChild.svelte +++ /dev/null @@ -1,9 +0,0 @@ -

Other GrandChild 49

- -

I am the child of Child.

- - diff --git a/packages/playground/big/src/pages/49/index.svelte b/packages/playground/big/src/pages/49/index.svelte deleted file mode 100644 index 241f3a606..000000000 --- a/packages/playground/big/src/pages/49/index.svelte +++ /dev/null @@ -1,29 +0,0 @@ - - -

Page 49

- -

I am page 01.

- -

I have some children:

- -
- - -
- - diff --git a/packages/playground/big/src/pages/50/Child.svelte b/packages/playground/big/src/pages/50/Child.svelte deleted file mode 100644 index deecf1943..000000000 --- a/packages/playground/big/src/pages/50/Child.svelte +++ /dev/null @@ -1,20 +0,0 @@ - - -
-

Child 50

- -

I have kids too:

- - - - -
- - diff --git a/packages/playground/big/src/pages/50/GrandChild.svelte b/packages/playground/big/src/pages/50/GrandChild.svelte deleted file mode 100644 index eb35eff58..000000000 --- a/packages/playground/big/src/pages/50/GrandChild.svelte +++ /dev/null @@ -1,9 +0,0 @@ -

GrandChild 50

- -

I am the child of Child.

- - diff --git a/packages/playground/big/src/pages/50/OtherChild.svelte b/packages/playground/big/src/pages/50/OtherChild.svelte deleted file mode 100644 index 4db17e66f..000000000 --- a/packages/playground/big/src/pages/50/OtherChild.svelte +++ /dev/null @@ -1,11 +0,0 @@ -
-

Other Child 50

- -

I am the other child.

-
- - diff --git a/packages/playground/big/src/pages/50/OtherGrandChild.svelte b/packages/playground/big/src/pages/50/OtherGrandChild.svelte deleted file mode 100644 index b34316ad1..000000000 --- a/packages/playground/big/src/pages/50/OtherGrandChild.svelte +++ /dev/null @@ -1,9 +0,0 @@ -

Other GrandChild 50

- -

I am the child of Child.

- - diff --git a/packages/playground/big/src/pages/50/index.svelte b/packages/playground/big/src/pages/50/index.svelte deleted file mode 100644 index d7847ff65..000000000 --- a/packages/playground/big/src/pages/50/index.svelte +++ /dev/null @@ -1,29 +0,0 @@ - - -

Page 50

- -

I am page 01.

- -

I have some children:

- -
- - -
- - diff --git a/packages/playground/big/src/pages/51/Child.svelte b/packages/playground/big/src/pages/51/Child.svelte deleted file mode 100644 index ab69f5f9b..000000000 --- a/packages/playground/big/src/pages/51/Child.svelte +++ /dev/null @@ -1,20 +0,0 @@ - - -
-

Child 51

- -

I have kids too:

- - - - -
- - diff --git a/packages/playground/big/src/pages/51/GrandChild.svelte b/packages/playground/big/src/pages/51/GrandChild.svelte deleted file mode 100644 index 7ebb9fa16..000000000 --- a/packages/playground/big/src/pages/51/GrandChild.svelte +++ /dev/null @@ -1,9 +0,0 @@ -

GrandChild 51

- -

I am the child of Child.

- - diff --git a/packages/playground/big/src/pages/51/OtherChild.svelte b/packages/playground/big/src/pages/51/OtherChild.svelte deleted file mode 100644 index aedda853d..000000000 --- a/packages/playground/big/src/pages/51/OtherChild.svelte +++ /dev/null @@ -1,11 +0,0 @@ -
-

Other Child 51

- -

I am the other child.

-
- - diff --git a/packages/playground/big/src/pages/51/OtherGrandChild.svelte b/packages/playground/big/src/pages/51/OtherGrandChild.svelte deleted file mode 100644 index 2fec43c68..000000000 --- a/packages/playground/big/src/pages/51/OtherGrandChild.svelte +++ /dev/null @@ -1,9 +0,0 @@ -

Other GrandChild 51

- -

I am the child of Child.

- - diff --git a/packages/playground/big/src/pages/51/index.svelte b/packages/playground/big/src/pages/51/index.svelte deleted file mode 100644 index 9369a11f9..000000000 --- a/packages/playground/big/src/pages/51/index.svelte +++ /dev/null @@ -1,29 +0,0 @@ - - -

Page 51

- -

I am page 01.

- -

I have some children:

- -
- - -
- - diff --git a/packages/playground/big/src/pages/52/Child.svelte b/packages/playground/big/src/pages/52/Child.svelte deleted file mode 100644 index c76ff62f6..000000000 --- a/packages/playground/big/src/pages/52/Child.svelte +++ /dev/null @@ -1,20 +0,0 @@ - - -
-

Child 52

- -

I have kids too:

- - - - -
- - diff --git a/packages/playground/big/src/pages/52/GrandChild.svelte b/packages/playground/big/src/pages/52/GrandChild.svelte deleted file mode 100644 index 948022a91..000000000 --- a/packages/playground/big/src/pages/52/GrandChild.svelte +++ /dev/null @@ -1,9 +0,0 @@ -

GrandChild 52

- -

I am the child of Child.

- - diff --git a/packages/playground/big/src/pages/52/OtherChild.svelte b/packages/playground/big/src/pages/52/OtherChild.svelte deleted file mode 100644 index 45f6ea0e3..000000000 --- a/packages/playground/big/src/pages/52/OtherChild.svelte +++ /dev/null @@ -1,11 +0,0 @@ -
-

Other Child 52

- -

I am the other child.

-
- - diff --git a/packages/playground/big/src/pages/52/OtherGrandChild.svelte b/packages/playground/big/src/pages/52/OtherGrandChild.svelte deleted file mode 100644 index 8829389bb..000000000 --- a/packages/playground/big/src/pages/52/OtherGrandChild.svelte +++ /dev/null @@ -1,9 +0,0 @@ -

Other GrandChild 52

- -

I am the child of Child.

- - diff --git a/packages/playground/big/src/pages/52/index.svelte b/packages/playground/big/src/pages/52/index.svelte deleted file mode 100644 index 4d84b1530..000000000 --- a/packages/playground/big/src/pages/52/index.svelte +++ /dev/null @@ -1,29 +0,0 @@ - - -

Page 52

- -

I am page 01.

- -

I have some children:

- -
- - -
- - diff --git a/packages/playground/big/src/pages/53/Child.svelte b/packages/playground/big/src/pages/53/Child.svelte deleted file mode 100644 index 4e4014a16..000000000 --- a/packages/playground/big/src/pages/53/Child.svelte +++ /dev/null @@ -1,20 +0,0 @@ - - -
-

Child 53

- -

I have kids too:

- - - - -
- - diff --git a/packages/playground/big/src/pages/53/GrandChild.svelte b/packages/playground/big/src/pages/53/GrandChild.svelte deleted file mode 100644 index 2018daeea..000000000 --- a/packages/playground/big/src/pages/53/GrandChild.svelte +++ /dev/null @@ -1,9 +0,0 @@ -

GrandChild 53

- -

I am the child of Child.

- - diff --git a/packages/playground/big/src/pages/53/OtherChild.svelte b/packages/playground/big/src/pages/53/OtherChild.svelte deleted file mode 100644 index 73f7d4422..000000000 --- a/packages/playground/big/src/pages/53/OtherChild.svelte +++ /dev/null @@ -1,11 +0,0 @@ -
-

Other Child 53

- -

I am the other child.

-
- - diff --git a/packages/playground/big/src/pages/53/OtherGrandChild.svelte b/packages/playground/big/src/pages/53/OtherGrandChild.svelte deleted file mode 100644 index 814cba975..000000000 --- a/packages/playground/big/src/pages/53/OtherGrandChild.svelte +++ /dev/null @@ -1,9 +0,0 @@ -

Other GrandChild 53

- -

I am the child of Child.

- - diff --git a/packages/playground/big/src/pages/53/index.svelte b/packages/playground/big/src/pages/53/index.svelte deleted file mode 100644 index 90a4d3606..000000000 --- a/packages/playground/big/src/pages/53/index.svelte +++ /dev/null @@ -1,29 +0,0 @@ - - -

Page 53

- -

I am page 01.

- -

I have some children:

- -
- - -
- - diff --git a/packages/playground/big/src/pages/54/Child.svelte b/packages/playground/big/src/pages/54/Child.svelte deleted file mode 100644 index 3298c1b72..000000000 --- a/packages/playground/big/src/pages/54/Child.svelte +++ /dev/null @@ -1,20 +0,0 @@ - - -
-

Child 54

- -

I have kids too:

- - - - -
- - diff --git a/packages/playground/big/src/pages/54/GrandChild.svelte b/packages/playground/big/src/pages/54/GrandChild.svelte deleted file mode 100644 index f3c3d724b..000000000 --- a/packages/playground/big/src/pages/54/GrandChild.svelte +++ /dev/null @@ -1,9 +0,0 @@ -

GrandChild 54

- -

I am the child of Child.

- - diff --git a/packages/playground/big/src/pages/54/OtherChild.svelte b/packages/playground/big/src/pages/54/OtherChild.svelte deleted file mode 100644 index 257f617ce..000000000 --- a/packages/playground/big/src/pages/54/OtherChild.svelte +++ /dev/null @@ -1,11 +0,0 @@ -
-

Other Child 54

- -

I am the other child.

-
- - diff --git a/packages/playground/big/src/pages/54/OtherGrandChild.svelte b/packages/playground/big/src/pages/54/OtherGrandChild.svelte deleted file mode 100644 index 50d6d13f8..000000000 --- a/packages/playground/big/src/pages/54/OtherGrandChild.svelte +++ /dev/null @@ -1,9 +0,0 @@ -

Other GrandChild 54

- -

I am the child of Child.

- - diff --git a/packages/playground/big/src/pages/54/index.svelte b/packages/playground/big/src/pages/54/index.svelte deleted file mode 100644 index e3f15e180..000000000 --- a/packages/playground/big/src/pages/54/index.svelte +++ /dev/null @@ -1,29 +0,0 @@ - - -

Page 54

- -

I am page 01.

- -

I have some children:

- -
- - -
- - diff --git a/packages/playground/big/src/pages/55/Child.svelte b/packages/playground/big/src/pages/55/Child.svelte deleted file mode 100644 index 8e12f5b4f..000000000 --- a/packages/playground/big/src/pages/55/Child.svelte +++ /dev/null @@ -1,20 +0,0 @@ - - -
-

Child 55

- -

I have kids too:

- - - - -
- - diff --git a/packages/playground/big/src/pages/55/GrandChild.svelte b/packages/playground/big/src/pages/55/GrandChild.svelte deleted file mode 100644 index fb1e77896..000000000 --- a/packages/playground/big/src/pages/55/GrandChild.svelte +++ /dev/null @@ -1,9 +0,0 @@ -

GrandChild 55

- -

I am the child of Child.

- - diff --git a/packages/playground/big/src/pages/55/OtherChild.svelte b/packages/playground/big/src/pages/55/OtherChild.svelte deleted file mode 100644 index 5796b6419..000000000 --- a/packages/playground/big/src/pages/55/OtherChild.svelte +++ /dev/null @@ -1,11 +0,0 @@ -
-

Other Child 55

- -

I am the other child.

-
- - diff --git a/packages/playground/big/src/pages/55/OtherGrandChild.svelte b/packages/playground/big/src/pages/55/OtherGrandChild.svelte deleted file mode 100644 index 3d362cc4a..000000000 --- a/packages/playground/big/src/pages/55/OtherGrandChild.svelte +++ /dev/null @@ -1,9 +0,0 @@ -

Other GrandChild 55

- -

I am the child of Child.

- - diff --git a/packages/playground/big/src/pages/55/index.svelte b/packages/playground/big/src/pages/55/index.svelte deleted file mode 100644 index 95c4c0862..000000000 --- a/packages/playground/big/src/pages/55/index.svelte +++ /dev/null @@ -1,29 +0,0 @@ - - -

Page 55

- -

I am page 01.

- -

I have some children:

- -
- - -
- - diff --git a/packages/playground/big/src/pages/56/Child.svelte b/packages/playground/big/src/pages/56/Child.svelte deleted file mode 100644 index c8e60298c..000000000 --- a/packages/playground/big/src/pages/56/Child.svelte +++ /dev/null @@ -1,20 +0,0 @@ - - -
-

Child 56

- -

I have kids too:

- - - - -
- - diff --git a/packages/playground/big/src/pages/56/GrandChild.svelte b/packages/playground/big/src/pages/56/GrandChild.svelte deleted file mode 100644 index 7bdba5077..000000000 --- a/packages/playground/big/src/pages/56/GrandChild.svelte +++ /dev/null @@ -1,9 +0,0 @@ -

GrandChild 56

- -

I am the child of Child.

- - diff --git a/packages/playground/big/src/pages/56/OtherChild.svelte b/packages/playground/big/src/pages/56/OtherChild.svelte deleted file mode 100644 index a0b53783a..000000000 --- a/packages/playground/big/src/pages/56/OtherChild.svelte +++ /dev/null @@ -1,11 +0,0 @@ -
-

Other Child 56

- -

I am the other child.

-
- - diff --git a/packages/playground/big/src/pages/56/OtherGrandChild.svelte b/packages/playground/big/src/pages/56/OtherGrandChild.svelte deleted file mode 100644 index 72a27c8a2..000000000 --- a/packages/playground/big/src/pages/56/OtherGrandChild.svelte +++ /dev/null @@ -1,9 +0,0 @@ -

Other GrandChild 56

- -

I am the child of Child.

- - diff --git a/packages/playground/big/src/pages/56/index.svelte b/packages/playground/big/src/pages/56/index.svelte deleted file mode 100644 index c850c4c24..000000000 --- a/packages/playground/big/src/pages/56/index.svelte +++ /dev/null @@ -1,29 +0,0 @@ - - -

Page 56

- -

I am page 01.

- -

I have some children:

- -
- - -
- - diff --git a/packages/playground/big/src/pages/57/Child.svelte b/packages/playground/big/src/pages/57/Child.svelte deleted file mode 100644 index dccfb18a2..000000000 --- a/packages/playground/big/src/pages/57/Child.svelte +++ /dev/null @@ -1,20 +0,0 @@ - - -
-

Child 57

- -

I have kids too:

- - - - -
- - diff --git a/packages/playground/big/src/pages/57/GrandChild.svelte b/packages/playground/big/src/pages/57/GrandChild.svelte deleted file mode 100644 index 14c57d482..000000000 --- a/packages/playground/big/src/pages/57/GrandChild.svelte +++ /dev/null @@ -1,9 +0,0 @@ -

GrandChild 57

- -

I am the child of Child.

- - diff --git a/packages/playground/big/src/pages/57/OtherChild.svelte b/packages/playground/big/src/pages/57/OtherChild.svelte deleted file mode 100644 index cca9e6180..000000000 --- a/packages/playground/big/src/pages/57/OtherChild.svelte +++ /dev/null @@ -1,11 +0,0 @@ -
-

Other Child 57

- -

I am the other child.

-
- - diff --git a/packages/playground/big/src/pages/57/OtherGrandChild.svelte b/packages/playground/big/src/pages/57/OtherGrandChild.svelte deleted file mode 100644 index 9c2b36580..000000000 --- a/packages/playground/big/src/pages/57/OtherGrandChild.svelte +++ /dev/null @@ -1,9 +0,0 @@ -

Other GrandChild 57

- -

I am the child of Child.

- - diff --git a/packages/playground/big/src/pages/57/index.svelte b/packages/playground/big/src/pages/57/index.svelte deleted file mode 100644 index 6e0d626f8..000000000 --- a/packages/playground/big/src/pages/57/index.svelte +++ /dev/null @@ -1,29 +0,0 @@ - - -

Page 57

- -

I am page 01.

- -

I have some children:

- -
- - -
- - diff --git a/packages/playground/big/src/pages/58/Child.svelte b/packages/playground/big/src/pages/58/Child.svelte deleted file mode 100644 index 6c9ba68fd..000000000 --- a/packages/playground/big/src/pages/58/Child.svelte +++ /dev/null @@ -1,20 +0,0 @@ - - -
-

Child 58

- -

I have kids too:

- - - - -
- - diff --git a/packages/playground/big/src/pages/58/GrandChild.svelte b/packages/playground/big/src/pages/58/GrandChild.svelte deleted file mode 100644 index eaa20ad10..000000000 --- a/packages/playground/big/src/pages/58/GrandChild.svelte +++ /dev/null @@ -1,9 +0,0 @@ -

GrandChild 58

- -

I am the child of Child.

- - diff --git a/packages/playground/big/src/pages/58/OtherChild.svelte b/packages/playground/big/src/pages/58/OtherChild.svelte deleted file mode 100644 index 96403f3bb..000000000 --- a/packages/playground/big/src/pages/58/OtherChild.svelte +++ /dev/null @@ -1,11 +0,0 @@ -
-

Other Child 58

- -

I am the other child.

-
- - diff --git a/packages/playground/big/src/pages/58/OtherGrandChild.svelte b/packages/playground/big/src/pages/58/OtherGrandChild.svelte deleted file mode 100644 index e02eafd11..000000000 --- a/packages/playground/big/src/pages/58/OtherGrandChild.svelte +++ /dev/null @@ -1,9 +0,0 @@ -

Other GrandChild 58

- -

I am the child of Child.

- - diff --git a/packages/playground/big/src/pages/58/index.svelte b/packages/playground/big/src/pages/58/index.svelte deleted file mode 100644 index a2a294d65..000000000 --- a/packages/playground/big/src/pages/58/index.svelte +++ /dev/null @@ -1,29 +0,0 @@ - - -

Page 58

- -

I am page 01.

- -

I have some children:

- -
- - -
- - diff --git a/packages/playground/big/src/pages/59/Child.svelte b/packages/playground/big/src/pages/59/Child.svelte deleted file mode 100644 index d55cc3804..000000000 --- a/packages/playground/big/src/pages/59/Child.svelte +++ /dev/null @@ -1,20 +0,0 @@ - - -
-

Child 59

- -

I have kids too:

- - - - -
- - diff --git a/packages/playground/big/src/pages/59/GrandChild.svelte b/packages/playground/big/src/pages/59/GrandChild.svelte deleted file mode 100644 index d6534b012..000000000 --- a/packages/playground/big/src/pages/59/GrandChild.svelte +++ /dev/null @@ -1,9 +0,0 @@ -

GrandChild 59

- -

I am the child of Child.

- - diff --git a/packages/playground/big/src/pages/59/OtherChild.svelte b/packages/playground/big/src/pages/59/OtherChild.svelte deleted file mode 100644 index 95dbe0114..000000000 --- a/packages/playground/big/src/pages/59/OtherChild.svelte +++ /dev/null @@ -1,11 +0,0 @@ -
-

Other Child 59

- -

I am the other child.

-
- - diff --git a/packages/playground/big/src/pages/59/OtherGrandChild.svelte b/packages/playground/big/src/pages/59/OtherGrandChild.svelte deleted file mode 100644 index c14637a6a..000000000 --- a/packages/playground/big/src/pages/59/OtherGrandChild.svelte +++ /dev/null @@ -1,9 +0,0 @@ -

Other GrandChild 59

- -

I am the child of Child.

- - diff --git a/packages/playground/big/src/pages/59/index.svelte b/packages/playground/big/src/pages/59/index.svelte deleted file mode 100644 index 46991d536..000000000 --- a/packages/playground/big/src/pages/59/index.svelte +++ /dev/null @@ -1,29 +0,0 @@ - - -

Page 59

- -

I am page 01.

- -

I have some children:

- -
- - -
- - diff --git a/packages/playground/big/src/pages/60/Child.svelte b/packages/playground/big/src/pages/60/Child.svelte deleted file mode 100644 index 750c8608e..000000000 --- a/packages/playground/big/src/pages/60/Child.svelte +++ /dev/null @@ -1,20 +0,0 @@ - - -
-

Child 60

- -

I have kids too:

- - - - -
- - diff --git a/packages/playground/big/src/pages/60/GrandChild.svelte b/packages/playground/big/src/pages/60/GrandChild.svelte deleted file mode 100644 index 67881f5f1..000000000 --- a/packages/playground/big/src/pages/60/GrandChild.svelte +++ /dev/null @@ -1,9 +0,0 @@ -

GrandChild 60

- -

I am the child of Child.

- - diff --git a/packages/playground/big/src/pages/60/OtherChild.svelte b/packages/playground/big/src/pages/60/OtherChild.svelte deleted file mode 100644 index 909b0a90a..000000000 --- a/packages/playground/big/src/pages/60/OtherChild.svelte +++ /dev/null @@ -1,11 +0,0 @@ -
-

Other Child 60

- -

I am the other child.

-
- - diff --git a/packages/playground/big/src/pages/60/OtherGrandChild.svelte b/packages/playground/big/src/pages/60/OtherGrandChild.svelte deleted file mode 100644 index 66d29669c..000000000 --- a/packages/playground/big/src/pages/60/OtherGrandChild.svelte +++ /dev/null @@ -1,9 +0,0 @@ -

Other GrandChild 60

- -

I am the child of Child.

- - diff --git a/packages/playground/big/src/pages/60/index.svelte b/packages/playground/big/src/pages/60/index.svelte deleted file mode 100644 index 38324a07a..000000000 --- a/packages/playground/big/src/pages/60/index.svelte +++ /dev/null @@ -1,29 +0,0 @@ - - -

Page 60

- -

I am page 01.

- -

I have some children:

- -
- - -
- - diff --git a/packages/playground/big/src/pages/61/Child.svelte b/packages/playground/big/src/pages/61/Child.svelte deleted file mode 100644 index 5b985d48c..000000000 --- a/packages/playground/big/src/pages/61/Child.svelte +++ /dev/null @@ -1,20 +0,0 @@ - - -
-

Child 61

- -

I have kids too:

- - - - -
- - diff --git a/packages/playground/big/src/pages/61/GrandChild.svelte b/packages/playground/big/src/pages/61/GrandChild.svelte deleted file mode 100644 index 0f73f17a8..000000000 --- a/packages/playground/big/src/pages/61/GrandChild.svelte +++ /dev/null @@ -1,9 +0,0 @@ -

GrandChild 61

- -

I am the child of Child.

- - diff --git a/packages/playground/big/src/pages/61/OtherChild.svelte b/packages/playground/big/src/pages/61/OtherChild.svelte deleted file mode 100644 index 5636c0d3b..000000000 --- a/packages/playground/big/src/pages/61/OtherChild.svelte +++ /dev/null @@ -1,11 +0,0 @@ -
-

Other Child 61

- -

I am the other child.

-
- - diff --git a/packages/playground/big/src/pages/61/OtherGrandChild.svelte b/packages/playground/big/src/pages/61/OtherGrandChild.svelte deleted file mode 100644 index dc1bf00ac..000000000 --- a/packages/playground/big/src/pages/61/OtherGrandChild.svelte +++ /dev/null @@ -1,9 +0,0 @@ -

Other GrandChild 61

- -

I am the child of Child.

- - diff --git a/packages/playground/big/src/pages/61/index.svelte b/packages/playground/big/src/pages/61/index.svelte deleted file mode 100644 index 3f137ad23..000000000 --- a/packages/playground/big/src/pages/61/index.svelte +++ /dev/null @@ -1,29 +0,0 @@ - - -

Page 61

- -

I am page 01.

- -

I have some children:

- -
- - -
- - diff --git a/packages/playground/big/src/pages/62/Child.svelte b/packages/playground/big/src/pages/62/Child.svelte deleted file mode 100644 index d538d607c..000000000 --- a/packages/playground/big/src/pages/62/Child.svelte +++ /dev/null @@ -1,20 +0,0 @@ - - -
-

Child 62

- -

I have kids too:

- - - - -
- - diff --git a/packages/playground/big/src/pages/62/GrandChild.svelte b/packages/playground/big/src/pages/62/GrandChild.svelte deleted file mode 100644 index b3aeec28d..000000000 --- a/packages/playground/big/src/pages/62/GrandChild.svelte +++ /dev/null @@ -1,9 +0,0 @@ -

GrandChild 62

- -

I am the child of Child.

- - diff --git a/packages/playground/big/src/pages/62/OtherChild.svelte b/packages/playground/big/src/pages/62/OtherChild.svelte deleted file mode 100644 index f7f13b8e3..000000000 --- a/packages/playground/big/src/pages/62/OtherChild.svelte +++ /dev/null @@ -1,11 +0,0 @@ -
-

Other Child 62

- -

I am the other child.

-
- - diff --git a/packages/playground/big/src/pages/62/OtherGrandChild.svelte b/packages/playground/big/src/pages/62/OtherGrandChild.svelte deleted file mode 100644 index 265a16d53..000000000 --- a/packages/playground/big/src/pages/62/OtherGrandChild.svelte +++ /dev/null @@ -1,9 +0,0 @@ -

Other GrandChild 62

- -

I am the child of Child.

- - diff --git a/packages/playground/big/src/pages/62/index.svelte b/packages/playground/big/src/pages/62/index.svelte deleted file mode 100644 index 852869c45..000000000 --- a/packages/playground/big/src/pages/62/index.svelte +++ /dev/null @@ -1,29 +0,0 @@ - - -

Page 62

- -

I am page 01.

- -

I have some children:

- -
- - -
- - diff --git a/packages/playground/big/src/pages/63/Child.svelte b/packages/playground/big/src/pages/63/Child.svelte deleted file mode 100644 index 5fa5ea01d..000000000 --- a/packages/playground/big/src/pages/63/Child.svelte +++ /dev/null @@ -1,20 +0,0 @@ - - -
-

Child 63

- -

I have kids too:

- - - - -
- - diff --git a/packages/playground/big/src/pages/63/GrandChild.svelte b/packages/playground/big/src/pages/63/GrandChild.svelte deleted file mode 100644 index 6bef0fa28..000000000 --- a/packages/playground/big/src/pages/63/GrandChild.svelte +++ /dev/null @@ -1,9 +0,0 @@ -

GrandChild 63

- -

I am the child of Child.

- - diff --git a/packages/playground/big/src/pages/63/OtherChild.svelte b/packages/playground/big/src/pages/63/OtherChild.svelte deleted file mode 100644 index 7252f248a..000000000 --- a/packages/playground/big/src/pages/63/OtherChild.svelte +++ /dev/null @@ -1,11 +0,0 @@ -
-

Other Child 63

- -

I am the other child.

-
- - diff --git a/packages/playground/big/src/pages/63/OtherGrandChild.svelte b/packages/playground/big/src/pages/63/OtherGrandChild.svelte deleted file mode 100644 index 1383e88f3..000000000 --- a/packages/playground/big/src/pages/63/OtherGrandChild.svelte +++ /dev/null @@ -1,9 +0,0 @@ -

Other GrandChild 63

- -

I am the child of Child.

- - diff --git a/packages/playground/big/src/pages/63/index.svelte b/packages/playground/big/src/pages/63/index.svelte deleted file mode 100644 index f9f119f98..000000000 --- a/packages/playground/big/src/pages/63/index.svelte +++ /dev/null @@ -1,29 +0,0 @@ - - -

Page 63

- -

I am page 01.

- -

I have some children:

- -
- - -
- - diff --git a/packages/playground/big/src/pages/64/Child.svelte b/packages/playground/big/src/pages/64/Child.svelte deleted file mode 100644 index 01361974e..000000000 --- a/packages/playground/big/src/pages/64/Child.svelte +++ /dev/null @@ -1,20 +0,0 @@ - - -
-

Child 64

- -

I have kids too:

- - - - -
- - diff --git a/packages/playground/big/src/pages/64/GrandChild.svelte b/packages/playground/big/src/pages/64/GrandChild.svelte deleted file mode 100644 index a2cf098c2..000000000 --- a/packages/playground/big/src/pages/64/GrandChild.svelte +++ /dev/null @@ -1,9 +0,0 @@ -

GrandChild 64

- -

I am the child of Child.

- - diff --git a/packages/playground/big/src/pages/64/OtherChild.svelte b/packages/playground/big/src/pages/64/OtherChild.svelte deleted file mode 100644 index dd9b141ab..000000000 --- a/packages/playground/big/src/pages/64/OtherChild.svelte +++ /dev/null @@ -1,11 +0,0 @@ -
-

Other Child 64

- -

I am the other child.

-
- - diff --git a/packages/playground/big/src/pages/64/OtherGrandChild.svelte b/packages/playground/big/src/pages/64/OtherGrandChild.svelte deleted file mode 100644 index 0140bdae7..000000000 --- a/packages/playground/big/src/pages/64/OtherGrandChild.svelte +++ /dev/null @@ -1,9 +0,0 @@ -

Other GrandChild 64

- -

I am the child of Child.

- - diff --git a/packages/playground/big/src/pages/64/index.svelte b/packages/playground/big/src/pages/64/index.svelte deleted file mode 100644 index 16c1f86ca..000000000 --- a/packages/playground/big/src/pages/64/index.svelte +++ /dev/null @@ -1,29 +0,0 @@ - - -

Page 64

- -

I am page 01.

- -

I have some children:

- -
- - -
- - diff --git a/packages/playground/big/src/pages/65/Child.svelte b/packages/playground/big/src/pages/65/Child.svelte deleted file mode 100644 index a811a373d..000000000 --- a/packages/playground/big/src/pages/65/Child.svelte +++ /dev/null @@ -1,20 +0,0 @@ - - -
-

Child 65

- -

I have kids too:

- - - - -
- - diff --git a/packages/playground/big/src/pages/65/GrandChild.svelte b/packages/playground/big/src/pages/65/GrandChild.svelte deleted file mode 100644 index 5af04c582..000000000 --- a/packages/playground/big/src/pages/65/GrandChild.svelte +++ /dev/null @@ -1,9 +0,0 @@ -

GrandChild 65

- -

I am the child of Child.

- - diff --git a/packages/playground/big/src/pages/65/OtherChild.svelte b/packages/playground/big/src/pages/65/OtherChild.svelte deleted file mode 100644 index 4078b8389..000000000 --- a/packages/playground/big/src/pages/65/OtherChild.svelte +++ /dev/null @@ -1,11 +0,0 @@ -
-

Other Child 65

- -

I am the other child.

-
- - diff --git a/packages/playground/big/src/pages/65/OtherGrandChild.svelte b/packages/playground/big/src/pages/65/OtherGrandChild.svelte deleted file mode 100644 index 9a4d22ee2..000000000 --- a/packages/playground/big/src/pages/65/OtherGrandChild.svelte +++ /dev/null @@ -1,9 +0,0 @@ -

Other GrandChild 65

- -

I am the child of Child.

- - diff --git a/packages/playground/big/src/pages/65/index.svelte b/packages/playground/big/src/pages/65/index.svelte deleted file mode 100644 index a9dba0f71..000000000 --- a/packages/playground/big/src/pages/65/index.svelte +++ /dev/null @@ -1,29 +0,0 @@ - - -

Page 65

- -

I am page 01.

- -

I have some children:

- -
- - -
- - diff --git a/packages/playground/big/src/pages/66/Child.svelte b/packages/playground/big/src/pages/66/Child.svelte deleted file mode 100644 index abfaf012a..000000000 --- a/packages/playground/big/src/pages/66/Child.svelte +++ /dev/null @@ -1,20 +0,0 @@ - - -
-

Child 66

- -

I have kids too:

- - - - -
- - diff --git a/packages/playground/big/src/pages/66/GrandChild.svelte b/packages/playground/big/src/pages/66/GrandChild.svelte deleted file mode 100644 index 371874625..000000000 --- a/packages/playground/big/src/pages/66/GrandChild.svelte +++ /dev/null @@ -1,9 +0,0 @@ -

GrandChild 66

- -

I am the child of Child.

- - diff --git a/packages/playground/big/src/pages/66/OtherChild.svelte b/packages/playground/big/src/pages/66/OtherChild.svelte deleted file mode 100644 index 63426546e..000000000 --- a/packages/playground/big/src/pages/66/OtherChild.svelte +++ /dev/null @@ -1,11 +0,0 @@ -
-

Other Child 66

- -

I am the other child.

-
- - diff --git a/packages/playground/big/src/pages/66/OtherGrandChild.svelte b/packages/playground/big/src/pages/66/OtherGrandChild.svelte deleted file mode 100644 index 5f4c7b085..000000000 --- a/packages/playground/big/src/pages/66/OtherGrandChild.svelte +++ /dev/null @@ -1,9 +0,0 @@ -

Other GrandChild 66

- -

I am the child of Child.

- - diff --git a/packages/playground/big/src/pages/66/index.svelte b/packages/playground/big/src/pages/66/index.svelte deleted file mode 100644 index 6ab032d5a..000000000 --- a/packages/playground/big/src/pages/66/index.svelte +++ /dev/null @@ -1,29 +0,0 @@ - - -

Page 66

- -

I am page 01.

- -

I have some children:

- -
- - -
- - diff --git a/packages/playground/big/src/pages/67/Child.svelte b/packages/playground/big/src/pages/67/Child.svelte deleted file mode 100644 index 302e4d443..000000000 --- a/packages/playground/big/src/pages/67/Child.svelte +++ /dev/null @@ -1,20 +0,0 @@ - - -
-

Child 67

- -

I have kids too:

- - - - -
- - diff --git a/packages/playground/big/src/pages/67/GrandChild.svelte b/packages/playground/big/src/pages/67/GrandChild.svelte deleted file mode 100644 index e75aff619..000000000 --- a/packages/playground/big/src/pages/67/GrandChild.svelte +++ /dev/null @@ -1,9 +0,0 @@ -

GrandChild 67

- -

I am the child of Child.

- - diff --git a/packages/playground/big/src/pages/67/OtherChild.svelte b/packages/playground/big/src/pages/67/OtherChild.svelte deleted file mode 100644 index 8d85dd892..000000000 --- a/packages/playground/big/src/pages/67/OtherChild.svelte +++ /dev/null @@ -1,11 +0,0 @@ -
-

Other Child 67

- -

I am the other child.

-
- - diff --git a/packages/playground/big/src/pages/67/OtherGrandChild.svelte b/packages/playground/big/src/pages/67/OtherGrandChild.svelte deleted file mode 100644 index f47e27e63..000000000 --- a/packages/playground/big/src/pages/67/OtherGrandChild.svelte +++ /dev/null @@ -1,9 +0,0 @@ -

Other GrandChild 67

- -

I am the child of Child.

- - diff --git a/packages/playground/big/src/pages/67/index.svelte b/packages/playground/big/src/pages/67/index.svelte deleted file mode 100644 index 8673cc6a5..000000000 --- a/packages/playground/big/src/pages/67/index.svelte +++ /dev/null @@ -1,29 +0,0 @@ - - -

Page 67

- -

I am page 01.

- -

I have some children:

- -
- - -
- - diff --git a/packages/playground/big/src/pages/68/Child.svelte b/packages/playground/big/src/pages/68/Child.svelte deleted file mode 100644 index 7aa902571..000000000 --- a/packages/playground/big/src/pages/68/Child.svelte +++ /dev/null @@ -1,20 +0,0 @@ - - -
-

Child 68

- -

I have kids too:

- - - - -
- - diff --git a/packages/playground/big/src/pages/68/GrandChild.svelte b/packages/playground/big/src/pages/68/GrandChild.svelte deleted file mode 100644 index b6c26aeb0..000000000 --- a/packages/playground/big/src/pages/68/GrandChild.svelte +++ /dev/null @@ -1,9 +0,0 @@ -

GrandChild 68

- -

I am the child of Child.

- - diff --git a/packages/playground/big/src/pages/68/OtherChild.svelte b/packages/playground/big/src/pages/68/OtherChild.svelte deleted file mode 100644 index 092d58a02..000000000 --- a/packages/playground/big/src/pages/68/OtherChild.svelte +++ /dev/null @@ -1,11 +0,0 @@ -
-

Other Child 68

- -

I am the other child.

-
- - diff --git a/packages/playground/big/src/pages/68/OtherGrandChild.svelte b/packages/playground/big/src/pages/68/OtherGrandChild.svelte deleted file mode 100644 index 83ab98c9d..000000000 --- a/packages/playground/big/src/pages/68/OtherGrandChild.svelte +++ /dev/null @@ -1,9 +0,0 @@ -

Other GrandChild 68

- -

I am the child of Child.

- - diff --git a/packages/playground/big/src/pages/68/index.svelte b/packages/playground/big/src/pages/68/index.svelte deleted file mode 100644 index 9619805c8..000000000 --- a/packages/playground/big/src/pages/68/index.svelte +++ /dev/null @@ -1,29 +0,0 @@ - - -

Page 68

- -

I am page 01.

- -

I have some children:

- -
- - -
- - diff --git a/packages/playground/big/src/pages/69/Child.svelte b/packages/playground/big/src/pages/69/Child.svelte deleted file mode 100644 index 3f33ab189..000000000 --- a/packages/playground/big/src/pages/69/Child.svelte +++ /dev/null @@ -1,20 +0,0 @@ - - -
-

Child 69

- -

I have kids too:

- - - - -
- - diff --git a/packages/playground/big/src/pages/69/GrandChild.svelte b/packages/playground/big/src/pages/69/GrandChild.svelte deleted file mode 100644 index 7ec8f6e6c..000000000 --- a/packages/playground/big/src/pages/69/GrandChild.svelte +++ /dev/null @@ -1,9 +0,0 @@ -

GrandChild 69

- -

I am the child of Child.

- - diff --git a/packages/playground/big/src/pages/69/OtherChild.svelte b/packages/playground/big/src/pages/69/OtherChild.svelte deleted file mode 100644 index 895dcc12f..000000000 --- a/packages/playground/big/src/pages/69/OtherChild.svelte +++ /dev/null @@ -1,11 +0,0 @@ -
-

Other Child 69

- -

I am the other child.

-
- - diff --git a/packages/playground/big/src/pages/69/OtherGrandChild.svelte b/packages/playground/big/src/pages/69/OtherGrandChild.svelte deleted file mode 100644 index d7f6a6c63..000000000 --- a/packages/playground/big/src/pages/69/OtherGrandChild.svelte +++ /dev/null @@ -1,9 +0,0 @@ -

Other GrandChild 69

- -

I am the child of Child.

- - diff --git a/packages/playground/big/src/pages/69/index.svelte b/packages/playground/big/src/pages/69/index.svelte deleted file mode 100644 index d438ddbca..000000000 --- a/packages/playground/big/src/pages/69/index.svelte +++ /dev/null @@ -1,29 +0,0 @@ - - -

Page 69

- -

I am page 01.

- -

I have some children:

- -
- - -
- - diff --git a/packages/playground/big/src/pages/70/Child.svelte b/packages/playground/big/src/pages/70/Child.svelte deleted file mode 100644 index 562fda670..000000000 --- a/packages/playground/big/src/pages/70/Child.svelte +++ /dev/null @@ -1,20 +0,0 @@ - - -
-

Child 70

- -

I have kids too:

- - - - -
- - diff --git a/packages/playground/big/src/pages/70/GrandChild.svelte b/packages/playground/big/src/pages/70/GrandChild.svelte deleted file mode 100644 index d8cc09a2e..000000000 --- a/packages/playground/big/src/pages/70/GrandChild.svelte +++ /dev/null @@ -1,9 +0,0 @@ -

GrandChild 70

- -

I am the child of Child.

- - diff --git a/packages/playground/big/src/pages/70/OtherChild.svelte b/packages/playground/big/src/pages/70/OtherChild.svelte deleted file mode 100644 index 9f9ed7a3b..000000000 --- a/packages/playground/big/src/pages/70/OtherChild.svelte +++ /dev/null @@ -1,11 +0,0 @@ -
-

Other Child 70

- -

I am the other child.

-
- - diff --git a/packages/playground/big/src/pages/70/OtherGrandChild.svelte b/packages/playground/big/src/pages/70/OtherGrandChild.svelte deleted file mode 100644 index 785dedc70..000000000 --- a/packages/playground/big/src/pages/70/OtherGrandChild.svelte +++ /dev/null @@ -1,9 +0,0 @@ -

Other GrandChild 70

- -

I am the child of Child.

- - diff --git a/packages/playground/big/src/pages/70/index.svelte b/packages/playground/big/src/pages/70/index.svelte deleted file mode 100644 index 4e4adecec..000000000 --- a/packages/playground/big/src/pages/70/index.svelte +++ /dev/null @@ -1,29 +0,0 @@ - - -

Page 70

- -

I am page 01.

- -

I have some children:

- -
- - -
- - diff --git a/packages/playground/big/src/pages/71/Child.svelte b/packages/playground/big/src/pages/71/Child.svelte deleted file mode 100644 index bafd5cebe..000000000 --- a/packages/playground/big/src/pages/71/Child.svelte +++ /dev/null @@ -1,20 +0,0 @@ - - -
-

Child 71

- -

I have kids too:

- - - - -
- - diff --git a/packages/playground/big/src/pages/71/GrandChild.svelte b/packages/playground/big/src/pages/71/GrandChild.svelte deleted file mode 100644 index 60065f36e..000000000 --- a/packages/playground/big/src/pages/71/GrandChild.svelte +++ /dev/null @@ -1,9 +0,0 @@ -

GrandChild 71

- -

I am the child of Child.

- - diff --git a/packages/playground/big/src/pages/71/OtherChild.svelte b/packages/playground/big/src/pages/71/OtherChild.svelte deleted file mode 100644 index c3999f6c9..000000000 --- a/packages/playground/big/src/pages/71/OtherChild.svelte +++ /dev/null @@ -1,11 +0,0 @@ -
-

Other Child 71

- -

I am the other child.

-
- - diff --git a/packages/playground/big/src/pages/71/OtherGrandChild.svelte b/packages/playground/big/src/pages/71/OtherGrandChild.svelte deleted file mode 100644 index d77c8d284..000000000 --- a/packages/playground/big/src/pages/71/OtherGrandChild.svelte +++ /dev/null @@ -1,9 +0,0 @@ -

Other GrandChild 71

- -

I am the child of Child.

- - diff --git a/packages/playground/big/src/pages/71/index.svelte b/packages/playground/big/src/pages/71/index.svelte deleted file mode 100644 index e80f0a887..000000000 --- a/packages/playground/big/src/pages/71/index.svelte +++ /dev/null @@ -1,29 +0,0 @@ - - -

Page 71

- -

I am page 01.

- -

I have some children:

- -
- - -
- - diff --git a/packages/playground/big/src/pages/72/Child.svelte b/packages/playground/big/src/pages/72/Child.svelte deleted file mode 100644 index 357a5cb70..000000000 --- a/packages/playground/big/src/pages/72/Child.svelte +++ /dev/null @@ -1,20 +0,0 @@ - - -
-

Child 72

- -

I have kids too:

- - - - -
- - diff --git a/packages/playground/big/src/pages/72/GrandChild.svelte b/packages/playground/big/src/pages/72/GrandChild.svelte deleted file mode 100644 index 4bafbcfc6..000000000 --- a/packages/playground/big/src/pages/72/GrandChild.svelte +++ /dev/null @@ -1,9 +0,0 @@ -

GrandChild 72

- -

I am the child of Child.

- - diff --git a/packages/playground/big/src/pages/72/OtherChild.svelte b/packages/playground/big/src/pages/72/OtherChild.svelte deleted file mode 100644 index adbafe584..000000000 --- a/packages/playground/big/src/pages/72/OtherChild.svelte +++ /dev/null @@ -1,11 +0,0 @@ -
-

Other Child 72

- -

I am the other child.

-
- - diff --git a/packages/playground/big/src/pages/72/OtherGrandChild.svelte b/packages/playground/big/src/pages/72/OtherGrandChild.svelte deleted file mode 100644 index d7d05dd16..000000000 --- a/packages/playground/big/src/pages/72/OtherGrandChild.svelte +++ /dev/null @@ -1,9 +0,0 @@ -

Other GrandChild 72

- -

I am the child of Child.

- - diff --git a/packages/playground/big/src/pages/72/index.svelte b/packages/playground/big/src/pages/72/index.svelte deleted file mode 100644 index 2db7fd1b5..000000000 --- a/packages/playground/big/src/pages/72/index.svelte +++ /dev/null @@ -1,29 +0,0 @@ - - -

Page 72

- -

I am page 01.

- -

I have some children:

- -
- - -
- - diff --git a/packages/playground/big/src/pages/73/Child.svelte b/packages/playground/big/src/pages/73/Child.svelte deleted file mode 100644 index be292d2ec..000000000 --- a/packages/playground/big/src/pages/73/Child.svelte +++ /dev/null @@ -1,20 +0,0 @@ - - -
-

Child 73

- -

I have kids too:

- - - - -
- - diff --git a/packages/playground/big/src/pages/73/GrandChild.svelte b/packages/playground/big/src/pages/73/GrandChild.svelte deleted file mode 100644 index dc4d4d902..000000000 --- a/packages/playground/big/src/pages/73/GrandChild.svelte +++ /dev/null @@ -1,9 +0,0 @@ -

GrandChild 73

- -

I am the child of Child.

- - diff --git a/packages/playground/big/src/pages/73/OtherChild.svelte b/packages/playground/big/src/pages/73/OtherChild.svelte deleted file mode 100644 index 83f4c3e8c..000000000 --- a/packages/playground/big/src/pages/73/OtherChild.svelte +++ /dev/null @@ -1,11 +0,0 @@ -
-

Other Child 73

- -

I am the other child.

-
- - diff --git a/packages/playground/big/src/pages/73/OtherGrandChild.svelte b/packages/playground/big/src/pages/73/OtherGrandChild.svelte deleted file mode 100644 index 6c2deeb78..000000000 --- a/packages/playground/big/src/pages/73/OtherGrandChild.svelte +++ /dev/null @@ -1,9 +0,0 @@ -

Other GrandChild 73

- -

I am the child of Child.

- - diff --git a/packages/playground/big/src/pages/73/index.svelte b/packages/playground/big/src/pages/73/index.svelte deleted file mode 100644 index 20ed7bdf4..000000000 --- a/packages/playground/big/src/pages/73/index.svelte +++ /dev/null @@ -1,29 +0,0 @@ - - -

Page 73

- -

I am page 01.

- -

I have some children:

- -
- - -
- - diff --git a/packages/playground/big/src/pages/74/Child.svelte b/packages/playground/big/src/pages/74/Child.svelte deleted file mode 100644 index b3bf35c82..000000000 --- a/packages/playground/big/src/pages/74/Child.svelte +++ /dev/null @@ -1,20 +0,0 @@ - - -
-

Child 74

- -

I have kids too:

- - - - -
- - diff --git a/packages/playground/big/src/pages/74/GrandChild.svelte b/packages/playground/big/src/pages/74/GrandChild.svelte deleted file mode 100644 index 620c15afc..000000000 --- a/packages/playground/big/src/pages/74/GrandChild.svelte +++ /dev/null @@ -1,9 +0,0 @@ -

GrandChild 74

- -

I am the child of Child.

- - diff --git a/packages/playground/big/src/pages/74/OtherChild.svelte b/packages/playground/big/src/pages/74/OtherChild.svelte deleted file mode 100644 index b7fce9202..000000000 --- a/packages/playground/big/src/pages/74/OtherChild.svelte +++ /dev/null @@ -1,11 +0,0 @@ -
-

Other Child 74

- -

I am the other child.

-
- - diff --git a/packages/playground/big/src/pages/74/OtherGrandChild.svelte b/packages/playground/big/src/pages/74/OtherGrandChild.svelte deleted file mode 100644 index 6f35ad09b..000000000 --- a/packages/playground/big/src/pages/74/OtherGrandChild.svelte +++ /dev/null @@ -1,9 +0,0 @@ -

Other GrandChild 74

- -

I am the child of Child.

- - diff --git a/packages/playground/big/src/pages/74/index.svelte b/packages/playground/big/src/pages/74/index.svelte deleted file mode 100644 index 86e38c64e..000000000 --- a/packages/playground/big/src/pages/74/index.svelte +++ /dev/null @@ -1,29 +0,0 @@ - - -

Page 74

- -

I am page 01.

- -

I have some children:

- -
- - -
- - diff --git a/packages/playground/big/src/pages/75/Child.svelte b/packages/playground/big/src/pages/75/Child.svelte deleted file mode 100644 index 8b8d4416d..000000000 --- a/packages/playground/big/src/pages/75/Child.svelte +++ /dev/null @@ -1,20 +0,0 @@ - - -
-

Child 75

- -

I have kids too:

- - - - -
- - diff --git a/packages/playground/big/src/pages/75/GrandChild.svelte b/packages/playground/big/src/pages/75/GrandChild.svelte deleted file mode 100644 index e4b216a05..000000000 --- a/packages/playground/big/src/pages/75/GrandChild.svelte +++ /dev/null @@ -1,9 +0,0 @@ -

GrandChild 75

- -

I am the child of Child.

- - diff --git a/packages/playground/big/src/pages/75/OtherChild.svelte b/packages/playground/big/src/pages/75/OtherChild.svelte deleted file mode 100644 index ff4391110..000000000 --- a/packages/playground/big/src/pages/75/OtherChild.svelte +++ /dev/null @@ -1,11 +0,0 @@ -
-

Other Child 75

- -

I am the other child.

-
- - diff --git a/packages/playground/big/src/pages/75/OtherGrandChild.svelte b/packages/playground/big/src/pages/75/OtherGrandChild.svelte deleted file mode 100644 index 2e2edc40b..000000000 --- a/packages/playground/big/src/pages/75/OtherGrandChild.svelte +++ /dev/null @@ -1,9 +0,0 @@ -

Other GrandChild 75

- -

I am the child of Child.

- - diff --git a/packages/playground/big/src/pages/75/index.svelte b/packages/playground/big/src/pages/75/index.svelte deleted file mode 100644 index 826f68447..000000000 --- a/packages/playground/big/src/pages/75/index.svelte +++ /dev/null @@ -1,29 +0,0 @@ - - -

Page 75

- -

I am page 01.

- -

I have some children:

- -
- - -
- - diff --git a/packages/playground/big/src/pages/76/Child.svelte b/packages/playground/big/src/pages/76/Child.svelte deleted file mode 100644 index d6362c4f3..000000000 --- a/packages/playground/big/src/pages/76/Child.svelte +++ /dev/null @@ -1,20 +0,0 @@ - - -
-

Child 76

- -

I have kids too:

- - - - -
- - diff --git a/packages/playground/big/src/pages/76/GrandChild.svelte b/packages/playground/big/src/pages/76/GrandChild.svelte deleted file mode 100644 index 3d832778a..000000000 --- a/packages/playground/big/src/pages/76/GrandChild.svelte +++ /dev/null @@ -1,9 +0,0 @@ -

GrandChild 76

- -

I am the child of Child.

- - diff --git a/packages/playground/big/src/pages/76/OtherChild.svelte b/packages/playground/big/src/pages/76/OtherChild.svelte deleted file mode 100644 index c11835f7a..000000000 --- a/packages/playground/big/src/pages/76/OtherChild.svelte +++ /dev/null @@ -1,11 +0,0 @@ -
-

Other Child 76

- -

I am the other child.

-
- - diff --git a/packages/playground/big/src/pages/76/OtherGrandChild.svelte b/packages/playground/big/src/pages/76/OtherGrandChild.svelte deleted file mode 100644 index 938e1d7e4..000000000 --- a/packages/playground/big/src/pages/76/OtherGrandChild.svelte +++ /dev/null @@ -1,9 +0,0 @@ -

Other GrandChild 76

- -

I am the child of Child.

- - diff --git a/packages/playground/big/src/pages/76/index.svelte b/packages/playground/big/src/pages/76/index.svelte deleted file mode 100644 index d1d584d7b..000000000 --- a/packages/playground/big/src/pages/76/index.svelte +++ /dev/null @@ -1,29 +0,0 @@ - - -

Page 76

- -

I am page 01.

- -

I have some children:

- -
- - -
- - diff --git a/packages/playground/big/src/pages/77/Child.svelte b/packages/playground/big/src/pages/77/Child.svelte deleted file mode 100644 index eda57529d..000000000 --- a/packages/playground/big/src/pages/77/Child.svelte +++ /dev/null @@ -1,20 +0,0 @@ - - -
-

Child 77

- -

I have kids too:

- - - - -
- - diff --git a/packages/playground/big/src/pages/77/GrandChild.svelte b/packages/playground/big/src/pages/77/GrandChild.svelte deleted file mode 100644 index b161e780c..000000000 --- a/packages/playground/big/src/pages/77/GrandChild.svelte +++ /dev/null @@ -1,9 +0,0 @@ -

GrandChild 77

- -

I am the child of Child.

- - diff --git a/packages/playground/big/src/pages/77/OtherChild.svelte b/packages/playground/big/src/pages/77/OtherChild.svelte deleted file mode 100644 index 93f8c9fed..000000000 --- a/packages/playground/big/src/pages/77/OtherChild.svelte +++ /dev/null @@ -1,11 +0,0 @@ -
-

Other Child 77

- -

I am the other child.

-
- - diff --git a/packages/playground/big/src/pages/77/OtherGrandChild.svelte b/packages/playground/big/src/pages/77/OtherGrandChild.svelte deleted file mode 100644 index a738e85ed..000000000 --- a/packages/playground/big/src/pages/77/OtherGrandChild.svelte +++ /dev/null @@ -1,9 +0,0 @@ -

Other GrandChild 77

- -

I am the child of Child.

- - diff --git a/packages/playground/big/src/pages/77/index.svelte b/packages/playground/big/src/pages/77/index.svelte deleted file mode 100644 index bda4ccbec..000000000 --- a/packages/playground/big/src/pages/77/index.svelte +++ /dev/null @@ -1,29 +0,0 @@ - - -

Page 77

- -

I am page 01.

- -

I have some children:

- -
- - -
- - diff --git a/packages/playground/big/src/pages/78/Child.svelte b/packages/playground/big/src/pages/78/Child.svelte deleted file mode 100644 index b424d3f9e..000000000 --- a/packages/playground/big/src/pages/78/Child.svelte +++ /dev/null @@ -1,20 +0,0 @@ - - -
-

Child 78

- -

I have kids too:

- - - - -
- - diff --git a/packages/playground/big/src/pages/78/GrandChild.svelte b/packages/playground/big/src/pages/78/GrandChild.svelte deleted file mode 100644 index 92b6c7cb3..000000000 --- a/packages/playground/big/src/pages/78/GrandChild.svelte +++ /dev/null @@ -1,9 +0,0 @@ -

GrandChild 78

- -

I am the child of Child.

- - diff --git a/packages/playground/big/src/pages/78/OtherChild.svelte b/packages/playground/big/src/pages/78/OtherChild.svelte deleted file mode 100644 index fabaafb1b..000000000 --- a/packages/playground/big/src/pages/78/OtherChild.svelte +++ /dev/null @@ -1,11 +0,0 @@ -
-

Other Child 78

- -

I am the other child.

-
- - diff --git a/packages/playground/big/src/pages/78/OtherGrandChild.svelte b/packages/playground/big/src/pages/78/OtherGrandChild.svelte deleted file mode 100644 index b5f5b7021..000000000 --- a/packages/playground/big/src/pages/78/OtherGrandChild.svelte +++ /dev/null @@ -1,9 +0,0 @@ -

Other GrandChild 78

- -

I am the child of Child.

- - diff --git a/packages/playground/big/src/pages/78/index.svelte b/packages/playground/big/src/pages/78/index.svelte deleted file mode 100644 index 204b6cc90..000000000 --- a/packages/playground/big/src/pages/78/index.svelte +++ /dev/null @@ -1,29 +0,0 @@ - - -

Page 78

- -

I am page 01.

- -

I have some children:

- -
- - -
- - diff --git a/packages/playground/big/src/pages/79/Child.svelte b/packages/playground/big/src/pages/79/Child.svelte deleted file mode 100644 index ebac2d15a..000000000 --- a/packages/playground/big/src/pages/79/Child.svelte +++ /dev/null @@ -1,20 +0,0 @@ - - -
-

Child 79

- -

I have kids too:

- - - - -
- - diff --git a/packages/playground/big/src/pages/79/GrandChild.svelte b/packages/playground/big/src/pages/79/GrandChild.svelte deleted file mode 100644 index 2fadf8dc2..000000000 --- a/packages/playground/big/src/pages/79/GrandChild.svelte +++ /dev/null @@ -1,9 +0,0 @@ -

GrandChild 79

- -

I am the child of Child.

- - diff --git a/packages/playground/big/src/pages/79/OtherChild.svelte b/packages/playground/big/src/pages/79/OtherChild.svelte deleted file mode 100644 index daecaf3c4..000000000 --- a/packages/playground/big/src/pages/79/OtherChild.svelte +++ /dev/null @@ -1,11 +0,0 @@ -
-

Other Child 79

- -

I am the other child.

-
- - diff --git a/packages/playground/big/src/pages/79/OtherGrandChild.svelte b/packages/playground/big/src/pages/79/OtherGrandChild.svelte deleted file mode 100644 index a57d1f911..000000000 --- a/packages/playground/big/src/pages/79/OtherGrandChild.svelte +++ /dev/null @@ -1,9 +0,0 @@ -

Other GrandChild 79

- -

I am the child of Child.

- - diff --git a/packages/playground/big/src/pages/79/index.svelte b/packages/playground/big/src/pages/79/index.svelte deleted file mode 100644 index c05c00bc0..000000000 --- a/packages/playground/big/src/pages/79/index.svelte +++ /dev/null @@ -1,29 +0,0 @@ - - -

Page 79

- -

I am page 01.

- -

I have some children:

- -
- - -
- - diff --git a/packages/playground/big/src/pages/80/Child.svelte b/packages/playground/big/src/pages/80/Child.svelte deleted file mode 100644 index c5de18993..000000000 --- a/packages/playground/big/src/pages/80/Child.svelte +++ /dev/null @@ -1,20 +0,0 @@ - - -
-

Child 80

- -

I have kids too:

- - - - -
- - diff --git a/packages/playground/big/src/pages/80/GrandChild.svelte b/packages/playground/big/src/pages/80/GrandChild.svelte deleted file mode 100644 index edce26471..000000000 --- a/packages/playground/big/src/pages/80/GrandChild.svelte +++ /dev/null @@ -1,9 +0,0 @@ -

GrandChild 80

- -

I am the child of Child.

- - diff --git a/packages/playground/big/src/pages/80/OtherChild.svelte b/packages/playground/big/src/pages/80/OtherChild.svelte deleted file mode 100644 index b9e1843d6..000000000 --- a/packages/playground/big/src/pages/80/OtherChild.svelte +++ /dev/null @@ -1,11 +0,0 @@ -
-

Other Child 80

- -

I am the other child.

-
- - diff --git a/packages/playground/big/src/pages/80/OtherGrandChild.svelte b/packages/playground/big/src/pages/80/OtherGrandChild.svelte deleted file mode 100644 index 83a64af5c..000000000 --- a/packages/playground/big/src/pages/80/OtherGrandChild.svelte +++ /dev/null @@ -1,9 +0,0 @@ -

Other GrandChild 80

- -

I am the child of Child.

- - diff --git a/packages/playground/big/src/pages/80/index.svelte b/packages/playground/big/src/pages/80/index.svelte deleted file mode 100644 index 680c45e18..000000000 --- a/packages/playground/big/src/pages/80/index.svelte +++ /dev/null @@ -1,29 +0,0 @@ - - -

Page 80

- -

I am page 01.

- -

I have some children:

- -
- - -
- - diff --git a/packages/playground/big/src/pages/81/Child.svelte b/packages/playground/big/src/pages/81/Child.svelte deleted file mode 100644 index 7d4ab26fa..000000000 --- a/packages/playground/big/src/pages/81/Child.svelte +++ /dev/null @@ -1,20 +0,0 @@ - - -
-

Child 81

- -

I have kids too:

- - - - -
- - diff --git a/packages/playground/big/src/pages/81/GrandChild.svelte b/packages/playground/big/src/pages/81/GrandChild.svelte deleted file mode 100644 index 2f37ec075..000000000 --- a/packages/playground/big/src/pages/81/GrandChild.svelte +++ /dev/null @@ -1,9 +0,0 @@ -

GrandChild 81

- -

I am the child of Child.

- - diff --git a/packages/playground/big/src/pages/81/OtherChild.svelte b/packages/playground/big/src/pages/81/OtherChild.svelte deleted file mode 100644 index e1f5d1217..000000000 --- a/packages/playground/big/src/pages/81/OtherChild.svelte +++ /dev/null @@ -1,11 +0,0 @@ -
-

Other Child 81

- -

I am the other child.

-
- - diff --git a/packages/playground/big/src/pages/81/OtherGrandChild.svelte b/packages/playground/big/src/pages/81/OtherGrandChild.svelte deleted file mode 100644 index 8bbabd837..000000000 --- a/packages/playground/big/src/pages/81/OtherGrandChild.svelte +++ /dev/null @@ -1,9 +0,0 @@ -

Other GrandChild 81

- -

I am the child of Child.

- - diff --git a/packages/playground/big/src/pages/81/index.svelte b/packages/playground/big/src/pages/81/index.svelte deleted file mode 100644 index 4f1852597..000000000 --- a/packages/playground/big/src/pages/81/index.svelte +++ /dev/null @@ -1,29 +0,0 @@ - - -

Page 81

- -

I am page 01.

- -

I have some children:

- -
- - -
- - diff --git a/packages/playground/big/src/pages/82/Child.svelte b/packages/playground/big/src/pages/82/Child.svelte deleted file mode 100644 index 06697bc5c..000000000 --- a/packages/playground/big/src/pages/82/Child.svelte +++ /dev/null @@ -1,20 +0,0 @@ - - -
-

Child 82

- -

I have kids too:

- - - - -
- - diff --git a/packages/playground/big/src/pages/82/GrandChild.svelte b/packages/playground/big/src/pages/82/GrandChild.svelte deleted file mode 100644 index fd42aab92..000000000 --- a/packages/playground/big/src/pages/82/GrandChild.svelte +++ /dev/null @@ -1,9 +0,0 @@ -

GrandChild 82

- -

I am the child of Child.

- - diff --git a/packages/playground/big/src/pages/82/OtherChild.svelte b/packages/playground/big/src/pages/82/OtherChild.svelte deleted file mode 100644 index 2f7582aed..000000000 --- a/packages/playground/big/src/pages/82/OtherChild.svelte +++ /dev/null @@ -1,11 +0,0 @@ -
-

Other Child 82

- -

I am the other child.

-
- - diff --git a/packages/playground/big/src/pages/82/OtherGrandChild.svelte b/packages/playground/big/src/pages/82/OtherGrandChild.svelte deleted file mode 100644 index 5e3c5ee32..000000000 --- a/packages/playground/big/src/pages/82/OtherGrandChild.svelte +++ /dev/null @@ -1,9 +0,0 @@ -

Other GrandChild 82

- -

I am the child of Child.

- - diff --git a/packages/playground/big/src/pages/82/index.svelte b/packages/playground/big/src/pages/82/index.svelte deleted file mode 100644 index 61cfdbe37..000000000 --- a/packages/playground/big/src/pages/82/index.svelte +++ /dev/null @@ -1,29 +0,0 @@ - - -

Page 82

- -

I am page 01.

- -

I have some children:

- -
- - -
- - diff --git a/packages/playground/big/src/pages/83/Child.svelte b/packages/playground/big/src/pages/83/Child.svelte deleted file mode 100644 index 6750d0bd3..000000000 --- a/packages/playground/big/src/pages/83/Child.svelte +++ /dev/null @@ -1,20 +0,0 @@ - - -
-

Child 83

- -

I have kids too:

- - - - -
- - diff --git a/packages/playground/big/src/pages/83/GrandChild.svelte b/packages/playground/big/src/pages/83/GrandChild.svelte deleted file mode 100644 index 173c55982..000000000 --- a/packages/playground/big/src/pages/83/GrandChild.svelte +++ /dev/null @@ -1,9 +0,0 @@ -

GrandChild 83

- -

I am the child of Child.

- - diff --git a/packages/playground/big/src/pages/83/OtherChild.svelte b/packages/playground/big/src/pages/83/OtherChild.svelte deleted file mode 100644 index 45dcefc17..000000000 --- a/packages/playground/big/src/pages/83/OtherChild.svelte +++ /dev/null @@ -1,11 +0,0 @@ -
-

Other Child 83

- -

I am the other child.

-
- - diff --git a/packages/playground/big/src/pages/83/OtherGrandChild.svelte b/packages/playground/big/src/pages/83/OtherGrandChild.svelte deleted file mode 100644 index cb9251c00..000000000 --- a/packages/playground/big/src/pages/83/OtherGrandChild.svelte +++ /dev/null @@ -1,9 +0,0 @@ -

Other GrandChild 83

- -

I am the child of Child.

- - diff --git a/packages/playground/big/src/pages/83/index.svelte b/packages/playground/big/src/pages/83/index.svelte deleted file mode 100644 index 74355f812..000000000 --- a/packages/playground/big/src/pages/83/index.svelte +++ /dev/null @@ -1,29 +0,0 @@ - - -

Page 83

- -

I am page 01.

- -

I have some children:

- -
- - -
- - diff --git a/packages/playground/big/src/pages/84/Child.svelte b/packages/playground/big/src/pages/84/Child.svelte deleted file mode 100644 index 2340a942b..000000000 --- a/packages/playground/big/src/pages/84/Child.svelte +++ /dev/null @@ -1,20 +0,0 @@ - - -
-

Child 84

- -

I have kids too:

- - - - -
- - diff --git a/packages/playground/big/src/pages/84/GrandChild.svelte b/packages/playground/big/src/pages/84/GrandChild.svelte deleted file mode 100644 index 5eba0e0a0..000000000 --- a/packages/playground/big/src/pages/84/GrandChild.svelte +++ /dev/null @@ -1,9 +0,0 @@ -

GrandChild 84

- -

I am the child of Child.

- - diff --git a/packages/playground/big/src/pages/84/OtherChild.svelte b/packages/playground/big/src/pages/84/OtherChild.svelte deleted file mode 100644 index aa3dfcbc8..000000000 --- a/packages/playground/big/src/pages/84/OtherChild.svelte +++ /dev/null @@ -1,11 +0,0 @@ -
-

Other Child 84

- -

I am the other child.

-
- - diff --git a/packages/playground/big/src/pages/84/OtherGrandChild.svelte b/packages/playground/big/src/pages/84/OtherGrandChild.svelte deleted file mode 100644 index a3f12987b..000000000 --- a/packages/playground/big/src/pages/84/OtherGrandChild.svelte +++ /dev/null @@ -1,9 +0,0 @@ -

Other GrandChild 84

- -

I am the child of Child.

- - diff --git a/packages/playground/big/src/pages/84/index.svelte b/packages/playground/big/src/pages/84/index.svelte deleted file mode 100644 index a7a499521..000000000 --- a/packages/playground/big/src/pages/84/index.svelte +++ /dev/null @@ -1,29 +0,0 @@ - - -

Page 84

- -

I am page 01.

- -

I have some children:

- -
- - -
- - diff --git a/packages/playground/big/src/pages/85/Child.svelte b/packages/playground/big/src/pages/85/Child.svelte deleted file mode 100644 index 4fb2f93eb..000000000 --- a/packages/playground/big/src/pages/85/Child.svelte +++ /dev/null @@ -1,20 +0,0 @@ - - -
-

Child 85

- -

I have kids too:

- - - - -
- - diff --git a/packages/playground/big/src/pages/85/GrandChild.svelte b/packages/playground/big/src/pages/85/GrandChild.svelte deleted file mode 100644 index c716c443e..000000000 --- a/packages/playground/big/src/pages/85/GrandChild.svelte +++ /dev/null @@ -1,9 +0,0 @@ -

GrandChild 85

- -

I am the child of Child.

- - diff --git a/packages/playground/big/src/pages/85/OtherChild.svelte b/packages/playground/big/src/pages/85/OtherChild.svelte deleted file mode 100644 index 2ea1d82f4..000000000 --- a/packages/playground/big/src/pages/85/OtherChild.svelte +++ /dev/null @@ -1,11 +0,0 @@ -
-

Other Child 85

- -

I am the other child.

-
- - diff --git a/packages/playground/big/src/pages/85/OtherGrandChild.svelte b/packages/playground/big/src/pages/85/OtherGrandChild.svelte deleted file mode 100644 index e2fabf1e5..000000000 --- a/packages/playground/big/src/pages/85/OtherGrandChild.svelte +++ /dev/null @@ -1,9 +0,0 @@ -

Other GrandChild 85

- -

I am the child of Child.

- - diff --git a/packages/playground/big/src/pages/85/index.svelte b/packages/playground/big/src/pages/85/index.svelte deleted file mode 100644 index 8edb05444..000000000 --- a/packages/playground/big/src/pages/85/index.svelte +++ /dev/null @@ -1,29 +0,0 @@ - - -

Page 85

- -

I am page 01.

- -

I have some children:

- -
- - -
- - diff --git a/packages/playground/big/src/pages/86/Child.svelte b/packages/playground/big/src/pages/86/Child.svelte deleted file mode 100644 index 40038bc25..000000000 --- a/packages/playground/big/src/pages/86/Child.svelte +++ /dev/null @@ -1,20 +0,0 @@ - - -
-

Child 86

- -

I have kids too:

- - - - -
- - diff --git a/packages/playground/big/src/pages/86/GrandChild.svelte b/packages/playground/big/src/pages/86/GrandChild.svelte deleted file mode 100644 index bd5c6f529..000000000 --- a/packages/playground/big/src/pages/86/GrandChild.svelte +++ /dev/null @@ -1,9 +0,0 @@ -

GrandChild 86

- -

I am the child of Child.

- - diff --git a/packages/playground/big/src/pages/86/OtherChild.svelte b/packages/playground/big/src/pages/86/OtherChild.svelte deleted file mode 100644 index 3b2f012a7..000000000 --- a/packages/playground/big/src/pages/86/OtherChild.svelte +++ /dev/null @@ -1,11 +0,0 @@ -
-

Other Child 86

- -

I am the other child.

-
- - diff --git a/packages/playground/big/src/pages/86/OtherGrandChild.svelte b/packages/playground/big/src/pages/86/OtherGrandChild.svelte deleted file mode 100644 index f5a007abb..000000000 --- a/packages/playground/big/src/pages/86/OtherGrandChild.svelte +++ /dev/null @@ -1,9 +0,0 @@ -

Other GrandChild 86

- -

I am the child of Child.

- - diff --git a/packages/playground/big/src/pages/86/index.svelte b/packages/playground/big/src/pages/86/index.svelte deleted file mode 100644 index a22f3cadf..000000000 --- a/packages/playground/big/src/pages/86/index.svelte +++ /dev/null @@ -1,29 +0,0 @@ - - -

Page 86

- -

I am page 01.

- -

I have some children:

- -
- - -
- - diff --git a/packages/playground/big/src/pages/87/Child.svelte b/packages/playground/big/src/pages/87/Child.svelte deleted file mode 100644 index 08fa94cc7..000000000 --- a/packages/playground/big/src/pages/87/Child.svelte +++ /dev/null @@ -1,20 +0,0 @@ - - -
-

Child 87

- -

I have kids too:

- - - - -
- - diff --git a/packages/playground/big/src/pages/87/GrandChild.svelte b/packages/playground/big/src/pages/87/GrandChild.svelte deleted file mode 100644 index 6404da546..000000000 --- a/packages/playground/big/src/pages/87/GrandChild.svelte +++ /dev/null @@ -1,9 +0,0 @@ -

GrandChild 87

- -

I am the child of Child.

- - diff --git a/packages/playground/big/src/pages/87/OtherChild.svelte b/packages/playground/big/src/pages/87/OtherChild.svelte deleted file mode 100644 index e3309449a..000000000 --- a/packages/playground/big/src/pages/87/OtherChild.svelte +++ /dev/null @@ -1,11 +0,0 @@ -
-

Other Child 87

- -

I am the other child.

-
- - diff --git a/packages/playground/big/src/pages/87/OtherGrandChild.svelte b/packages/playground/big/src/pages/87/OtherGrandChild.svelte deleted file mode 100644 index 2591d88e8..000000000 --- a/packages/playground/big/src/pages/87/OtherGrandChild.svelte +++ /dev/null @@ -1,9 +0,0 @@ -

Other GrandChild 87

- -

I am the child of Child.

- - diff --git a/packages/playground/big/src/pages/87/index.svelte b/packages/playground/big/src/pages/87/index.svelte deleted file mode 100644 index 0dcfa2846..000000000 --- a/packages/playground/big/src/pages/87/index.svelte +++ /dev/null @@ -1,29 +0,0 @@ - - -

Page 87

- -

I am page 01.

- -

I have some children:

- -
- - -
- - diff --git a/packages/playground/big/src/pages/88/Child.svelte b/packages/playground/big/src/pages/88/Child.svelte deleted file mode 100644 index abae62f4b..000000000 --- a/packages/playground/big/src/pages/88/Child.svelte +++ /dev/null @@ -1,20 +0,0 @@ - - -
-

Child 88

- -

I have kids too:

- - - - -
- - diff --git a/packages/playground/big/src/pages/88/GrandChild.svelte b/packages/playground/big/src/pages/88/GrandChild.svelte deleted file mode 100644 index 2dad89b29..000000000 --- a/packages/playground/big/src/pages/88/GrandChild.svelte +++ /dev/null @@ -1,9 +0,0 @@ -

GrandChild 88

- -

I am the child of Child.

- - diff --git a/packages/playground/big/src/pages/88/OtherChild.svelte b/packages/playground/big/src/pages/88/OtherChild.svelte deleted file mode 100644 index 677e9bcf5..000000000 --- a/packages/playground/big/src/pages/88/OtherChild.svelte +++ /dev/null @@ -1,11 +0,0 @@ -
-

Other Child 88

- -

I am the other child.

-
- - diff --git a/packages/playground/big/src/pages/88/OtherGrandChild.svelte b/packages/playground/big/src/pages/88/OtherGrandChild.svelte deleted file mode 100644 index 429452da4..000000000 --- a/packages/playground/big/src/pages/88/OtherGrandChild.svelte +++ /dev/null @@ -1,9 +0,0 @@ -

Other GrandChild 88

- -

I am the child of Child.

- - diff --git a/packages/playground/big/src/pages/88/index.svelte b/packages/playground/big/src/pages/88/index.svelte deleted file mode 100644 index 11d9b9b8f..000000000 --- a/packages/playground/big/src/pages/88/index.svelte +++ /dev/null @@ -1,29 +0,0 @@ - - -

Page 88

- -

I am page 01.

- -

I have some children:

- -
- - -
- - diff --git a/packages/playground/big/src/pages/89/Child.svelte b/packages/playground/big/src/pages/89/Child.svelte deleted file mode 100644 index 8f13c9798..000000000 --- a/packages/playground/big/src/pages/89/Child.svelte +++ /dev/null @@ -1,20 +0,0 @@ - - -
-

Child 89

- -

I have kids too:

- - - - -
- - diff --git a/packages/playground/big/src/pages/89/GrandChild.svelte b/packages/playground/big/src/pages/89/GrandChild.svelte deleted file mode 100644 index eec353052..000000000 --- a/packages/playground/big/src/pages/89/GrandChild.svelte +++ /dev/null @@ -1,9 +0,0 @@ -

GrandChild 89

- -

I am the child of Child.

- - diff --git a/packages/playground/big/src/pages/89/OtherChild.svelte b/packages/playground/big/src/pages/89/OtherChild.svelte deleted file mode 100644 index de405c13c..000000000 --- a/packages/playground/big/src/pages/89/OtherChild.svelte +++ /dev/null @@ -1,11 +0,0 @@ -
-

Other Child 89

- -

I am the other child.

-
- - diff --git a/packages/playground/big/src/pages/89/OtherGrandChild.svelte b/packages/playground/big/src/pages/89/OtherGrandChild.svelte deleted file mode 100644 index 8908aee97..000000000 --- a/packages/playground/big/src/pages/89/OtherGrandChild.svelte +++ /dev/null @@ -1,9 +0,0 @@ -

Other GrandChild 89

- -

I am the child of Child.

- - diff --git a/packages/playground/big/src/pages/89/index.svelte b/packages/playground/big/src/pages/89/index.svelte deleted file mode 100644 index fc3e6ca5e..000000000 --- a/packages/playground/big/src/pages/89/index.svelte +++ /dev/null @@ -1,29 +0,0 @@ - - -

Page 89

- -

I am page 01.

- -

I have some children:

- -
- - -
- - diff --git a/packages/playground/big/src/pages/90/Child.svelte b/packages/playground/big/src/pages/90/Child.svelte deleted file mode 100644 index 7d4b8c0c2..000000000 --- a/packages/playground/big/src/pages/90/Child.svelte +++ /dev/null @@ -1,20 +0,0 @@ - - -
-

Child 90

- -

I have kids too:

- - - - -
- - diff --git a/packages/playground/big/src/pages/90/GrandChild.svelte b/packages/playground/big/src/pages/90/GrandChild.svelte deleted file mode 100644 index 5b3f730b9..000000000 --- a/packages/playground/big/src/pages/90/GrandChild.svelte +++ /dev/null @@ -1,9 +0,0 @@ -

GrandChild 90

- -

I am the child of Child.

- - diff --git a/packages/playground/big/src/pages/90/OtherChild.svelte b/packages/playground/big/src/pages/90/OtherChild.svelte deleted file mode 100644 index accaffda6..000000000 --- a/packages/playground/big/src/pages/90/OtherChild.svelte +++ /dev/null @@ -1,11 +0,0 @@ -
-

Other Child 90

- -

I am the other child.

-
- - diff --git a/packages/playground/big/src/pages/90/OtherGrandChild.svelte b/packages/playground/big/src/pages/90/OtherGrandChild.svelte deleted file mode 100644 index 10f1c6a4e..000000000 --- a/packages/playground/big/src/pages/90/OtherGrandChild.svelte +++ /dev/null @@ -1,9 +0,0 @@ -

Other GrandChild 90

- -

I am the child of Child.

- - diff --git a/packages/playground/big/src/pages/90/index.svelte b/packages/playground/big/src/pages/90/index.svelte deleted file mode 100644 index df14f7ac9..000000000 --- a/packages/playground/big/src/pages/90/index.svelte +++ /dev/null @@ -1,29 +0,0 @@ - - -

Page 90

- -

I am page 01.

- -

I have some children:

- -
- - -
- - diff --git a/packages/playground/big/src/pages/91/Child.svelte b/packages/playground/big/src/pages/91/Child.svelte deleted file mode 100644 index 0ea361af6..000000000 --- a/packages/playground/big/src/pages/91/Child.svelte +++ /dev/null @@ -1,20 +0,0 @@ - - -
-

Child 91

- -

I have kids too:

- - - - -
- - diff --git a/packages/playground/big/src/pages/91/GrandChild.svelte b/packages/playground/big/src/pages/91/GrandChild.svelte deleted file mode 100644 index 8d01f9cb8..000000000 --- a/packages/playground/big/src/pages/91/GrandChild.svelte +++ /dev/null @@ -1,9 +0,0 @@ -

GrandChild 91

- -

I am the child of Child.

- - diff --git a/packages/playground/big/src/pages/91/OtherChild.svelte b/packages/playground/big/src/pages/91/OtherChild.svelte deleted file mode 100644 index 7e0ef7799..000000000 --- a/packages/playground/big/src/pages/91/OtherChild.svelte +++ /dev/null @@ -1,11 +0,0 @@ -
-

Other Child 91

- -

I am the other child.

-
- - diff --git a/packages/playground/big/src/pages/91/OtherGrandChild.svelte b/packages/playground/big/src/pages/91/OtherGrandChild.svelte deleted file mode 100644 index af4f1bb58..000000000 --- a/packages/playground/big/src/pages/91/OtherGrandChild.svelte +++ /dev/null @@ -1,9 +0,0 @@ -

Other GrandChild 91

- -

I am the child of Child.

- - diff --git a/packages/playground/big/src/pages/91/index.svelte b/packages/playground/big/src/pages/91/index.svelte deleted file mode 100644 index 74521db8e..000000000 --- a/packages/playground/big/src/pages/91/index.svelte +++ /dev/null @@ -1,29 +0,0 @@ - - -

Page 91

- -

I am page 01.

- -

I have some children:

- -
- - -
- - diff --git a/packages/playground/big/src/pages/92/Child.svelte b/packages/playground/big/src/pages/92/Child.svelte deleted file mode 100644 index 7161f4813..000000000 --- a/packages/playground/big/src/pages/92/Child.svelte +++ /dev/null @@ -1,20 +0,0 @@ - - -
-

Child 92

- -

I have kids too:

- - - - -
- - diff --git a/packages/playground/big/src/pages/92/GrandChild.svelte b/packages/playground/big/src/pages/92/GrandChild.svelte deleted file mode 100644 index 90512ec39..000000000 --- a/packages/playground/big/src/pages/92/GrandChild.svelte +++ /dev/null @@ -1,9 +0,0 @@ -

GrandChild 92

- -

I am the child of Child.

- - diff --git a/packages/playground/big/src/pages/92/OtherChild.svelte b/packages/playground/big/src/pages/92/OtherChild.svelte deleted file mode 100644 index 0a7048cff..000000000 --- a/packages/playground/big/src/pages/92/OtherChild.svelte +++ /dev/null @@ -1,11 +0,0 @@ -
-

Other Child 92

- -

I am the other child.

-
- - diff --git a/packages/playground/big/src/pages/92/OtherGrandChild.svelte b/packages/playground/big/src/pages/92/OtherGrandChild.svelte deleted file mode 100644 index 893358b0f..000000000 --- a/packages/playground/big/src/pages/92/OtherGrandChild.svelte +++ /dev/null @@ -1,9 +0,0 @@ -

Other GrandChild 92

- -

I am the child of Child.

- - diff --git a/packages/playground/big/src/pages/92/index.svelte b/packages/playground/big/src/pages/92/index.svelte deleted file mode 100644 index cab60f766..000000000 --- a/packages/playground/big/src/pages/92/index.svelte +++ /dev/null @@ -1,29 +0,0 @@ - - -

Page 92

- -

I am page 01.

- -

I have some children:

- -
- - -
- - diff --git a/packages/playground/big/src/pages/93/Child.svelte b/packages/playground/big/src/pages/93/Child.svelte deleted file mode 100644 index 0c38daf15..000000000 --- a/packages/playground/big/src/pages/93/Child.svelte +++ /dev/null @@ -1,20 +0,0 @@ - - -
-

Child 93

- -

I have kids too:

- - - - -
- - diff --git a/packages/playground/big/src/pages/93/GrandChild.svelte b/packages/playground/big/src/pages/93/GrandChild.svelte deleted file mode 100644 index 55f4868e6..000000000 --- a/packages/playground/big/src/pages/93/GrandChild.svelte +++ /dev/null @@ -1,9 +0,0 @@ -

GrandChild 93

- -

I am the child of Child.

- - diff --git a/packages/playground/big/src/pages/93/OtherChild.svelte b/packages/playground/big/src/pages/93/OtherChild.svelte deleted file mode 100644 index 3eae659ea..000000000 --- a/packages/playground/big/src/pages/93/OtherChild.svelte +++ /dev/null @@ -1,11 +0,0 @@ -
-

Other Child 93

- -

I am the other child.

-
- - diff --git a/packages/playground/big/src/pages/93/OtherGrandChild.svelte b/packages/playground/big/src/pages/93/OtherGrandChild.svelte deleted file mode 100644 index 4d5e32753..000000000 --- a/packages/playground/big/src/pages/93/OtherGrandChild.svelte +++ /dev/null @@ -1,9 +0,0 @@ -

Other GrandChild 93

- -

I am the child of Child.

- - diff --git a/packages/playground/big/src/pages/93/index.svelte b/packages/playground/big/src/pages/93/index.svelte deleted file mode 100644 index 6963c2b23..000000000 --- a/packages/playground/big/src/pages/93/index.svelte +++ /dev/null @@ -1,29 +0,0 @@ - - -

Page 93

- -

I am page 01.

- -

I have some children:

- -
- - -
- - diff --git a/packages/playground/big/src/pages/94/Child.svelte b/packages/playground/big/src/pages/94/Child.svelte deleted file mode 100644 index b2e052b6a..000000000 --- a/packages/playground/big/src/pages/94/Child.svelte +++ /dev/null @@ -1,20 +0,0 @@ - - -
-

Child 94

- -

I have kids too:

- - - - -
- - diff --git a/packages/playground/big/src/pages/94/GrandChild.svelte b/packages/playground/big/src/pages/94/GrandChild.svelte deleted file mode 100644 index b859c37c3..000000000 --- a/packages/playground/big/src/pages/94/GrandChild.svelte +++ /dev/null @@ -1,9 +0,0 @@ -

GrandChild 94

- -

I am the child of Child.

- - diff --git a/packages/playground/big/src/pages/94/OtherChild.svelte b/packages/playground/big/src/pages/94/OtherChild.svelte deleted file mode 100644 index 6858572a4..000000000 --- a/packages/playground/big/src/pages/94/OtherChild.svelte +++ /dev/null @@ -1,11 +0,0 @@ -
-

Other Child 94

- -

I am the other child.

-
- - diff --git a/packages/playground/big/src/pages/94/OtherGrandChild.svelte b/packages/playground/big/src/pages/94/OtherGrandChild.svelte deleted file mode 100644 index 0ee31f3d8..000000000 --- a/packages/playground/big/src/pages/94/OtherGrandChild.svelte +++ /dev/null @@ -1,9 +0,0 @@ -

Other GrandChild 94

- -

I am the child of Child.

- - diff --git a/packages/playground/big/src/pages/94/index.svelte b/packages/playground/big/src/pages/94/index.svelte deleted file mode 100644 index 290550d74..000000000 --- a/packages/playground/big/src/pages/94/index.svelte +++ /dev/null @@ -1,29 +0,0 @@ - - -

Page 94

- -

I am page 01.

- -

I have some children:

- -
- - -
- - diff --git a/packages/playground/big/src/pages/95/Child.svelte b/packages/playground/big/src/pages/95/Child.svelte deleted file mode 100644 index 0ff211093..000000000 --- a/packages/playground/big/src/pages/95/Child.svelte +++ /dev/null @@ -1,20 +0,0 @@ - - -
-

Child 95

- -

I have kids too:

- - - - -
- - diff --git a/packages/playground/big/src/pages/95/GrandChild.svelte b/packages/playground/big/src/pages/95/GrandChild.svelte deleted file mode 100644 index 9ccb9be1a..000000000 --- a/packages/playground/big/src/pages/95/GrandChild.svelte +++ /dev/null @@ -1,9 +0,0 @@ -

GrandChild 95

- -

I am the child of Child.

- - diff --git a/packages/playground/big/src/pages/95/OtherChild.svelte b/packages/playground/big/src/pages/95/OtherChild.svelte deleted file mode 100644 index 2caa26382..000000000 --- a/packages/playground/big/src/pages/95/OtherChild.svelte +++ /dev/null @@ -1,11 +0,0 @@ -
-

Other Child 95

- -

I am the other child.

-
- - diff --git a/packages/playground/big/src/pages/95/OtherGrandChild.svelte b/packages/playground/big/src/pages/95/OtherGrandChild.svelte deleted file mode 100644 index 9645b6864..000000000 --- a/packages/playground/big/src/pages/95/OtherGrandChild.svelte +++ /dev/null @@ -1,9 +0,0 @@ -

Other GrandChild 95

- -

I am the child of Child.

- - diff --git a/packages/playground/big/src/pages/95/index.svelte b/packages/playground/big/src/pages/95/index.svelte deleted file mode 100644 index f6ba0dc55..000000000 --- a/packages/playground/big/src/pages/95/index.svelte +++ /dev/null @@ -1,29 +0,0 @@ - - -

Page 95

- -

I am page 01.

- -

I have some children:

- -
- - -
- - diff --git a/packages/playground/big/src/pages/96/Child.svelte b/packages/playground/big/src/pages/96/Child.svelte deleted file mode 100644 index 4b92fc870..000000000 --- a/packages/playground/big/src/pages/96/Child.svelte +++ /dev/null @@ -1,20 +0,0 @@ - - -
-

Child 96

- -

I have kids too:

- - - - -
- - diff --git a/packages/playground/big/src/pages/96/GrandChild.svelte b/packages/playground/big/src/pages/96/GrandChild.svelte deleted file mode 100644 index cdcc9b3c3..000000000 --- a/packages/playground/big/src/pages/96/GrandChild.svelte +++ /dev/null @@ -1,9 +0,0 @@ -

GrandChild 96

- -

I am the child of Child.

- - diff --git a/packages/playground/big/src/pages/96/OtherChild.svelte b/packages/playground/big/src/pages/96/OtherChild.svelte deleted file mode 100644 index eb03d19a8..000000000 --- a/packages/playground/big/src/pages/96/OtherChild.svelte +++ /dev/null @@ -1,11 +0,0 @@ -
-

Other Child 96

- -

I am the other child.

-
- - diff --git a/packages/playground/big/src/pages/96/OtherGrandChild.svelte b/packages/playground/big/src/pages/96/OtherGrandChild.svelte deleted file mode 100644 index c13c057d0..000000000 --- a/packages/playground/big/src/pages/96/OtherGrandChild.svelte +++ /dev/null @@ -1,9 +0,0 @@ -

Other GrandChild 96

- -

I am the child of Child.

- - diff --git a/packages/playground/big/src/pages/96/index.svelte b/packages/playground/big/src/pages/96/index.svelte deleted file mode 100644 index 6ff1f40d7..000000000 --- a/packages/playground/big/src/pages/96/index.svelte +++ /dev/null @@ -1,29 +0,0 @@ - - -

Page 96

- -

I am page 01.

- -

I have some children:

- -
- - -
- - diff --git a/packages/playground/big/src/pages/97/Child.svelte b/packages/playground/big/src/pages/97/Child.svelte deleted file mode 100644 index d02169ee3..000000000 --- a/packages/playground/big/src/pages/97/Child.svelte +++ /dev/null @@ -1,20 +0,0 @@ - - -
-

Child 97

- -

I have kids too:

- - - - -
- - diff --git a/packages/playground/big/src/pages/97/GrandChild.svelte b/packages/playground/big/src/pages/97/GrandChild.svelte deleted file mode 100644 index aa5615719..000000000 --- a/packages/playground/big/src/pages/97/GrandChild.svelte +++ /dev/null @@ -1,9 +0,0 @@ -

GrandChild 97

- -

I am the child of Child.

- - diff --git a/packages/playground/big/src/pages/97/OtherChild.svelte b/packages/playground/big/src/pages/97/OtherChild.svelte deleted file mode 100644 index 4f48a7af8..000000000 --- a/packages/playground/big/src/pages/97/OtherChild.svelte +++ /dev/null @@ -1,11 +0,0 @@ -
-

Other Child 97

- -

I am the other child.

-
- - diff --git a/packages/playground/big/src/pages/97/OtherGrandChild.svelte b/packages/playground/big/src/pages/97/OtherGrandChild.svelte deleted file mode 100644 index a84d1d1dd..000000000 --- a/packages/playground/big/src/pages/97/OtherGrandChild.svelte +++ /dev/null @@ -1,9 +0,0 @@ -

Other GrandChild 97

- -

I am the child of Child.

- - diff --git a/packages/playground/big/src/pages/97/index.svelte b/packages/playground/big/src/pages/97/index.svelte deleted file mode 100644 index 37127ca27..000000000 --- a/packages/playground/big/src/pages/97/index.svelte +++ /dev/null @@ -1,29 +0,0 @@ - - -

Page 97

- -

I am page 01.

- -

I have some children:

- -
- - -
- - diff --git a/packages/playground/big/src/pages/98/Child.svelte b/packages/playground/big/src/pages/98/Child.svelte deleted file mode 100644 index 00fee2943..000000000 --- a/packages/playground/big/src/pages/98/Child.svelte +++ /dev/null @@ -1,20 +0,0 @@ - - -
-

Child 98

- -

I have kids too:

- - - - -
- - diff --git a/packages/playground/big/src/pages/98/GrandChild.svelte b/packages/playground/big/src/pages/98/GrandChild.svelte deleted file mode 100644 index 5f8d37392..000000000 --- a/packages/playground/big/src/pages/98/GrandChild.svelte +++ /dev/null @@ -1,9 +0,0 @@ -

GrandChild 98

- -

I am the child of Child.

- - diff --git a/packages/playground/big/src/pages/98/OtherChild.svelte b/packages/playground/big/src/pages/98/OtherChild.svelte deleted file mode 100644 index 86ed32f63..000000000 --- a/packages/playground/big/src/pages/98/OtherChild.svelte +++ /dev/null @@ -1,11 +0,0 @@ -
-

Other Child 98

- -

I am the other child.

-
- - diff --git a/packages/playground/big/src/pages/98/OtherGrandChild.svelte b/packages/playground/big/src/pages/98/OtherGrandChild.svelte deleted file mode 100644 index 3edde2fc2..000000000 --- a/packages/playground/big/src/pages/98/OtherGrandChild.svelte +++ /dev/null @@ -1,9 +0,0 @@ -

Other GrandChild 98

- -

I am the child of Child.

- - diff --git a/packages/playground/big/src/pages/98/index.svelte b/packages/playground/big/src/pages/98/index.svelte deleted file mode 100644 index e1733ddd1..000000000 --- a/packages/playground/big/src/pages/98/index.svelte +++ /dev/null @@ -1,29 +0,0 @@ - - -

Page 98

- -

I am page 01.

- -

I have some children:

- -
- - -
- - diff --git a/packages/playground/big/src/pages/99/Child.svelte b/packages/playground/big/src/pages/99/Child.svelte deleted file mode 100644 index 7f6d6a840..000000000 --- a/packages/playground/big/src/pages/99/Child.svelte +++ /dev/null @@ -1,20 +0,0 @@ - - -
-

Child 99

- -

I have kids too:

- - - - -
- - diff --git a/packages/playground/big/src/pages/99/GrandChild.svelte b/packages/playground/big/src/pages/99/GrandChild.svelte deleted file mode 100644 index 3c9644243..000000000 --- a/packages/playground/big/src/pages/99/GrandChild.svelte +++ /dev/null @@ -1,9 +0,0 @@ -

GrandChild 99

- -

I am the child of Child.

- - diff --git a/packages/playground/big/src/pages/99/OtherChild.svelte b/packages/playground/big/src/pages/99/OtherChild.svelte deleted file mode 100644 index b92237c75..000000000 --- a/packages/playground/big/src/pages/99/OtherChild.svelte +++ /dev/null @@ -1,11 +0,0 @@ -
-

Other Child 99

- -

I am the other child.

-
- - diff --git a/packages/playground/big/src/pages/99/OtherGrandChild.svelte b/packages/playground/big/src/pages/99/OtherGrandChild.svelte deleted file mode 100644 index 7cc00ab5c..000000000 --- a/packages/playground/big/src/pages/99/OtherGrandChild.svelte +++ /dev/null @@ -1,9 +0,0 @@ -

Other GrandChild 99

- -

I am the child of Child.

- - diff --git a/packages/playground/big/src/pages/99/index.svelte b/packages/playground/big/src/pages/99/index.svelte deleted file mode 100644 index 0574d0350..000000000 --- a/packages/playground/big/src/pages/99/index.svelte +++ /dev/null @@ -1,29 +0,0 @@ - - -

Page 99

- -

I am page 01.

- -

I have some children:

- -
- - -
- - diff --git a/packages/playground/big/vite.config.js b/packages/playground/big/vite.config.js deleted file mode 100644 index 1823770c4..000000000 --- a/packages/playground/big/vite.config.js +++ /dev/null @@ -1,6 +0,0 @@ -import { svelte } from '@sveltejs/vite-plugin-svelte'; -import { defineConfig } from 'vite'; - -export default defineConfig({ - plugins: [svelte()] -}); diff --git a/packages/playground/kit-demo-app/.gitignore b/packages/playground/kit-demo-app/.gitignore deleted file mode 100644 index 8f6c617ec..000000000 --- a/packages/playground/kit-demo-app/.gitignore +++ /dev/null @@ -1,12 +0,0 @@ -.DS_Store -node_modules -/build -/.svelte-kit -/package -.env -.env.* -!.env.example -.vercel -.output -vite.config.js.timestamp-* -vite.config.ts.timestamp-* diff --git a/packages/playground/kit-demo-app/README.md b/packages/playground/kit-demo-app/README.md deleted file mode 100644 index 5ce676612..000000000 --- a/packages/playground/kit-demo-app/README.md +++ /dev/null @@ -1,38 +0,0 @@ -# create-svelte - -Everything you need to build a Svelte project, powered by [`create-svelte`](https://github.com/sveltejs/kit/tree/main/packages/create-svelte). - -## Creating a project - -If you're seeing this, you've probably already done this step. Congrats! - -```bash -# create a new project in the current directory -npm create svelte@latest - -# create a new project in my-app -npm create svelte@latest my-app -``` - -## Developing - -Once you've created a project and installed dependencies with `npm install` (or `pnpm install` or `yarn`), start a development server: - -```bash -npm run dev - -# or start the server and open the app in a new browser tab -npm run dev -- --open -``` - -## Building - -To create a production version of your app: - -```bash -npm run build -``` - -You can preview the production build with `npm run preview`. - -> To deploy your app, you may need to install an [adapter](https://kit.svelte.dev/docs/adapters) for your target environment. diff --git a/packages/playground/kit-demo-app/jsconfig.json b/packages/playground/kit-demo-app/jsconfig.json deleted file mode 100644 index fc93cbd94..000000000 --- a/packages/playground/kit-demo-app/jsconfig.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "extends": "./.svelte-kit/tsconfig.json", - "compilerOptions": { - "allowJs": true, - "checkJs": true, - "esModuleInterop": true, - "forceConsistentCasingInFileNames": true, - "resolveJsonModule": true, - "skipLibCheck": true, - "sourceMap": true, - "strict": true, - "moduleResolution": "bundler" - } - // Path aliases are handled by https://kit.svelte.dev/docs/configuration#alias - // except $lib which is handled by https://kit.svelte.dev/docs/configuration#files - // - // If you want to overwrite includes/excludes, make sure to copy over the relevant includes/excludes - // from the referenced tsconfig.json - TypeScript does not merge them in -} diff --git a/packages/playground/kit-demo-app/package.json b/packages/playground/kit-demo-app/package.json deleted file mode 100644 index 82e13fc85..000000000 --- a/packages/playground/kit-demo-app/package.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "name": "playground-kit-demo-app", - "version": "0.0.0", - "private": true, - "scripts": { - "dev": "vite dev", - "build": "vite build", - "preview": "vite preview", - "check": "svelte-kit sync && svelte-check --tsconfig ./jsconfig.json", - "check:watch": "svelte-kit sync && svelte-check --tsconfig ./jsconfig.json --watch" - }, - "devDependencies": { - "@fontsource/fira-mono": "^5.2.5", - "@neoconfetti/svelte": "^2.2.1", - "@sveltejs/adapter-auto": "^4.0.0", - "@sveltejs/kit": "^2.18.0", - "@sveltejs/vite-plugin-svelte": "workspace:^", - "svelte": "^5.22.2", - "svelte-check": "^4.1.4", - "typescript": "^5.8.2", - "vite": "^6.2.0" - }, - "type": "module" -} diff --git a/packages/playground/kit-demo-app/src/app.d.ts b/packages/playground/kit-demo-app/src/app.d.ts deleted file mode 100644 index 743f07b2e..000000000 --- a/packages/playground/kit-demo-app/src/app.d.ts +++ /dev/null @@ -1,13 +0,0 @@ -// See https://kit.svelte.dev/docs/types#app -// for information about these interfaces -declare global { - namespace App { - // interface Error {} - // interface Locals {} - // interface PageData {} - // interface PageState {} - // interface Platform {} - } -} - -export {}; diff --git a/packages/playground/kit-demo-app/src/app.html b/packages/playground/kit-demo-app/src/app.html deleted file mode 100644 index 77a5ff52c..000000000 --- a/packages/playground/kit-demo-app/src/app.html +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - %sveltekit.head% - - -
%sveltekit.body%
- - diff --git a/packages/playground/kit-demo-app/src/lib/images/github.svg b/packages/playground/kit-demo-app/src/lib/images/github.svg deleted file mode 100644 index bc5d249d3..000000000 --- a/packages/playground/kit-demo-app/src/lib/images/github.svg +++ /dev/null @@ -1,16 +0,0 @@ - - - - \ No newline at end of file diff --git a/packages/playground/kit-demo-app/src/lib/images/svelte-logo.svg b/packages/playground/kit-demo-app/src/lib/images/svelte-logo.svg deleted file mode 100644 index 49492a83c..000000000 --- a/packages/playground/kit-demo-app/src/lib/images/svelte-logo.svg +++ /dev/null @@ -1 +0,0 @@ -svelte-logo \ No newline at end of file diff --git a/packages/playground/kit-demo-app/src/routes/+layout.svelte b/packages/playground/kit-demo-app/src/routes/+layout.svelte deleted file mode 100644 index 9c7445f55..000000000 --- a/packages/playground/kit-demo-app/src/routes/+layout.svelte +++ /dev/null @@ -1,53 +0,0 @@ - - -
-
- -
- -
- - -
- - diff --git a/packages/playground/kit-demo-app/src/routes/+page.js b/packages/playground/kit-demo-app/src/routes/+page.js deleted file mode 100644 index a72419a63..000000000 --- a/packages/playground/kit-demo-app/src/routes/+page.js +++ /dev/null @@ -1,3 +0,0 @@ -// since there's no dynamic data here, we can prerender -// it so that it gets served as a static asset in production -export const prerender = true; diff --git a/packages/playground/kit-demo-app/src/routes/+page.svelte b/packages/playground/kit-demo-app/src/routes/+page.svelte deleted file mode 100644 index f1b325193..000000000 --- a/packages/playground/kit-demo-app/src/routes/+page.svelte +++ /dev/null @@ -1,34 +0,0 @@ - - - - Home - - - -
-

- Welcome to your new
SvelteKit app -

- -

- try editing src/routes/+page.svelte -

- - -
- - diff --git a/packages/playground/kit-demo-app/src/routes/Counter.svelte b/packages/playground/kit-demo-app/src/routes/Counter.svelte deleted file mode 100644 index 4ad18f935..000000000 --- a/packages/playground/kit-demo-app/src/routes/Counter.svelte +++ /dev/null @@ -1,106 +0,0 @@ - - -
- - -
-
- - {Math.floor($displayed_count)} -
-
- - -
- - diff --git a/packages/playground/kit-demo-app/src/routes/Header.svelte b/packages/playground/kit-demo-app/src/routes/Header.svelte deleted file mode 100644 index 7a0aa4ca9..000000000 --- a/packages/playground/kit-demo-app/src/routes/Header.svelte +++ /dev/null @@ -1,131 +0,0 @@ - - -
-
- - SvelteKit - -
- - - -
- - GitHub - -
-
- - diff --git a/packages/playground/kit-demo-app/src/routes/about/+page.js b/packages/playground/kit-demo-app/src/routes/about/+page.js deleted file mode 100644 index 0fc06ce1b..000000000 --- a/packages/playground/kit-demo-app/src/routes/about/+page.js +++ /dev/null @@ -1,10 +0,0 @@ -// eslint-disable-next-line n/no-missing-import -import { dev } from '$app/environment'; - -// we don't need any JS on this page, though we'll load -// it in dev so that we get hot module replacement -export const csr = dev; - -// since there's no dynamic data here, we can prerender -// it so that it gets served as a static asset in production -export const prerender = true; diff --git a/packages/playground/kit-demo-app/src/routes/about/+page.svelte b/packages/playground/kit-demo-app/src/routes/about/+page.svelte deleted file mode 100644 index 7f7946d23..000000000 --- a/packages/playground/kit-demo-app/src/routes/about/+page.svelte +++ /dev/null @@ -1,26 +0,0 @@ - - About - - - -
-

About this app

- -

- This is a SvelteKit app. You can make your own by typing the - following into your command line and following the prompts: -

- -
npm create svelte@latest
- -

- The page you're looking at is purely static HTML, with no client-side interactivity needed. - Because of that, we don't need to load any JavaScript. Try viewing the page's source, or opening - the devtools network panel and reloading. -

- -

- The Sverdle page illustrates SvelteKit's data loading and form handling. Try - using it with JavaScript disabled! -

-
diff --git a/packages/playground/kit-demo-app/src/routes/styles.css b/packages/playground/kit-demo-app/src/routes/styles.css deleted file mode 100644 index f62c2c7aa..000000000 --- a/packages/playground/kit-demo-app/src/routes/styles.css +++ /dev/null @@ -1,105 +0,0 @@ -@import '@fontsource/fira-mono'; - -:root { - --font-body: - Arial, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, - 'Open Sans', 'Helvetica Neue', sans-serif; - --font-mono: 'Fira Mono', monospace; - --color-bg-0: rgb(202, 216, 228); - --color-bg-1: hsl(209, 36%, 86%); - --color-bg-2: hsl(224, 44%, 95%); - --color-theme-1: #ff3e00; - --color-theme-2: #4075a6; - --color-text: rgba(0, 0, 0, 0.7); - --column-width: 42rem; - --column-margin-top: 4rem; - font-family: var(--font-body); - color: var(--color-text); -} - -body { - min-height: 100vh; - margin: 0; - background-attachment: fixed; - background-color: var(--color-bg-1); - background-size: 100vw 100vh; - background-image: - radial-gradient(50% 50% at 50% 50%, rgba(255, 255, 255, 0.75) 0%, rgba(255, 255, 255, 0) 100%), - linear-gradient(180deg, var(--color-bg-0) 0%, var(--color-bg-1) 15%, var(--color-bg-2) 50%); -} - -h1, -h2, -p { - font-weight: 400; -} - -p { - line-height: 1.5; -} - -a { - color: var(--color-theme-1); - text-decoration: none; -} - -a:hover { - text-decoration: underline; -} - -h1 { - font-size: 2rem; - text-align: center; -} - -h2 { - font-size: 1rem; -} - -pre { - font-size: 16px; - font-family: var(--font-mono); - background-color: rgba(255, 255, 255, 0.45); - border-radius: 3px; - box-shadow: 2px 2px 6px rgb(255 255 255 / 25%); - padding: 0.5em; - overflow-x: auto; - color: var(--color-text); -} - -.text-column { - display: flex; - max-width: 48rem; - flex: 0.6; - flex-direction: column; - justify-content: center; - margin: 0 auto; -} - -input, -button { - font-size: inherit; - font-family: inherit; -} - -button:focus:not(:focus-visible) { - outline: none; -} - -@media (min-width: 720px) { - h1 { - font-size: 2.4rem; - } -} - -.visually-hidden { - border: 0; - clip: rect(0 0 0 0); - height: auto; - margin: 0; - overflow: hidden; - padding: 0; - position: absolute; - width: 1px; - white-space: nowrap; -} diff --git a/packages/playground/kit-demo-app/src/routes/sverdle/+page.server.js b/packages/playground/kit-demo-app/src/routes/sverdle/+page.server.js deleted file mode 100644 index a2249e0c3..000000000 --- a/packages/playground/kit-demo-app/src/routes/sverdle/+page.server.js +++ /dev/null @@ -1,70 +0,0 @@ -import { fail } from '@sveltejs/kit'; -import { Game } from './game'; - -/** @satisfies {import('./$types').PageServerLoad} */ -export const load = ({ cookies }) => { - const game = new Game(cookies.get('sverdle')); - - return { - /** - * The player's guessed words so far - */ - guesses: game.guesses, - - /** - * An array of strings like '__x_c' corresponding to the guesses, where 'x' means - * an exact match, and 'c' means a close match (right letter, wrong place) - */ - answers: game.answers, - - /** - * The correct answer, revealed if the game is over - */ - answer: game.answers.length >= 6 ? game.answer : null - }; -}; - -/** @satisfies {import('./$types').Actions} */ -export const actions = { - /** - * Modify game state in reaction to a keypress. If client-side JavaScript - * is available, this will happen in the browser instead of here - */ - update: async ({ request, cookies }) => { - const game = new Game(cookies.get('sverdle')); - - const data = await request.formData(); - const key = data.get('key'); - - const i = game.answers.length; - - if (key === 'backspace') { - game.guesses[i] = game.guesses[i].slice(0, -1); - } else { - game.guesses[i] += key; - } - - cookies.set('sverdle', game.toString(), { path: '/' }); - }, - - /** - * Modify game state in reaction to a guessed word. This logic always runs on - * the server, so that people can't cheat by peeking at the JavaScript - */ - enter: async ({ request, cookies }) => { - const game = new Game(cookies.get('sverdle')); - - const data = await request.formData(); - const guess = /** @type {string[]} */ (data.getAll('guess')); - - if (!game.enter(guess)) { - return fail(400, { badGuess: true }); - } - - cookies.set('sverdle', game.toString(), { path: '/' }); - }, - - restart: async ({ cookies }) => { - cookies.delete('sverdle', { path: '/' }); - } -}; diff --git a/packages/playground/kit-demo-app/src/routes/sverdle/+page.svelte b/packages/playground/kit-demo-app/src/routes/sverdle/+page.svelte deleted file mode 100644 index d02da613c..000000000 --- a/packages/playground/kit-demo-app/src/routes/sverdle/+page.svelte +++ /dev/null @@ -1,418 +0,0 @@ - - - - - - Sverdle - - - -

Sverdle

- -
{ - // prevent default callback from resetting the form - return ({ update }) => { - update({ reset: false }); - }; - }} -> - How to play - -
- {#each Array.from(Array(6).keys()) as row (row)} - {@const current = row === i} -

Row {row + 1}

-
- {#each Array.from(Array(5).keys()) as column (column)} - {@const guess = current ? currentGuess : data.guesses[row]} - {@const answer = data.answers[row]?.[column]} - {@const value = guess?.[column] ?? ''} - {@const selected = current && column === guess.length} - {@const exact = answer === 'x'} - {@const close = answer === 'c'} - {@const missing = answer === '_'} -
- {value} - - {#if exact} - (correct) - {:else if close} - (present) - {:else if missing} - (absent) - {:else} - empty - {/if} - - -
- {/each} -
- {/each} -
- -
- {#if won || data.answers.length >= 6} - {#if !won && data.answer} -

the answer was "{data.answer}"

- {/if} - - {:else} -
- - - - - {#each ['qwertyuiop', 'asdfghjkl', 'zxcvbnm'] as row (row)} -
- {#each row as letter, index (index)} - - {/each} -
- {/each} -
- {/if} -
-
- -{#if won} -
-{/if} - - diff --git a/packages/playground/kit-demo-app/src/routes/sverdle/game.js b/packages/playground/kit-demo-app/src/routes/sverdle/game.js deleted file mode 100644 index 6e92857a4..000000000 --- a/packages/playground/kit-demo-app/src/routes/sverdle/game.js +++ /dev/null @@ -1,72 +0,0 @@ -import { words, allowed } from './words.server'; - -export class Game { - /** - * Create a game object from the player's cookie, or initialise a new game - * @param {string | undefined} serialized - */ - constructor(serialized = undefined) { - if (serialized) { - const [index, guesses, answers] = serialized.split('-'); - - this.index = +index; - this.guesses = guesses ? guesses.split(' ') : []; - this.answers = answers ? answers.split(' ') : []; - } else { - this.index = Math.floor(Math.random() * words.length); - this.guesses = ['', '', '', '', '', '']; - this.answers = /** @type {string[]} */ ([]); - } - - this.answer = words[this.index]; - } - - /** - * Update game state based on a guess of a five-letter word. Returns - * true if the guess was valid, false otherwise - * @param {string[]} letters - */ - enter(letters) { - const word = letters.join(''); - const valid = allowed.has(word); - - if (!valid) return false; - - this.guesses[this.answers.length] = word; - - const available = Array.from(this.answer); - const answer = Array(5).fill('_'); - - // first, find exact matches - for (let i = 0; i < 5; i += 1) { - if (letters[i] === available[i]) { - answer[i] = 'x'; - available[i] = ' '; - } - } - - // then find close matches (this has to happen - // in a second step, otherwise an early close - // match can prevent a later exact match) - for (let i = 0; i < 5; i += 1) { - if (answer[i] === '_') { - const index = available.indexOf(letters[i]); - if (index !== -1) { - answer[i] = 'c'; - available[index] = ' '; - } - } - } - - this.answers.push(answer.join('')); - - return true; - } - - /** - * Serialize game state so it can be set as a cookie - */ - toString() { - return `${this.index}-${this.guesses.join(' ')}-${this.answers.join(' ')}`; - } -} diff --git a/packages/playground/kit-demo-app/src/routes/sverdle/how-to-play/+page.js b/packages/playground/kit-demo-app/src/routes/sverdle/how-to-play/+page.js deleted file mode 100644 index 0fc06ce1b..000000000 --- a/packages/playground/kit-demo-app/src/routes/sverdle/how-to-play/+page.js +++ /dev/null @@ -1,10 +0,0 @@ -// eslint-disable-next-line n/no-missing-import -import { dev } from '$app/environment'; - -// we don't need any JS on this page, though we'll load -// it in dev so that we get hot module replacement -export const csr = dev; - -// since there's no dynamic data here, we can prerender -// it so that it gets served as a static asset in production -export const prerender = true; diff --git a/packages/playground/kit-demo-app/src/routes/sverdle/how-to-play/+page.svelte b/packages/playground/kit-demo-app/src/routes/sverdle/how-to-play/+page.svelte deleted file mode 100644 index e8e2cec31..000000000 --- a/packages/playground/kit-demo-app/src/routes/sverdle/how-to-play/+page.svelte +++ /dev/null @@ -1,95 +0,0 @@ - - How to play Sverdle - - - -
-

How to play Sverdle

- -

- Sverdle is a clone of Wordle, the - word guessing game. To play, enter a five-letter English word. For example: -

- -
- r - i - t - z - y -
- -

- The y is in the right place. r and - t - are the right letters, but in the wrong place. The other letters are wrong, and can be discarded. - Let's make another guess: -

- -
- p - a - r - t - y -
- -

This time we guessed right! You have six guesses to get the word.

- -

- Unlike the original Wordle, Sverdle runs on the server instead of in the browser, making it - impossible to cheat. It uses <form> and cookies to submit data, meaning you can - even play with JavaScript disabled! -

-
- - diff --git a/packages/playground/kit-demo-app/src/routes/sverdle/reduced-motion.js b/packages/playground/kit-demo-app/src/routes/sverdle/reduced-motion.js deleted file mode 100644 index 12e1acfb4..000000000 --- a/packages/playground/kit-demo-app/src/routes/sverdle/reduced-motion.js +++ /dev/null @@ -1,27 +0,0 @@ -import { readable } from 'svelte/store'; -// eslint-disable-next-line n/no-missing-import -import { browser } from '$app/environment'; - -const reduced_motion_query = '(prefers-reduced-motion: reduce)'; - -const get_initial_motion_preference = () => { - if (!browser) return false; - return window.matchMedia(reduced_motion_query).matches; -}; - -export const reduced_motion = readable(get_initial_motion_preference(), (set) => { - if (browser) { - /** - * @param {MediaQueryListEvent} event - */ - const set_reduced_motion = (event) => { - set(event.matches); - }; - const media_query_list = window.matchMedia(reduced_motion_query); - media_query_list.addEventListener('change', set_reduced_motion); - - return () => { - media_query_list.removeEventListener('change', set_reduced_motion); - }; - } -}); diff --git a/packages/playground/kit-demo-app/src/routes/sverdle/words.server.js b/packages/playground/kit-demo-app/src/routes/sverdle/words.server.js deleted file mode 100644 index 94327d5de..000000000 --- a/packages/playground/kit-demo-app/src/routes/sverdle/words.server.js +++ /dev/null @@ -1,10 +0,0 @@ -// smaller verion of the actual words list of sverdle -// only solution is bluwy -// some partially right inputs allowed too -// see https://github.com/sveltejs/kit/blob/9cfa964073fd14f6d95ae87382d85130c280c6ad/packages/create-svelte/templates/default/src/routes/sverdle/words.server.ts for original - -/** The list of possible words */ -export const words = ['bluwy']; - -/** The list of valid guesses, of which the list of possible words is a subset */ -export const allowed = new Set([...words, 'ywulb', 'bluyw', 'bluyz', 'bluxw', 'xxxxx']); diff --git a/packages/playground/kit-demo-app/static/favicon.png b/packages/playground/kit-demo-app/static/favicon.png deleted file mode 100644 index 825b9e65a..000000000 Binary files a/packages/playground/kit-demo-app/static/favicon.png and /dev/null differ diff --git a/packages/playground/kit-demo-app/static/robots.txt b/packages/playground/kit-demo-app/static/robots.txt deleted file mode 100644 index e9e57dc4d..000000000 --- a/packages/playground/kit-demo-app/static/robots.txt +++ /dev/null @@ -1,3 +0,0 @@ -# https://www.robotstxt.org/robotstxt.html -User-agent: * -Disallow: diff --git a/packages/playground/kit-demo-app/svelte.config.js b/packages/playground/kit-demo-app/svelte.config.js deleted file mode 100644 index 2ca5922a8..000000000 --- a/packages/playground/kit-demo-app/svelte.config.js +++ /dev/null @@ -1,13 +0,0 @@ -import adapter from '@sveltejs/adapter-auto'; - -/** @type {import('@sveltejs/kit').Config} */ -const config = { - kit: { - // adapter-auto only supports some environments, see https://kit.svelte.dev/docs/adapter-auto for a list. - // If your environment is not supported, or you settled on a specific environment, switch out the adapter. - // See https://kit.svelte.dev/docs/adapters for more information about adapters. - adapter: adapter() - } -}; - -export default config; diff --git a/packages/playground/kit-demo-app/vite.config.js b/packages/playground/kit-demo-app/vite.config.js deleted file mode 100644 index bbf8c7da4..000000000 --- a/packages/playground/kit-demo-app/vite.config.js +++ /dev/null @@ -1,6 +0,0 @@ -import { sveltekit } from '@sveltejs/kit/vite'; -import { defineConfig } from 'vite'; - -export default defineConfig({ - plugins: [sveltekit()] -}); diff --git a/packages/playground/optimizedeps-include/README.md b/packages/playground/optimizedeps-include/README.md deleted file mode 100644 index b376695ba..000000000 --- a/packages/playground/optimizedeps-include/README.md +++ /dev/null @@ -1,2 +0,0 @@ -reproduction of failed dedupe for svelte -project setup from https://github.com/bluwy/vite-svelte-dedupe diff --git a/packages/playground/optimizedeps-include/index.html b/packages/playground/optimizedeps-include/index.html deleted file mode 100644 index 50421938b..000000000 --- a/packages/playground/optimizedeps-include/index.html +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - Svelte + Vite App - - -
- - - diff --git a/packages/playground/optimizedeps-include/jsconfig.json b/packages/playground/optimizedeps-include/jsconfig.json deleted file mode 100644 index e0fe30cb3..000000000 --- a/packages/playground/optimizedeps-include/jsconfig.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "compilerOptions": { - "moduleResolution": "Bundler", - "target": "ESNext", - "module": "ESNext", - /** - * svelte-preprocess cannot figure out whether you have - * a value or a type, so tell TypeScript to enforce using - * `import type` instead of `import` for Types. - */ - "importsNotUsedAsValues": "error", - "isolatedModules": true, - "resolveJsonModule": true, - /** - * To have warnings / errors of the Svelte compiler at the - * correct position, enable source maps by default. - */ - "sourceMap": true, - "esModuleInterop": true, - "skipLibCheck": true, - "forceConsistentCasingInFileNames": true, - "baseUrl": ".", - /** - * Typecheck JS in `.svelte` and `.js` files by default. - * Disable this if you'd like to use dynamic types. - */ - "checkJs": true - }, - /** - * Use global.d.ts instead of compilerOptions.types - * to avoid limiting type declarations. - */ - "include": ["src/**/*.d.ts", "src/**/*.js", "src/**/*.svelte"] -} diff --git a/packages/playground/optimizedeps-include/package.json b/packages/playground/optimizedeps-include/package.json deleted file mode 100644 index 3fd552990..000000000 --- a/packages/playground/optimizedeps-include/package.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "name": "playground-optimizedeps-include", - "version": "0.0.0", - "private": true, - "type": "module", - "scripts": { - "dev": "vite", - "build": "vite build", - "serve": "vite preview" - }, - "devDependencies": { - "@sveltejs/vite-plugin-svelte": "workspace:^", - "svelte": "^5.22.2", - "tinro": "^0.6.12", - "vite": "^6.2.0" - } -} diff --git a/packages/playground/optimizedeps-include/src/App.svelte b/packages/playground/optimizedeps-include/src/App.svelte deleted file mode 100644 index b619f5933..000000000 --- a/packages/playground/optimizedeps-include/src/App.svelte +++ /dev/null @@ -1,18 +0,0 @@ - - - -

Foo route

-

Bar route

-

Default route

- -
-	$router: {JSON.stringify($router, null, 2)}
-
diff --git a/packages/playground/optimizedeps-include/src/main.js b/packages/playground/optimizedeps-include/src/main.js deleted file mode 100644 index 448d14965..000000000 --- a/packages/playground/optimizedeps-include/src/main.js +++ /dev/null @@ -1,7 +0,0 @@ -import App from './App.svelte'; - -const app = new App({ - target: document.getElementById('app') -}); - -export default app; diff --git a/packages/playground/optimizedeps-include/src/vite-env.d.ts b/packages/playground/optimizedeps-include/src/vite-env.d.ts deleted file mode 100644 index 4078e7476..000000000 --- a/packages/playground/optimizedeps-include/src/vite-env.d.ts +++ /dev/null @@ -1,2 +0,0 @@ -/// -/// diff --git a/packages/playground/optimizedeps-include/vite.config.js b/packages/playground/optimizedeps-include/vite.config.js deleted file mode 100644 index 42692c704..000000000 --- a/packages/playground/optimizedeps-include/vite.config.js +++ /dev/null @@ -1,12 +0,0 @@ -import { defineConfig } from 'vite'; -import { svelte } from '@sveltejs/vite-plugin-svelte'; - -export default defineConfig(({ command, mode }) => { - const isProduction = mode === 'production'; - return { - plugins: [svelte()], - build: { - minify: isProduction - } - }; -}); diff --git a/packages/playground/package.json b/packages/playground/package.json deleted file mode 100644 index 926bcbd7b..000000000 --- a/packages/playground/package.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "name": "vite-plugin-svelte-playground", - "version": "1.0.0", - "private": true -} diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index a58582b58..5158d51ab 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -599,187 +599,6 @@ importers: specifier: ^6.2.0 version: 6.2.0(@types/node@20.17.23)(sass@1.85.1)(stylus@0.64.0)(yaml@2.7.0) - packages/playground: {} - - packages/playground/basic: - devDependencies: - '@sveltejs/vite-plugin-svelte': - specifier: workspace:^ - version: link:../../vite-plugin-svelte - e2e-test-dep-svelte-module: - specifier: workspace:^ - version: link:../../e2e-tests/_test_dependencies/svelte-module - svelte: - specifier: ^5.22.2 - version: 5.22.2 - vite: - specifier: ^6.2.0 - version: 6.2.0(@types/node@20.17.23)(sass@1.85.1)(stylus@0.64.0)(yaml@2.7.0) - - packages/playground/big: - devDependencies: - '@sveltejs/vite-plugin-svelte': - specifier: workspace:^ - version: link:../../vite-plugin-svelte - svelte: - specifier: ^5.22.2 - version: 5.22.2 - vite: - specifier: ^6.2.0 - version: 6.2.0(@types/node@20.17.23)(sass@1.85.1)(stylus@0.64.0)(yaml@2.7.0) - - packages/playground/big-component-library: - dependencies: - lodash-es: - specifier: ^4.17.21 - version: 4.17.21 - devDependencies: - '@sveltejs/vite-plugin-svelte': - specifier: workspace:^ - version: link:../../vite-plugin-svelte - carbon-components-svelte: - specifier: ^0.87.6 - version: 0.87.6 - carbon-icons-svelte: - specifier: ^13.3.0 - version: 13.3.0 - carbon-preprocess-svelte: - specifier: ^0.11.11 - version: 0.11.11 - svelte: - specifier: ^5.22.2 - version: 5.22.2 - svelte-preprocess: - specifier: ^6.0.3 - version: 6.0.3(postcss-load-config@6.0.1(postcss@8.5.3)(yaml@2.7.0))(postcss@8.5.3)(sass@1.85.1)(stylus@0.64.0)(svelte@5.22.2)(typescript@5.8.2) - vite: - specifier: ^6.2.0 - version: 6.2.0(@types/node@20.17.23)(sass@1.85.1)(stylus@0.64.0)(yaml@2.7.0) - - packages/playground/big-component-library-kit: - devDependencies: - '@sveltejs/adapter-auto': - specifier: 4.0.0 - version: 4.0.0(@sveltejs/kit@2.18.0(@sveltejs/vite-plugin-svelte@packages+vite-plugin-svelte)(svelte@5.22.2)(vite@6.2.0(@types/node@20.17.23)(sass@1.85.1)(stylus@0.64.0)(yaml@2.7.0))) - '@sveltejs/kit': - specifier: ^2.18.0 - version: 2.18.0(@sveltejs/vite-plugin-svelte@packages+vite-plugin-svelte)(svelte@5.22.2)(vite@6.2.0(@types/node@20.17.23)(sass@1.85.1)(stylus@0.64.0)(yaml@2.7.0)) - '@sveltejs/vite-plugin-svelte': - specifier: workspace:^ - version: link:../../vite-plugin-svelte - carbon-components-svelte: - specifier: ^0.87.6 - version: 0.87.6 - carbon-icons-svelte: - specifier: ^13.3.0 - version: 13.3.0 - carbon-preprocess-svelte: - specifier: ^0.11.11 - version: 0.11.11 - lodash-es: - specifier: ^4.17.21 - version: 4.17.21 - svelte: - specifier: ^5.22.2 - version: 5.22.2 - svelte-check: - specifier: ^4.1.4 - version: 4.1.4(picomatch@4.0.2)(svelte@5.22.2)(typescript@5.8.2) - svelte-preprocess: - specifier: ^6.0.3 - version: 6.0.3(postcss-load-config@6.0.1(postcss@8.5.3)(yaml@2.7.0))(postcss@8.5.3)(sass@1.85.1)(stylus@0.64.0)(svelte@5.22.2)(typescript@5.8.2) - typescript: - specifier: ^5.8.2 - version: 5.8.2 - vite: - specifier: ^6.2.0 - version: 6.2.0(@types/node@20.17.23)(sass@1.85.1)(stylus@0.64.0)(yaml@2.7.0) - - packages/playground/big-component-library-vite-ssr: - dependencies: - compression: - specifier: ^1.8.0 - version: 1.8.0 - express: - specifier: ^4.21.2 - version: 4.21.2 - sirv: - specifier: ^3.0.1 - version: 3.0.1 - devDependencies: - '@sveltejs/vite-plugin-svelte': - specifier: workspace:^ - version: link:../../vite-plugin-svelte - carbon-components-svelte: - specifier: ^0.87.6 - version: 0.87.6 - carbon-icons-svelte: - specifier: ^13.3.0 - version: 13.3.0 - carbon-preprocess-svelte: - specifier: ^0.11.11 - version: 0.11.11 - cross-env: - specifier: ^7.0.3 - version: 7.0.3 - lodash-es: - specifier: ^4.17.21 - version: 4.17.21 - svelte: - specifier: ^5.22.2 - version: 5.22.2 - svelte-preprocess: - specifier: ^6.0.3 - version: 6.0.3(postcss-load-config@6.0.1(postcss@8.5.3)(yaml@2.7.0))(postcss@8.5.3)(sass@1.85.1)(stylus@0.64.0)(svelte@5.22.2)(typescript@5.8.2) - vite: - specifier: ^6.2.0 - version: 6.2.0(@types/node@20.17.23)(sass@1.85.1)(stylus@0.64.0)(yaml@2.7.0) - - packages/playground/kit-demo-app: - devDependencies: - '@fontsource/fira-mono': - specifier: ^5.2.5 - version: 5.2.5 - '@neoconfetti/svelte': - specifier: ^2.2.1 - version: 2.2.1 - '@sveltejs/adapter-auto': - specifier: ^4.0.0 - version: 4.0.0(@sveltejs/kit@2.18.0(@sveltejs/vite-plugin-svelte@packages+vite-plugin-svelte)(svelte@5.22.2)(vite@6.2.0(@types/node@20.17.23)(sass@1.85.1)(stylus@0.64.0)(yaml@2.7.0))) - '@sveltejs/kit': - specifier: ^2.18.0 - version: 2.18.0(@sveltejs/vite-plugin-svelte@packages+vite-plugin-svelte)(svelte@5.22.2)(vite@6.2.0(@types/node@20.17.23)(sass@1.85.1)(stylus@0.64.0)(yaml@2.7.0)) - '@sveltejs/vite-plugin-svelte': - specifier: workspace:^ - version: link:../../vite-plugin-svelte - svelte: - specifier: ^5.22.2 - version: 5.22.2 - svelte-check: - specifier: ^4.1.4 - version: 4.1.4(picomatch@4.0.2)(svelte@5.22.2)(typescript@5.8.2) - typescript: - specifier: ^5.8.2 - version: 5.8.2 - vite: - specifier: ^6.2.0 - version: 6.2.0(@types/node@20.17.23)(sass@1.85.1)(stylus@0.64.0)(yaml@2.7.0) - - packages/playground/optimizedeps-include: - devDependencies: - '@sveltejs/vite-plugin-svelte': - specifier: workspace:^ - version: link:../../vite-plugin-svelte - svelte: - specifier: ^5.22.2 - version: 5.22.2 - tinro: - specifier: ^0.6.12 - version: 0.6.12 - vite: - specifier: ^6.2.0 - version: 6.2.0(@types/node@20.17.23)(sass@1.85.1)(stylus@0.64.0)(yaml@2.7.0) - packages/vite-plugin-svelte: dependencies: '@sveltejs/vite-plugin-svelte-inspector': @@ -1226,9 +1045,6 @@ packages: resolution: {integrity: sha512-JubJ5B2pJ4k4yGxaNLdbjrnk9d/iDz6/q8wOilpIowd6PJPgaxCuHBnBszq7Ce2TyMrywm5r4PnKm6V3iiZF+g==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} - '@fontsource/fira-mono@5.2.5': - resolution: {integrity: sha512-rujrs+J+w2Nmqd6zsNQTzT7eYLKrSQWdF7SuAdjjXVs+Si06Ag6etOYFmF3Mzb0NufmEIPCDUS2ppt6hxX+SLg==} - '@formatjs/ecma402-abstract@2.3.1': resolution: {integrity: sha512-Ip9uV+/MpLXWRk03U/GzeJMuPeOXpJBSB5V1tjA6kJhvqssye5J5LoYLc7Z5IAHb7nR62sRoguzrFiVCP/hnzw==} @@ -1264,10 +1080,6 @@ packages: resolution: {integrity: sha512-xeO57FpIu4p1Ri3Jq/EXq4ClRm86dVF2z/+kvFnyqVYRavTZmaFaUBbWCOuuTh0o/g7DSsk6kc2vrS4Vl5oPOQ==} engines: {node: '>=18.18'} - '@ibm/telemetry-js@1.8.0': - resolution: {integrity: sha512-1u/8f5TtDHXWNQe+YfIESesZGX2PmhEfyU0znlyFvATch+xc5fPYjXj2gWKMTmdKsDawqAm/BkJBQjx2CDlZww==} - hasBin: true - '@isaacs/cliui@8.0.2': resolution: {integrity: sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==} engines: {node: '>=12'} @@ -1299,9 +1111,6 @@ packages: '@manypkg/get-packages@1.1.3': resolution: {integrity: sha512-fo+QhuU3qE/2TQMQmbVMqaQ6EWbMhi4ABWP+O4AM1NqPBuy0OrApV5LO6BrrgnhtAHS2NH6RrVk9OL181tTi8A==} - '@neoconfetti/svelte@2.2.1': - resolution: {integrity: sha512-2Ts0Rxaf6clW2qG+AKhTwpl01AAyZEAe03XeuQ7Vp+qYIaM3ycuI94j546fmEkUxwACwGI3Zl2cZ/pncTuNcJg==} - '@nodelib/fs.scandir@2.1.5': resolution: {integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==} engines: {node: '>= 8'} @@ -1447,191 +1256,96 @@ packages: rollup: optional: true - '@rollup/rollup-android-arm-eabi@4.28.1': - resolution: {integrity: sha512-2aZp8AES04KI2dy3Ss6/MDjXbwBzj+i0GqKtWXgw2/Ma6E4jJvujryO6gJAghIRVz7Vwr9Gtl/8na3nDUKpraQ==} - cpu: [arm] - os: [android] - '@rollup/rollup-android-arm-eabi@4.34.8': resolution: {integrity: sha512-q217OSE8DTp8AFHuNHXo0Y86e1wtlfVrXiAlwkIvGRQv9zbc6mE3sjIVfwI8sYUyNxwOg0j/Vm1RKM04JcWLJw==} cpu: [arm] os: [android] - '@rollup/rollup-android-arm64@4.28.1': - resolution: {integrity: sha512-EbkK285O+1YMrg57xVA+Dp0tDBRB93/BZKph9XhMjezf6F4TpYjaUSuPt5J0fZXlSag0LmZAsTmdGGqPp4pQFA==} - cpu: [arm64] - os: [android] - '@rollup/rollup-android-arm64@4.34.8': resolution: {integrity: sha512-Gigjz7mNWaOL9wCggvoK3jEIUUbGul656opstjaUSGC3eT0BM7PofdAJaBfPFWWkXNVAXbaQtC99OCg4sJv70Q==} cpu: [arm64] os: [android] - '@rollup/rollup-darwin-arm64@4.28.1': - resolution: {integrity: sha512-prduvrMKU6NzMq6nxzQw445zXgaDBbMQvmKSJaxpaZ5R1QDM8w+eGxo6Y/jhT/cLoCvnZI42oEqf9KQNYz1fqQ==} - cpu: [arm64] - os: [darwin] - '@rollup/rollup-darwin-arm64@4.34.8': resolution: {integrity: sha512-02rVdZ5tgdUNRxIUrFdcMBZQoaPMrxtwSb+/hOfBdqkatYHR3lZ2A2EGyHq2sGOd0Owk80oV3snlDASC24He3Q==} cpu: [arm64] os: [darwin] - '@rollup/rollup-darwin-x64@4.28.1': - resolution: {integrity: sha512-WsvbOunsUk0wccO/TV4o7IKgloJ942hVFK1CLatwv6TJspcCZb9umQkPdvB7FihmdxgaKR5JyxDjWpCOp4uZlQ==} - cpu: [x64] - os: [darwin] - '@rollup/rollup-darwin-x64@4.34.8': resolution: {integrity: sha512-qIP/elwR/tq/dYRx3lgwK31jkZvMiD6qUtOycLhTzCvrjbZ3LjQnEM9rNhSGpbLXVJYQ3rq39A6Re0h9tU2ynw==} cpu: [x64] os: [darwin] - '@rollup/rollup-freebsd-arm64@4.28.1': - resolution: {integrity: sha512-HTDPdY1caUcU4qK23FeeGxCdJF64cKkqajU0iBnTVxS8F7H/7BewvYoG+va1KPSL63kQ1PGNyiwKOfReavzvNA==} - cpu: [arm64] - os: [freebsd] - '@rollup/rollup-freebsd-arm64@4.34.8': resolution: {integrity: sha512-IQNVXL9iY6NniYbTaOKdrlVP3XIqazBgJOVkddzJlqnCpRi/yAeSOa8PLcECFSQochzqApIOE1GHNu3pCz+BDA==} cpu: [arm64] os: [freebsd] - '@rollup/rollup-freebsd-x64@4.28.1': - resolution: {integrity: sha512-m/uYasxkUevcFTeRSM9TeLyPe2QDuqtjkeoTpP9SW0XxUWfcYrGDMkO/m2tTw+4NMAF9P2fU3Mw4ahNvo7QmsQ==} - cpu: [x64] - os: [freebsd] - '@rollup/rollup-freebsd-x64@4.34.8': resolution: {integrity: sha512-TYXcHghgnCqYFiE3FT5QwXtOZqDj5GmaFNTNt3jNC+vh22dc/ukG2cG+pi75QO4kACohZzidsq7yKTKwq/Jq7Q==} cpu: [x64] os: [freebsd] - '@rollup/rollup-linux-arm-gnueabihf@4.28.1': - resolution: {integrity: sha512-QAg11ZIt6mcmzpNE6JZBpKfJaKkqTm1A9+y9O+frdZJEuhQxiugM05gnCWiANHj4RmbgeVJpTdmKRmH/a+0QbA==} - cpu: [arm] - os: [linux] - '@rollup/rollup-linux-arm-gnueabihf@4.34.8': resolution: {integrity: sha512-A4iphFGNkWRd+5m3VIGuqHnG3MVnqKe7Al57u9mwgbyZ2/xF9Jio72MaY7xxh+Y87VAHmGQr73qoKL9HPbXj1g==} cpu: [arm] os: [linux] - '@rollup/rollup-linux-arm-musleabihf@4.28.1': - resolution: {integrity: sha512-dRP9PEBfolq1dmMcFqbEPSd9VlRuVWEGSmbxVEfiq2cs2jlZAl0YNxFzAQS2OrQmsLBLAATDMb3Z6MFv5vOcXg==} - cpu: [arm] - os: [linux] - '@rollup/rollup-linux-arm-musleabihf@4.34.8': resolution: {integrity: sha512-S0lqKLfTm5u+QTxlFiAnb2J/2dgQqRy/XvziPtDd1rKZFXHTyYLoVL58M/XFwDI01AQCDIevGLbQrMAtdyanpA==} cpu: [arm] os: [linux] - '@rollup/rollup-linux-arm64-gnu@4.28.1': - resolution: {integrity: sha512-uGr8khxO+CKT4XU8ZUH1TTEUtlktK6Kgtv0+6bIFSeiSlnGJHG1tSFSjm41uQ9sAO/5ULx9mWOz70jYLyv1QkA==} - cpu: [arm64] - os: [linux] - '@rollup/rollup-linux-arm64-gnu@4.34.8': resolution: {integrity: sha512-jpz9YOuPiSkL4G4pqKrus0pn9aYwpImGkosRKwNi+sJSkz+WU3anZe6hi73StLOQdfXYXC7hUfsQlTnjMd3s1A==} cpu: [arm64] os: [linux] - '@rollup/rollup-linux-arm64-musl@4.28.1': - resolution: {integrity: sha512-QF54q8MYGAqMLrX2t7tNpi01nvq5RI59UBNx+3+37zoKX5KViPo/gk2QLhsuqok05sSCRluj0D00LzCwBikb0A==} - cpu: [arm64] - os: [linux] - '@rollup/rollup-linux-arm64-musl@4.34.8': resolution: {integrity: sha512-KdSfaROOUJXgTVxJNAZ3KwkRc5nggDk+06P6lgi1HLv1hskgvxHUKZ4xtwHkVYJ1Rep4GNo+uEfycCRRxht7+Q==} cpu: [arm64] os: [linux] - '@rollup/rollup-linux-loongarch64-gnu@4.28.1': - resolution: {integrity: sha512-vPul4uodvWvLhRco2w0GcyZcdyBfpfDRgNKU+p35AWEbJ/HPs1tOUrkSueVbBS0RQHAf/A+nNtDpvw95PeVKOA==} - cpu: [loong64] - os: [linux] - '@rollup/rollup-linux-loongarch64-gnu@4.34.8': resolution: {integrity: sha512-NyF4gcxwkMFRjgXBM6g2lkT58OWztZvw5KkV2K0qqSnUEqCVcqdh2jN4gQrTn/YUpAcNKyFHfoOZEer9nwo6uQ==} cpu: [loong64] os: [linux] - '@rollup/rollup-linux-powerpc64le-gnu@4.28.1': - resolution: {integrity: sha512-pTnTdBuC2+pt1Rmm2SV7JWRqzhYpEILML4PKODqLz+C7Ou2apEV52h19CR7es+u04KlqplggmN9sqZlekg3R1A==} - cpu: [ppc64] - os: [linux] - '@rollup/rollup-linux-powerpc64le-gnu@4.34.8': resolution: {integrity: sha512-LMJc999GkhGvktHU85zNTDImZVUCJ1z/MbAJTnviiWmmjyckP5aQsHtcujMjpNdMZPT2rQEDBlJfubhs3jsMfw==} cpu: [ppc64] os: [linux] - '@rollup/rollup-linux-riscv64-gnu@4.28.1': - resolution: {integrity: sha512-vWXy1Nfg7TPBSuAncfInmAI/WZDd5vOklyLJDdIRKABcZWojNDY0NJwruY2AcnCLnRJKSaBgf/GiJfauu8cQZA==} - cpu: [riscv64] - os: [linux] - '@rollup/rollup-linux-riscv64-gnu@4.34.8': resolution: {integrity: sha512-xAQCAHPj8nJq1PI3z8CIZzXuXCstquz7cIOL73HHdXiRcKk8Ywwqtx2wrIy23EcTn4aZ2fLJNBB8d0tQENPCmw==} cpu: [riscv64] os: [linux] - '@rollup/rollup-linux-s390x-gnu@4.28.1': - resolution: {integrity: sha512-/yqC2Y53oZjb0yz8PVuGOQQNOTwxcizudunl/tFs1aLvObTclTwZ0JhXF2XcPT/zuaymemCDSuuUPXJJyqeDOg==} - cpu: [s390x] - os: [linux] - '@rollup/rollup-linux-s390x-gnu@4.34.8': resolution: {integrity: sha512-DdePVk1NDEuc3fOe3dPPTb+rjMtuFw89gw6gVWxQFAuEqqSdDKnrwzZHrUYdac7A7dXl9Q2Vflxpme15gUWQFA==} cpu: [s390x] os: [linux] - '@rollup/rollup-linux-x64-gnu@4.28.1': - resolution: {integrity: sha512-fzgeABz7rrAlKYB0y2kSEiURrI0691CSL0+KXwKwhxvj92VULEDQLpBYLHpF49MSiPG4sq5CK3qHMnb9tlCjBw==} - cpu: [x64] - os: [linux] - '@rollup/rollup-linux-x64-gnu@4.34.8': resolution: {integrity: sha512-8y7ED8gjxITUltTUEJLQdgpbPh1sUQ0kMTmufRF/Ns5tI9TNMNlhWtmPKKHCU0SilX+3MJkZ0zERYYGIVBYHIA==} cpu: [x64] os: [linux] - '@rollup/rollup-linux-x64-musl@4.28.1': - resolution: {integrity: sha512-xQTDVzSGiMlSshpJCtudbWyRfLaNiVPXt1WgdWTwWz9n0U12cI2ZVtWe/Jgwyv/6wjL7b66uu61Vg0POWVfz4g==} - cpu: [x64] - os: [linux] - '@rollup/rollup-linux-x64-musl@4.34.8': resolution: {integrity: sha512-SCXcP0ZpGFIe7Ge+McxY5zKxiEI5ra+GT3QRxL0pMMtxPfpyLAKleZODi1zdRHkz5/BhueUrYtYVgubqe9JBNQ==} cpu: [x64] os: [linux] - '@rollup/rollup-win32-arm64-msvc@4.28.1': - resolution: {integrity: sha512-wSXmDRVupJstFP7elGMgv+2HqXelQhuNf+IS4V+nUpNVi/GUiBgDmfwD0UGN3pcAnWsgKG3I52wMOBnk1VHr/A==} - cpu: [arm64] - os: [win32] - '@rollup/rollup-win32-arm64-msvc@4.34.8': resolution: {integrity: sha512-YHYsgzZgFJzTRbth4h7Or0m5O74Yda+hLin0irAIobkLQFRQd1qWmnoVfwmKm9TXIZVAD0nZ+GEb2ICicLyCnQ==} cpu: [arm64] os: [win32] - '@rollup/rollup-win32-ia32-msvc@4.28.1': - resolution: {integrity: sha512-ZkyTJ/9vkgrE/Rk9vhMXhf8l9D+eAhbAVbsGsXKy2ohmJaWg0LPQLnIxRdRp/bKyr8tXuPlXhIoGlEB5XpJnGA==} - cpu: [ia32] - os: [win32] - '@rollup/rollup-win32-ia32-msvc@4.34.8': resolution: {integrity: sha512-r3NRQrXkHr4uWy5TOjTpTYojR9XmF0j/RYgKCef+Ag46FWUTltm5ziticv8LdNsDMehjJ543x/+TJAek/xBA2w==} cpu: [ia32] os: [win32] - '@rollup/rollup-win32-x64-msvc@4.28.1': - resolution: {integrity: sha512-ZvK2jBafvttJjoIdKm/Q/Bh7IJ1Ose9IBOwpOXcOvW3ikGTQGmKDgxTC6oCAzW6PynbkKP8+um1du81XJHZ0JA==} - cpu: [x64] - os: [win32] - '@rollup/rollup-win32-x64-msvc@4.34.8': resolution: {integrity: sha512-U0FaE5O1BCpZSeE6gBl3c5ObhePQSfk9vDRToMmTkbhCOgW4jqvtS5LGyQ76L1fH8sM0keRp4uDTsbjiUyjk0g==} cpu: [x64] @@ -1648,11 +1362,6 @@ packages: peerDependencies: acorn: ^8.9.0 - '@sveltejs/adapter-auto@4.0.0': - resolution: {integrity: sha512-kmuYSQdD2AwThymQF0haQhM8rE5rhutQXG4LNbnbShwhMO4qQGnKaaTy+88DuNSuoQDi58+thpq8XpHc1+oEKQ==} - peerDependencies: - '@sveltejs/kit': ^2.0.0 - '@sveltejs/adapter-node@5.2.12': resolution: {integrity: sha512-0bp4Yb3jKIEcZWVcJC/L1xXp9zzJS4hDwfb4VITAkfT4OVdkspSHsx7YhqJDbb2hgLl6R9Vs7VQR+fqIVOxPUQ==} peerDependencies: @@ -1933,15 +1642,6 @@ packages: caniuse-lite@1.0.30001688: resolution: {integrity: sha512-Nmqpru91cuABu/DTCXbM2NSRHzM2uVHfPnhJ/1zEAJx/ILBRVmz3pzH4N7DZqbdG0gWClsCC05Oj0mJ/1AWMbA==} - carbon-components-svelte@0.87.6: - resolution: {integrity: sha512-AZ2Z5iGpfKyasVVX5Cb02lhButeQMUbODzOuLUzvKHnlqhmN8H0rike54MPQ3sbyYJHwtADH78nIZQhv2ezjlw==} - - carbon-icons-svelte@13.3.0: - resolution: {integrity: sha512-pwOVRMYyct0KyzLPCwB7BdeO50lo3I3FclasSPgJiADm49YjYClewHnBsQOM2luu2JCLTdBnadtbVvWSpv+k+Q==} - - carbon-preprocess-svelte@0.11.11: - resolution: {integrity: sha512-F8dZ+evXjmGG/l7gZKHwX5vwJ5CngPFIIWyTsxoBKZqIyCgGZJh83X61q2ZE+jG1vhktZCAd18Z6Yyw1WQMN/Q==} - chai@5.2.0: resolution: {integrity: sha512-mCuXncKXk5iCLhfhwTc0izo0gtEmpz5CtG2y8GiOINBlMVS6v8TMRc5TaLWKS6692m9+dVVfzgeVxR5UxWHTYw==} engines: {node: '>=12'} @@ -2456,14 +2156,6 @@ packages: fastq@1.17.1: resolution: {integrity: sha512-sRVD3lWVIXWg6By68ZN7vho9a1pQcN/WBFaAAsDDFzlJjvoGx0P8z7V1t72grFJfJhu3YPZBuu25f7Kaw2jN1w==} - fdir@6.4.2: - resolution: {integrity: sha512-KnhMXsKSPZlAhp7+IjUkRZKPb4fUyccpDrdFXbi4QL1qkmFh9kVY09Yox+n4MaOb3lHZ1Tv829C3oaaXoMYPDQ==} - peerDependencies: - picomatch: ^3 || ^4 - peerDependenciesMeta: - picomatch: - optional: true - fdir@6.4.3: resolution: {integrity: sha512-PMXmW2y1hDDfTSRc9gaXIuCCRpuoz3Kaz8cUelp3smouvfT632ozg2vrT6lJsHKKOF59YLbOGfAWGUcKEfRMQw==} peerDependencies: @@ -2500,9 +2192,6 @@ packages: resolution: {integrity: sha512-f7ccFPK3SXFHpx15UIGyRJ/FJQctuKZ0zVuN3frBo4HnK3cay9VEW0R6yPYFHC0AgqhukPzKjq22t5DmAyqGyw==} engines: {node: '>=16'} - flatpickr@4.6.9: - resolution: {integrity: sha512-F0azNNi8foVWKSF+8X+ZJzz8r9sE1G4hl06RyceIaLvyltKvDl6vqk9Lm/6AUUCi5HWaIjiUbk7UpeE/fOXOpw==} - flatted@3.3.2: resolution: {integrity: sha512-AiwGJM8YcNOaobumgtng+6NHuOqC3A7MixFeDafM3X9cIUM+xUXoS5Vfgf+OihAYe20fxqNM9yPBXJzRtZ/4eA==} @@ -2807,9 +2496,6 @@ packages: resolution: {integrity: sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==} engines: {node: '>=10'} - lodash-es@4.17.21: - resolution: {integrity: sha512-mKnC+QJ9pWVzv+C4/U3rRsHapFfHvQFoFB92e52xeyGMcX6/OlIl78je1u8vePzYZSkkogMPJ2yjxxsb89cxyw==} - lodash.merge@4.6.2: resolution: {integrity: sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==} @@ -3052,9 +2738,6 @@ packages: package-json-from-dist@1.0.1: resolution: {integrity: sha512-UEZIS3/by4OC8vL3P2dTXRETpebLI2NiI5vIrjaD/5UtrkFX/tNbwjTSRAGC/+7CAo2pIcBaRgWmcBBHcsaCIw==} - package-manager-detector@0.2.8: - resolution: {integrity: sha512-ts9KSdroZisdvKMWVAVCXiKqnqNfXz4+IbrBG8/BWx/TR5le+jfenvoBuIZ6UWM9nz47W7AbD9qYfAwfWMIwzA==} - package-manager-detector@0.2.9: resolution: {integrity: sha512-+vYvA/Y31l8Zk8dwxHhL3JfTuHPm6tlxM2A3GeQyl7ovYnSp1+mzAxClxaOr0qO1TtPxbQxetI7v5XqKLJZk7Q==} @@ -3130,12 +2813,6 @@ packages: engines: {node: '>=18'} hasBin: true - postcss-discard-empty@7.0.0: - resolution: {integrity: sha512-e+QzoReTZ8IAwhnSdp/++7gBZ/F+nBq9y6PomfwORfP7q9nBpK5AMP64kOt0bA+lShBFbBDcgpJ3X4etHg4lzA==} - engines: {node: ^18.12.0 || ^20.9.0 || >=22.0} - peerDependencies: - postcss: ^8.4.31 - postcss-load-config@3.1.4: resolution: {integrity: sha512-6DiM4E7v4coTE4uzA8U//WhtPwyhiim3eyjEMFCnUpzbrkK9wJHgKDT2mR+HbtSrd/NubVaYTOpSpjUl8NQeRg==} engines: {node: '>= 10'} @@ -3282,11 +2959,6 @@ packages: rfdc@1.4.1: resolution: {integrity: sha512-q1b3N5QkRUWUl7iyylaaj3kOpIT0N2i9MqIEQXP73GVsN9cw3fdx8X63cEmWhJGi2PPCF23Ijp7ktmd39rawIA==} - rollup@4.28.1: - resolution: {integrity: sha512-61fXYl/qNVinKmGSTHAZ6Yy8I3YIJC/r2m9feHo6SwVAVcLT5MPwOUFe7EuURA/4m0NR8lXG4BBXuo/IZEsjMg==} - engines: {node: '>=18.0.0', npm: '>=8.0.0'} - hasBin: true - rollup@4.34.8: resolution: {integrity: sha512-489gTVMzAYdiZHFVA/ig/iYFllCcWFHMvUHI1rpFmkoUtRlQxqh6/yiNqnYibjMZ2b/+FUQwldG+aLsEt6bglQ==} engines: {node: '>=18.0.0', npm: '>=8.0.0'} @@ -3556,9 +3228,6 @@ packages: resolution: {integrity: sha512-wFH7+SEAcKfJpfLPkrgMPvvwnEtj8W4IurvEyrKsDleXnKLCDw71w8jltvfLa8Rm4qQxxT4jmDBYbJG/z7qoww==} engines: {node: '>=0.12'} - tinro@0.6.12: - resolution: {integrity: sha512-YYLh0a21GXXpS66ilZbywfXcPTKQQ+bv3tihoqKqSFQP6/F11N7ZmtRbFWcyZXXPFRSzNxmPJBB8ZhP0GkoS0Q==} - tiny-glob@0.2.9: resolution: {integrity: sha512-g/55ssRPUjShh+xkfx9UPDXqhckHEsHr4Vd9zX55oSdGZc/MD0m3sferOkwWtp98bv+kcVfEHtRJgBVJzelrzg==} @@ -3890,7 +3559,7 @@ snapshots: fs-extra: 7.0.1 mri: 1.2.0 p-limit: 2.3.0 - package-manager-detector: 0.2.8 + package-manager-detector: 0.2.9 picocolors: 1.1.1 resolve-from: 5.0.0 semver: 7.6.3 @@ -4172,8 +3841,6 @@ snapshots: '@eslint/core': 0.12.0 levn: 0.4.1 - '@fontsource/fira-mono@5.2.5': {} - '@formatjs/ecma402-abstract@2.3.1': dependencies: '@formatjs/fast-memoize': 2.2.5 @@ -4213,8 +3880,6 @@ snapshots: '@humanwhocodes/retry@0.4.2': {} - '@ibm/telemetry-js@1.8.0': {} - '@isaacs/cliui@8.0.2': dependencies: string-width: 5.1.2 @@ -4262,8 +3927,6 @@ snapshots: globby: 11.1.0 read-yaml-file: 1.1.0 - '@neoconfetti/svelte@2.2.1': {} - '@nodelib/fs.scandir@2.1.5': dependencies: '@nodelib/fs.stat': 2.0.5 @@ -4346,153 +4009,96 @@ snapshots: '@publint/pack@0.1.2': {} - '@rollup/plugin-commonjs@28.0.1(rollup@4.28.1)': + '@rollup/plugin-commonjs@28.0.1(rollup@4.34.8)': dependencies: - '@rollup/pluginutils': 5.1.3(rollup@4.28.1) + '@rollup/pluginutils': 5.1.3(rollup@4.34.8) commondir: 1.0.1 estree-walker: 2.0.2 - fdir: 6.4.2(picomatch@4.0.2) + fdir: 6.4.3(picomatch@4.0.2) is-reference: 1.2.1 magic-string: 0.30.17 picomatch: 4.0.2 optionalDependencies: - rollup: 4.28.1 + rollup: 4.34.8 - '@rollup/plugin-json@6.1.0(rollup@4.28.1)': + '@rollup/plugin-json@6.1.0(rollup@4.34.8)': dependencies: - '@rollup/pluginutils': 5.1.3(rollup@4.28.1) + '@rollup/pluginutils': 5.1.3(rollup@4.34.8) optionalDependencies: - rollup: 4.28.1 + rollup: 4.34.8 - '@rollup/plugin-node-resolve@16.0.0(rollup@4.28.1)': + '@rollup/plugin-node-resolve@16.0.0(rollup@4.34.8)': dependencies: - '@rollup/pluginutils': 5.1.3(rollup@4.28.1) + '@rollup/pluginutils': 5.1.3(rollup@4.34.8) '@types/resolve': 1.20.2 deepmerge: 4.3.1 is-module: 1.0.0 resolve: 1.22.8 optionalDependencies: - rollup: 4.28.1 + rollup: 4.34.8 - '@rollup/pluginutils@5.1.3(rollup@4.28.1)': + '@rollup/pluginutils@5.1.3(rollup@4.34.8)': dependencies: '@types/estree': 1.0.6 estree-walker: 2.0.2 picomatch: 4.0.2 optionalDependencies: - rollup: 4.28.1 - - '@rollup/rollup-android-arm-eabi@4.28.1': - optional: true + rollup: 4.34.8 '@rollup/rollup-android-arm-eabi@4.34.8': optional: true - '@rollup/rollup-android-arm64@4.28.1': - optional: true - '@rollup/rollup-android-arm64@4.34.8': optional: true - '@rollup/rollup-darwin-arm64@4.28.1': - optional: true - '@rollup/rollup-darwin-arm64@4.34.8': optional: true - '@rollup/rollup-darwin-x64@4.28.1': - optional: true - '@rollup/rollup-darwin-x64@4.34.8': optional: true - '@rollup/rollup-freebsd-arm64@4.28.1': - optional: true - '@rollup/rollup-freebsd-arm64@4.34.8': optional: true - '@rollup/rollup-freebsd-x64@4.28.1': - optional: true - '@rollup/rollup-freebsd-x64@4.34.8': optional: true - '@rollup/rollup-linux-arm-gnueabihf@4.28.1': - optional: true - '@rollup/rollup-linux-arm-gnueabihf@4.34.8': optional: true - '@rollup/rollup-linux-arm-musleabihf@4.28.1': - optional: true - '@rollup/rollup-linux-arm-musleabihf@4.34.8': optional: true - '@rollup/rollup-linux-arm64-gnu@4.28.1': - optional: true - '@rollup/rollup-linux-arm64-gnu@4.34.8': optional: true - '@rollup/rollup-linux-arm64-musl@4.28.1': - optional: true - '@rollup/rollup-linux-arm64-musl@4.34.8': optional: true - '@rollup/rollup-linux-loongarch64-gnu@4.28.1': - optional: true - '@rollup/rollup-linux-loongarch64-gnu@4.34.8': optional: true - '@rollup/rollup-linux-powerpc64le-gnu@4.28.1': - optional: true - '@rollup/rollup-linux-powerpc64le-gnu@4.34.8': optional: true - '@rollup/rollup-linux-riscv64-gnu@4.28.1': - optional: true - '@rollup/rollup-linux-riscv64-gnu@4.34.8': optional: true - '@rollup/rollup-linux-s390x-gnu@4.28.1': - optional: true - '@rollup/rollup-linux-s390x-gnu@4.34.8': optional: true - '@rollup/rollup-linux-x64-gnu@4.28.1': - optional: true - '@rollup/rollup-linux-x64-gnu@4.34.8': optional: true - '@rollup/rollup-linux-x64-musl@4.28.1': - optional: true - '@rollup/rollup-linux-x64-musl@4.34.8': optional: true - '@rollup/rollup-win32-arm64-msvc@4.28.1': - optional: true - '@rollup/rollup-win32-arm64-msvc@4.34.8': optional: true - '@rollup/rollup-win32-ia32-msvc@4.28.1': - optional: true - '@rollup/rollup-win32-ia32-msvc@4.34.8': optional: true - '@rollup/rollup-win32-x64-msvc@4.28.1': - optional: true - '@rollup/rollup-win32-x64-msvc@4.34.8': optional: true @@ -4506,18 +4112,13 @@ snapshots: dependencies: acorn: 8.14.0 - '@sveltejs/adapter-auto@4.0.0(@sveltejs/kit@2.18.0(@sveltejs/vite-plugin-svelte@packages+vite-plugin-svelte)(svelte@5.22.2)(vite@6.2.0(@types/node@20.17.23)(sass@1.85.1)(stylus@0.64.0)(yaml@2.7.0)))': - dependencies: - '@sveltejs/kit': 2.18.0(@sveltejs/vite-plugin-svelte@packages+vite-plugin-svelte)(svelte@5.22.2)(vite@6.2.0(@types/node@20.17.23)(sass@1.85.1)(stylus@0.64.0)(yaml@2.7.0)) - import-meta-resolve: 4.1.0 - '@sveltejs/adapter-node@5.2.12(@sveltejs/kit@2.18.0(@sveltejs/vite-plugin-svelte@packages+vite-plugin-svelte)(svelte@5.22.2)(vite@6.2.0(@types/node@20.17.23)(sass@1.85.1)(stylus@0.64.0)(yaml@2.7.0)))': dependencies: - '@rollup/plugin-commonjs': 28.0.1(rollup@4.28.1) - '@rollup/plugin-json': 6.1.0(rollup@4.28.1) - '@rollup/plugin-node-resolve': 16.0.0(rollup@4.28.1) + '@rollup/plugin-commonjs': 28.0.1(rollup@4.34.8) + '@rollup/plugin-json': 6.1.0(rollup@4.34.8) + '@rollup/plugin-node-resolve': 16.0.0(rollup@4.34.8) '@sveltejs/kit': 2.18.0(@sveltejs/vite-plugin-svelte@packages+vite-plugin-svelte)(svelte@5.22.2)(vite@6.2.0(@types/node@20.17.23)(sass@1.85.1)(stylus@0.64.0)(yaml@2.7.0)) - rollup: 4.28.1 + rollup: 4.34.8 '@sveltejs/eslint-config@8.2.0(@stylistic/eslint-plugin-js@4.2.0(eslint@9.21.0))(eslint-config-prettier@10.0.2(eslint@9.21.0))(eslint-plugin-n@17.16.2(eslint@9.21.0))(eslint-plugin-svelte@3.0.3(eslint@9.21.0)(svelte@5.22.2))(eslint@9.21.0)(typescript-eslint@8.26.0(eslint@9.21.0)(typescript@5.8.2))(typescript@5.8.2)': dependencies: @@ -4863,20 +4464,6 @@ snapshots: caniuse-lite@1.0.30001688: {} - carbon-components-svelte@0.87.6: - dependencies: - '@ibm/telemetry-js': 1.8.0 - flatpickr: 4.6.9 - - carbon-icons-svelte@13.3.0: {} - - carbon-preprocess-svelte@0.11.11: - dependencies: - estree-walker: 2.0.2 - magic-string: 0.30.17 - postcss: 8.5.3 - postcss-discard-empty: 7.0.0(postcss@8.5.3) - chai@5.2.0: dependencies: assertion-error: 2.0.1 @@ -5470,10 +5057,6 @@ snapshots: dependencies: reusify: 1.0.4 - fdir@6.4.2(picomatch@4.0.2): - optionalDependencies: - picomatch: 4.0.2 - fdir@6.4.3(picomatch@4.0.2): optionalDependencies: picomatch: 4.0.2 @@ -5518,8 +5101,6 @@ snapshots: flatted: 3.3.2 keyv: 4.5.4 - flatpickr@4.6.9: {} - flatted@3.3.2: {} foreground-child@3.3.0: @@ -5814,8 +5395,6 @@ snapshots: dependencies: p-locate: 5.0.0 - lodash-es@4.17.21: {} - lodash.merge@4.6.2: {} lodash.startcase@4.4.0: {} @@ -6031,8 +5610,6 @@ snapshots: package-json-from-dist@1.0.1: {} - package-manager-detector@0.2.8: {} - package-manager-detector@0.2.9: {} parent-module@1.0.1: @@ -6088,10 +5665,6 @@ snapshots: playwright-core@1.50.1: {} - postcss-discard-empty@7.0.0(postcss@8.5.3): - dependencies: - postcss: 8.5.3 - postcss-load-config@3.1.4(postcss@8.5.3): dependencies: lilconfig: 2.1.0 @@ -6208,31 +5781,6 @@ snapshots: rfdc@1.4.1: {} - rollup@4.28.1: - dependencies: - '@types/estree': 1.0.6 - optionalDependencies: - '@rollup/rollup-android-arm-eabi': 4.28.1 - '@rollup/rollup-android-arm64': 4.28.1 - '@rollup/rollup-darwin-arm64': 4.28.1 - '@rollup/rollup-darwin-x64': 4.28.1 - '@rollup/rollup-freebsd-arm64': 4.28.1 - '@rollup/rollup-freebsd-x64': 4.28.1 - '@rollup/rollup-linux-arm-gnueabihf': 4.28.1 - '@rollup/rollup-linux-arm-musleabihf': 4.28.1 - '@rollup/rollup-linux-arm64-gnu': 4.28.1 - '@rollup/rollup-linux-arm64-musl': 4.28.1 - '@rollup/rollup-linux-loongarch64-gnu': 4.28.1 - '@rollup/rollup-linux-powerpc64le-gnu': 4.28.1 - '@rollup/rollup-linux-riscv64-gnu': 4.28.1 - '@rollup/rollup-linux-s390x-gnu': 4.28.1 - '@rollup/rollup-linux-x64-gnu': 4.28.1 - '@rollup/rollup-linux-x64-musl': 4.28.1 - '@rollup/rollup-win32-arm64-msvc': 4.28.1 - '@rollup/rollup-win32-ia32-msvc': 4.28.1 - '@rollup/rollup-win32-x64-msvc': 4.28.1 - fsevents: 2.3.3 - rollup@4.34.8: dependencies: '@types/estree': 1.0.6 @@ -6451,7 +5999,7 @@ snapshots: dependencies: '@jridgewell/trace-mapping': 0.3.25 chokidar: 4.0.3 - fdir: 6.4.2(picomatch@4.0.2) + fdir: 6.4.3(picomatch@4.0.2) picocolors: 1.1.1 sade: 1.8.1 svelte: 5.22.2 @@ -6539,8 +6087,6 @@ snapshots: es5-ext: 0.10.64 next-tick: 1.1.0 - tinro@0.6.12: {} - tiny-glob@0.2.9: dependencies: globalyzer: 0.1.0