├── .gitignore ├── .npmignore ├── .travis.yml ├── History.md ├── Makefile ├── Readme.md ├── bin ├── logger.js └── myth ├── bower.json ├── component.json ├── lib ├── features.js └── index.js ├── myth.js ├── package.json └── test ├── cases ├── myth.io.css └── myth.io.out.css ├── cli ├── compress.css ├── error.css ├── input.css └── input.out.css ├── features ├── calc.css ├── calc.out.css ├── color.css ├── color.out.css ├── custom-media.css ├── custom-media.out.css ├── font-variant.css ├── font-variant.out.css ├── hex-alpha.css ├── hex-alpha.out.css ├── import.css ├── import.include.css ├── import.out.css ├── prefixes.css ├── prefixes.out.css ├── rebeccapurple.css ├── rebeccapurple.out.css ├── variables.css └── variables.out.css ├── index.js └── sourcemap ├── imported.css ├── in.css ├── index.html └── out.css /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | test -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segmentio/myth/HEAD/.travis.yml -------------------------------------------------------------------------------- /History.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segmentio/myth/HEAD/History.md -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segmentio/myth/HEAD/Makefile -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segmentio/myth/HEAD/Readme.md -------------------------------------------------------------------------------- /bin/logger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segmentio/myth/HEAD/bin/logger.js -------------------------------------------------------------------------------- /bin/myth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segmentio/myth/HEAD/bin/myth -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segmentio/myth/HEAD/bower.json -------------------------------------------------------------------------------- /component.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segmentio/myth/HEAD/component.json -------------------------------------------------------------------------------- /lib/features.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segmentio/myth/HEAD/lib/features.js -------------------------------------------------------------------------------- /lib/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segmentio/myth/HEAD/lib/index.js -------------------------------------------------------------------------------- /myth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segmentio/myth/HEAD/myth.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segmentio/myth/HEAD/package.json -------------------------------------------------------------------------------- /test/cases/myth.io.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segmentio/myth/HEAD/test/cases/myth.io.css -------------------------------------------------------------------------------- /test/cases/myth.io.out.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segmentio/myth/HEAD/test/cases/myth.io.out.css -------------------------------------------------------------------------------- /test/cli/compress.css: -------------------------------------------------------------------------------- 1 | body { 2 | color: red; 3 | } 4 | -------------------------------------------------------------------------------- /test/cli/error.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segmentio/myth/HEAD/test/cli/error.css -------------------------------------------------------------------------------- /test/cli/input.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segmentio/myth/HEAD/test/cli/input.css -------------------------------------------------------------------------------- /test/cli/input.out.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segmentio/myth/HEAD/test/cli/input.out.css -------------------------------------------------------------------------------- /test/features/calc.css: -------------------------------------------------------------------------------- 1 | 2 | body { 3 | width: calc(50px * 2); 4 | } -------------------------------------------------------------------------------- /test/features/calc.out.css: -------------------------------------------------------------------------------- 1 | 2 | body { 3 | width: 100px; 4 | } -------------------------------------------------------------------------------- /test/features/color.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segmentio/myth/HEAD/test/features/color.css -------------------------------------------------------------------------------- /test/features/color.out.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segmentio/myth/HEAD/test/features/color.out.css -------------------------------------------------------------------------------- /test/features/custom-media.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segmentio/myth/HEAD/test/features/custom-media.css -------------------------------------------------------------------------------- /test/features/custom-media.out.css: -------------------------------------------------------------------------------- 1 | @media screen and (max-width: 30em) { 2 | /* narrow window styles */ 3 | } -------------------------------------------------------------------------------- /test/features/font-variant.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segmentio/myth/HEAD/test/features/font-variant.css -------------------------------------------------------------------------------- /test/features/font-variant.out.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segmentio/myth/HEAD/test/features/font-variant.out.css -------------------------------------------------------------------------------- /test/features/hex-alpha.css: -------------------------------------------------------------------------------- 1 | 2 | input { 3 | background-color: #39fa; 4 | } -------------------------------------------------------------------------------- /test/features/hex-alpha.out.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segmentio/myth/HEAD/test/features/hex-alpha.out.css -------------------------------------------------------------------------------- /test/features/import.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segmentio/myth/HEAD/test/features/import.css -------------------------------------------------------------------------------- /test/features/import.include.css: -------------------------------------------------------------------------------- 1 | 2 | html { 3 | color: black; 4 | } -------------------------------------------------------------------------------- /test/features/import.out.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segmentio/myth/HEAD/test/features/import.out.css -------------------------------------------------------------------------------- /test/features/prefixes.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segmentio/myth/HEAD/test/features/prefixes.css -------------------------------------------------------------------------------- /test/features/prefixes.out.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segmentio/myth/HEAD/test/features/prefixes.out.css -------------------------------------------------------------------------------- /test/features/rebeccapurple.css: -------------------------------------------------------------------------------- 1 | * { 2 | color: rebeccapurple; 3 | } 4 | -------------------------------------------------------------------------------- /test/features/rebeccapurple.out.css: -------------------------------------------------------------------------------- 1 | * { 2 | color: #663399; 3 | } -------------------------------------------------------------------------------- /test/features/variables.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segmentio/myth/HEAD/test/features/variables.css -------------------------------------------------------------------------------- /test/features/variables.out.css: -------------------------------------------------------------------------------- 1 | 2 | body { 3 | color: #0F0; 4 | } -------------------------------------------------------------------------------- /test/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segmentio/myth/HEAD/test/index.js -------------------------------------------------------------------------------- /test/sourcemap/imported.css: -------------------------------------------------------------------------------- 1 | 2 | html { 3 | background: blue; 4 | } 5 | -------------------------------------------------------------------------------- /test/sourcemap/in.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segmentio/myth/HEAD/test/sourcemap/in.css -------------------------------------------------------------------------------- /test/sourcemap/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segmentio/myth/HEAD/test/sourcemap/index.html -------------------------------------------------------------------------------- /test/sourcemap/out.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segmentio/myth/HEAD/test/sourcemap/out.css --------------------------------------------------------------------------------