├── .gitignore ├── LICENSE ├── README.md ├── index.html ├── package.json ├── public ├── main.js └── styles.css ├── src ├── main.js └── styles │ ├── main.scss │ └── open-type.scss ├── webpack.config.js └── webpack.dist.config.js /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | CNAME 3 | .DS_Store 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magalhini/open-type-playground/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magalhini/open-type-playground/HEAD/README.md -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magalhini/open-type-playground/HEAD/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magalhini/open-type-playground/HEAD/package.json -------------------------------------------------------------------------------- /public/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magalhini/open-type-playground/HEAD/public/main.js -------------------------------------------------------------------------------- /public/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magalhini/open-type-playground/HEAD/public/styles.css -------------------------------------------------------------------------------- /src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magalhini/open-type-playground/HEAD/src/main.js -------------------------------------------------------------------------------- /src/styles/main.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magalhini/open-type-playground/HEAD/src/styles/main.scss -------------------------------------------------------------------------------- /src/styles/open-type.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magalhini/open-type-playground/HEAD/src/styles/open-type.scss -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magalhini/open-type-playground/HEAD/webpack.config.js -------------------------------------------------------------------------------- /webpack.dist.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magalhini/open-type-playground/HEAD/webpack.dist.config.js --------------------------------------------------------------------------------