├── .gitignore ├── README.md ├── index.js ├── package.json ├── runtime.js └── test └── relative ├── index.js └── tpl └── question ├── choose └── choose.tpl └── question.tpl /.gitignore: -------------------------------------------------------------------------------- 1 | \.idea 2 | node_modules 3 | *.log -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zombieyang/tmodjs-loader/HEAD/README.md -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zombieyang/tmodjs-loader/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zombieyang/tmodjs-loader/HEAD/package.json -------------------------------------------------------------------------------- /runtime.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zombieyang/tmodjs-loader/HEAD/runtime.js -------------------------------------------------------------------------------- /test/relative/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zombieyang/tmodjs-loader/HEAD/test/relative/index.js -------------------------------------------------------------------------------- /test/relative/tpl/question/choose/choose.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zombieyang/tmodjs-loader/HEAD/test/relative/tpl/question/choose/choose.tpl -------------------------------------------------------------------------------- /test/relative/tpl/question/question.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zombieyang/tmodjs-loader/HEAD/test/relative/tpl/question/question.tpl --------------------------------------------------------------------------------