├── .editorconfig ├── .gitattributes ├── .gitignore ├── .jshintrc ├── .travis.yml ├── LICENSE ├── README.md ├── index.js ├── lib └── jdists.js ├── package.json ├── src └── jdists.js └── test ├── fixtures ├── function-text.js ├── function-text.json ├── function-text.output.js ├── hello.js ├── hello.json ├── hello.output.js ├── include.js ├── include.json ├── include.output.js ├── include.txt ├── index.html ├── index.json ├── index.output.html ├── index.txt ├── style.css ├── style.json ├── style.output.css ├── templatestrings.js ├── templatestrings.json └── templatestrings.output.js └── test.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fex-team/fis-parser-jdists/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fex-team/fis-parser-jdists/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fex-team/fis-parser-jdists/HEAD/.gitignore -------------------------------------------------------------------------------- /.jshintrc: -------------------------------------------------------------------------------- 1 | { 2 | "es5": false 3 | } -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fex-team/fis-parser-jdists/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fex-team/fis-parser-jdists/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fex-team/fis-parser-jdists/HEAD/README.md -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./lib/jdists'); -------------------------------------------------------------------------------- /lib/jdists.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fex-team/fis-parser-jdists/HEAD/lib/jdists.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fex-team/fis-parser-jdists/HEAD/package.json -------------------------------------------------------------------------------- /src/jdists.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fex-team/fis-parser-jdists/HEAD/src/jdists.js -------------------------------------------------------------------------------- /test/fixtures/function-text.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fex-team/fis-parser-jdists/HEAD/test/fixtures/function-text.js -------------------------------------------------------------------------------- /test/fixtures/function-text.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /test/fixtures/function-text.output.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fex-team/fis-parser-jdists/HEAD/test/fixtures/function-text.output.js -------------------------------------------------------------------------------- /test/fixtures/hello.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fex-team/fis-parser-jdists/HEAD/test/fixtures/hello.js -------------------------------------------------------------------------------- /test/fixtures/hello.json: -------------------------------------------------------------------------------- 1 | { 2 | "remove": "dev-version,debug" 3 | } -------------------------------------------------------------------------------- /test/fixtures/hello.output.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fex-team/fis-parser-jdists/HEAD/test/fixtures/hello.output.js -------------------------------------------------------------------------------- /test/fixtures/include.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fex-team/fis-parser-jdists/HEAD/test/fixtures/include.js -------------------------------------------------------------------------------- /test/fixtures/include.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /test/fixtures/include.output.js: -------------------------------------------------------------------------------- 1 | (function() { 2 | /* version 1.0 */ 3 | console.log('hello world!'); 4 | })(); -------------------------------------------------------------------------------- /test/fixtures/include.txt: -------------------------------------------------------------------------------- 1 | /* version 1.0 */ -------------------------------------------------------------------------------- /test/fixtures/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fex-team/fis-parser-jdists/HEAD/test/fixtures/index.html -------------------------------------------------------------------------------- /test/fixtures/index.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /test/fixtures/index.output.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fex-team/fis-parser-jdists/HEAD/test/fixtures/index.output.html -------------------------------------------------------------------------------- /test/fixtures/index.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fex-team/fis-parser-jdists/HEAD/test/fixtures/index.txt -------------------------------------------------------------------------------- /test/fixtures/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fex-team/fis-parser-jdists/HEAD/test/fixtures/style.css -------------------------------------------------------------------------------- /test/fixtures/style.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /test/fixtures/style.output.css: -------------------------------------------------------------------------------- 1 | div { 2 | width: 100%; 3 | } -------------------------------------------------------------------------------- /test/fixtures/templatestrings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fex-team/fis-parser-jdists/HEAD/test/fixtures/templatestrings.js -------------------------------------------------------------------------------- /test/fixtures/templatestrings.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /test/fixtures/templatestrings.output.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fex-team/fis-parser-jdists/HEAD/test/fixtures/templatestrings.output.js -------------------------------------------------------------------------------- /test/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fex-team/fis-parser-jdists/HEAD/test/test.js --------------------------------------------------------------------------------