├── .gitignore ├── README.md ├── dist ├── index.js └── index.js.map ├── index.html ├── keywords.js ├── package.json ├── src ├── index.js └── modules │ ├── formatter.js │ ├── parser.js │ └── unilight.js └── tests └── main.js /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .cache -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felippe-regazio/unilight/HEAD/README.md -------------------------------------------------------------------------------- /dist/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felippe-regazio/unilight/HEAD/dist/index.js -------------------------------------------------------------------------------- /dist/index.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felippe-regazio/unilight/HEAD/dist/index.js.map -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felippe-regazio/unilight/HEAD/index.html -------------------------------------------------------------------------------- /keywords.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felippe-regazio/unilight/HEAD/keywords.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felippe-regazio/unilight/HEAD/package.json -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felippe-regazio/unilight/HEAD/src/index.js -------------------------------------------------------------------------------- /src/modules/formatter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felippe-regazio/unilight/HEAD/src/modules/formatter.js -------------------------------------------------------------------------------- /src/modules/parser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felippe-regazio/unilight/HEAD/src/modules/parser.js -------------------------------------------------------------------------------- /src/modules/unilight.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felippe-regazio/unilight/HEAD/src/modules/unilight.js -------------------------------------------------------------------------------- /tests/main.js: -------------------------------------------------------------------------------- 1 | // PENDING --------------------------------------------------------------------------------