├── .gitignore ├── LICENSE ├── README.md ├── package.json ├── rollup.config.js ├── src ├── Squeezy.tsx ├── index.tsx └── utils.tsx └── tsconfig.json /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | *.log 3 | dist 4 | compiled 5 | .DS_Store -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredpalmer/squeezy/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredpalmer/squeezy/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredpalmer/squeezy/HEAD/package.json -------------------------------------------------------------------------------- /rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredpalmer/squeezy/HEAD/rollup.config.js -------------------------------------------------------------------------------- /src/Squeezy.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredpalmer/squeezy/HEAD/src/Squeezy.tsx -------------------------------------------------------------------------------- /src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredpalmer/squeezy/HEAD/src/index.tsx -------------------------------------------------------------------------------- /src/utils.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredpalmer/squeezy/HEAD/src/utils.tsx -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredpalmer/squeezy/HEAD/tsconfig.json --------------------------------------------------------------------------------