├── .babelrc ├── .editorconfig ├── .eslintignore ├── .eslintrc ├── .gitignore ├── .npmignore ├── .travis.yml ├── Readme.md ├── banner.js ├── package.json ├── rollup.cjs.js ├── src └── index.js ├── tests ├── config │ └── setup.js ├── index.test.js └── snapshots │ ├── index.test.js.md │ └── index.test.js.snap └── yarn.lock /.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": ["env"] 3 | } 4 | -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transform-it/transform-css-to-js/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- 1 | { 2 | "extends": ["standard", "prettier"] 3 | } 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transform-it/transform-css-to-js/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | test 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transform-it/transform-css-to-js/HEAD/.travis.yml -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transform-it/transform-css-to-js/HEAD/Readme.md -------------------------------------------------------------------------------- /banner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transform-it/transform-css-to-js/HEAD/banner.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transform-it/transform-css-to-js/HEAD/package.json -------------------------------------------------------------------------------- /rollup.cjs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transform-it/transform-css-to-js/HEAD/rollup.cjs.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transform-it/transform-css-to-js/HEAD/src/index.js -------------------------------------------------------------------------------- /tests/config/setup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transform-it/transform-css-to-js/HEAD/tests/config/setup.js -------------------------------------------------------------------------------- /tests/index.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transform-it/transform-css-to-js/HEAD/tests/index.test.js -------------------------------------------------------------------------------- /tests/snapshots/index.test.js.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transform-it/transform-css-to-js/HEAD/tests/snapshots/index.test.js.md -------------------------------------------------------------------------------- /tests/snapshots/index.test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transform-it/transform-css-to-js/HEAD/tests/snapshots/index.test.js.snap -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transform-it/transform-css-to-js/HEAD/yarn.lock --------------------------------------------------------------------------------