├── .gitignore ├── README.md ├── jest.config.js ├── package.json ├── public └── index.html ├── snowpack.config.js ├── src ├── App.svelte ├── Tailwind.svelte ├── components │ └── Counter.svelte └── main.ts ├── svelte.config.js ├── tailwind.config.js ├── test ├── counter.test.ts └── demo.test.ts └── tsconfig.json /.gitignore: -------------------------------------------------------------------------------- 1 | build 2 | node_modules 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srmullen/stts/HEAD/README.md -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srmullen/stts/HEAD/jest.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srmullen/stts/HEAD/package.json -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srmullen/stts/HEAD/public/index.html -------------------------------------------------------------------------------- /snowpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srmullen/stts/HEAD/snowpack.config.js -------------------------------------------------------------------------------- /src/App.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srmullen/stts/HEAD/src/App.svelte -------------------------------------------------------------------------------- /src/Tailwind.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srmullen/stts/HEAD/src/Tailwind.svelte -------------------------------------------------------------------------------- /src/components/Counter.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srmullen/stts/HEAD/src/components/Counter.svelte -------------------------------------------------------------------------------- /src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srmullen/stts/HEAD/src/main.ts -------------------------------------------------------------------------------- /svelte.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srmullen/stts/HEAD/svelte.config.js -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srmullen/stts/HEAD/tailwind.config.js -------------------------------------------------------------------------------- /test/counter.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srmullen/stts/HEAD/test/counter.test.ts -------------------------------------------------------------------------------- /test/demo.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srmullen/stts/HEAD/test/demo.test.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srmullen/stts/HEAD/tsconfig.json --------------------------------------------------------------------------------