├── .gitignore ├── README.md ├── package.json ├── public ├── global.css └── index.html ├── rollup.config.js ├── src ├── App.html ├── main.js └── variables.scss └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | node_modules 3 | public/bundle.* 4 | package-lock.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rich-Harris/svelte-preprocessor-demo/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rich-Harris/svelte-preprocessor-demo/HEAD/package.json -------------------------------------------------------------------------------- /public/global.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rich-Harris/svelte-preprocessor-demo/HEAD/public/global.css -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rich-Harris/svelte-preprocessor-demo/HEAD/public/index.html -------------------------------------------------------------------------------- /rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rich-Harris/svelte-preprocessor-demo/HEAD/rollup.config.js -------------------------------------------------------------------------------- /src/App.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rich-Harris/svelte-preprocessor-demo/HEAD/src/App.html -------------------------------------------------------------------------------- /src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rich-Harris/svelte-preprocessor-demo/HEAD/src/main.js -------------------------------------------------------------------------------- /src/variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rich-Harris/svelte-preprocessor-demo/HEAD/src/variables.scss -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rich-Harris/svelte-preprocessor-demo/HEAD/yarn.lock --------------------------------------------------------------------------------