├── .gitignore ├── .jscsrc ├── .jshintrc ├── .npmignore ├── .travis.yml ├── CHANGELOG.md ├── LICENSE ├── README.md ├── lib └── index.js ├── package.json ├── src └── index.ls └── test ├── fixtures ├── bare-expected.js ├── expected.js ├── expected.js.map ├── expected2.js.map ├── file.ls ├── illegal.ls ├── json-expected.json └── package.ls └── main.ls /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomchentw/gulp-livescript/HEAD/.gitignore -------------------------------------------------------------------------------- /.jscsrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomchentw/gulp-livescript/HEAD/.jscsrc -------------------------------------------------------------------------------- /.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomchentw/gulp-livescript/HEAD/.jshintrc -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomchentw/gulp-livescript/HEAD/.npmignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomchentw/gulp-livescript/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomchentw/gulp-livescript/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomchentw/gulp-livescript/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomchentw/gulp-livescript/HEAD/README.md -------------------------------------------------------------------------------- /lib/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomchentw/gulp-livescript/HEAD/lib/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomchentw/gulp-livescript/HEAD/package.json -------------------------------------------------------------------------------- /src/index.ls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomchentw/gulp-livescript/HEAD/src/index.ls -------------------------------------------------------------------------------- /test/fixtures/bare-expected.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomchentw/gulp-livescript/HEAD/test/fixtures/bare-expected.js -------------------------------------------------------------------------------- /test/fixtures/expected.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomchentw/gulp-livescript/HEAD/test/fixtures/expected.js -------------------------------------------------------------------------------- /test/fixtures/expected.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomchentw/gulp-livescript/HEAD/test/fixtures/expected.js.map -------------------------------------------------------------------------------- /test/fixtures/expected2.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomchentw/gulp-livescript/HEAD/test/fixtures/expected2.js.map -------------------------------------------------------------------------------- /test/fixtures/file.ls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomchentw/gulp-livescript/HEAD/test/fixtures/file.ls -------------------------------------------------------------------------------- /test/fixtures/illegal.ls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomchentw/gulp-livescript/HEAD/test/fixtures/illegal.ls -------------------------------------------------------------------------------- /test/fixtures/json-expected.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomchentw/gulp-livescript/HEAD/test/fixtures/json-expected.json -------------------------------------------------------------------------------- /test/fixtures/package.ls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomchentw/gulp-livescript/HEAD/test/fixtures/package.ls -------------------------------------------------------------------------------- /test/main.ls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomchentw/gulp-livescript/HEAD/test/main.ls --------------------------------------------------------------------------------