├── .gitignore ├── Readme.md ├── cypress.json ├── cypress ├── fixtures │ └── example.json ├── integration │ └── test.spec.js ├── plugins │ └── index.js └── support │ ├── commands.js │ └── index.js ├── index.d.ts ├── index.js ├── jest.config.js ├── package.json ├── stringify.js └── tests ├── app ├── .gitignore ├── README.md ├── package-lock.json ├── package.json ├── public │ ├── favicon.png │ ├── global.css │ └── index.html ├── rollup.config.js ├── src │ ├── App.svelte │ └── main.ts └── tsconfig.json └── unit ├── input ├── declared-slots-variable.js ├── declared.js └── exported.js ├── output ├── declared-slots-variable.js ├── declared.js ├── exported.js ├── no-semicolon.js └── reactive.js └── reactive.test.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unlocomqx/svelte-reactive-preprocessor/HEAD/.gitignore -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unlocomqx/svelte-reactive-preprocessor/HEAD/Readme.md -------------------------------------------------------------------------------- /cypress.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unlocomqx/svelte-reactive-preprocessor/HEAD/cypress.json -------------------------------------------------------------------------------- /cypress/fixtures/example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unlocomqx/svelte-reactive-preprocessor/HEAD/cypress/fixtures/example.json -------------------------------------------------------------------------------- /cypress/integration/test.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unlocomqx/svelte-reactive-preprocessor/HEAD/cypress/integration/test.spec.js -------------------------------------------------------------------------------- /cypress/plugins/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unlocomqx/svelte-reactive-preprocessor/HEAD/cypress/plugins/index.js -------------------------------------------------------------------------------- /cypress/support/commands.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unlocomqx/svelte-reactive-preprocessor/HEAD/cypress/support/commands.js -------------------------------------------------------------------------------- /cypress/support/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unlocomqx/svelte-reactive-preprocessor/HEAD/cypress/support/index.js -------------------------------------------------------------------------------- /index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unlocomqx/svelte-reactive-preprocessor/HEAD/index.d.ts -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unlocomqx/svelte-reactive-preprocessor/HEAD/index.js -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unlocomqx/svelte-reactive-preprocessor/HEAD/jest.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unlocomqx/svelte-reactive-preprocessor/HEAD/package.json -------------------------------------------------------------------------------- /stringify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unlocomqx/svelte-reactive-preprocessor/HEAD/stringify.js -------------------------------------------------------------------------------- /tests/app/.gitignore: -------------------------------------------------------------------------------- 1 | /node_modules/ 2 | /public/build/ 3 | 4 | .DS_Store 5 | -------------------------------------------------------------------------------- /tests/app/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unlocomqx/svelte-reactive-preprocessor/HEAD/tests/app/README.md -------------------------------------------------------------------------------- /tests/app/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unlocomqx/svelte-reactive-preprocessor/HEAD/tests/app/package-lock.json -------------------------------------------------------------------------------- /tests/app/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unlocomqx/svelte-reactive-preprocessor/HEAD/tests/app/package.json -------------------------------------------------------------------------------- /tests/app/public/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unlocomqx/svelte-reactive-preprocessor/HEAD/tests/app/public/favicon.png -------------------------------------------------------------------------------- /tests/app/public/global.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unlocomqx/svelte-reactive-preprocessor/HEAD/tests/app/public/global.css -------------------------------------------------------------------------------- /tests/app/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unlocomqx/svelte-reactive-preprocessor/HEAD/tests/app/public/index.html -------------------------------------------------------------------------------- /tests/app/rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unlocomqx/svelte-reactive-preprocessor/HEAD/tests/app/rollup.config.js -------------------------------------------------------------------------------- /tests/app/src/App.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unlocomqx/svelte-reactive-preprocessor/HEAD/tests/app/src/App.svelte -------------------------------------------------------------------------------- /tests/app/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unlocomqx/svelte-reactive-preprocessor/HEAD/tests/app/src/main.ts -------------------------------------------------------------------------------- /tests/app/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unlocomqx/svelte-reactive-preprocessor/HEAD/tests/app/tsconfig.json -------------------------------------------------------------------------------- /tests/unit/input/declared-slots-variable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unlocomqx/svelte-reactive-preprocessor/HEAD/tests/unit/input/declared-slots-variable.js -------------------------------------------------------------------------------- /tests/unit/input/declared.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unlocomqx/svelte-reactive-preprocessor/HEAD/tests/unit/input/declared.js -------------------------------------------------------------------------------- /tests/unit/input/exported.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unlocomqx/svelte-reactive-preprocessor/HEAD/tests/unit/input/exported.js -------------------------------------------------------------------------------- /tests/unit/output/declared-slots-variable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unlocomqx/svelte-reactive-preprocessor/HEAD/tests/unit/output/declared-slots-variable.js -------------------------------------------------------------------------------- /tests/unit/output/declared.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unlocomqx/svelte-reactive-preprocessor/HEAD/tests/unit/output/declared.js -------------------------------------------------------------------------------- /tests/unit/output/exported.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unlocomqx/svelte-reactive-preprocessor/HEAD/tests/unit/output/exported.js -------------------------------------------------------------------------------- /tests/unit/output/no-semicolon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unlocomqx/svelte-reactive-preprocessor/HEAD/tests/unit/output/no-semicolon.js -------------------------------------------------------------------------------- /tests/unit/output/reactive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unlocomqx/svelte-reactive-preprocessor/HEAD/tests/unit/output/reactive.js -------------------------------------------------------------------------------- /tests/unit/reactive.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unlocomqx/svelte-reactive-preprocessor/HEAD/tests/unit/reactive.test.js --------------------------------------------------------------------------------