├── .editorconfig ├── .gitignore ├── .travis.yml ├── LICENSE.md ├── Makefile ├── README.md ├── contributing.md ├── lib └── index.coffee ├── package.json └── test ├── fixtures ├── basic │ ├── app.coffee │ ├── doge.js │ ├── index.js │ └── not_browserify.js ├── coffee-js-mix │ ├── app.coffee │ ├── doge.js │ └── index.coffee ├── coffee-minify-sourcemap │ ├── app.coffee │ ├── doge.coffee │ └── index.coffee ├── coffee-minify │ ├── app.coffee │ ├── doge.coffee │ └── index.coffee ├── coffee-sourcemap │ ├── app.coffee │ ├── doge.coffee │ └── index.coffee ├── coffeescript │ ├── app.coffee │ ├── doge.coffee │ └── index.coffee ├── errors │ ├── app.coffee │ ├── doge.js │ ├── index.js │ └── not_browserify.js ├── ignores │ ├── app.coffee │ ├── doge.coffee │ └── index.js ├── minify-sourcemap │ ├── app.coffee │ ├── doge.js │ └── index.js ├── minify │ ├── app.coffee │ ├── doge.js │ └── index.js ├── path-prefix │ ├── app.coffee │ ├── index.coffee │ ├── index.jade │ └── package.json ├── sourcemap │ ├── app.coffee │ ├── doge.js │ └── index.js └── transforms │ ├── app.coffee │ ├── doge.yaml │ └── index.js ├── mocha.opts └── test.coffee /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrot/roots-browserify/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | node_modules 3 | .nyc_output -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrot/roots-browserify/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrot/roots-browserify/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrot/roots-browserify/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrot/roots-browserify/HEAD/README.md -------------------------------------------------------------------------------- /contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrot/roots-browserify/HEAD/contributing.md -------------------------------------------------------------------------------- /lib/index.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrot/roots-browserify/HEAD/lib/index.coffee -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrot/roots-browserify/HEAD/package.json -------------------------------------------------------------------------------- /test/fixtures/basic/app.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrot/roots-browserify/HEAD/test/fixtures/basic/app.coffee -------------------------------------------------------------------------------- /test/fixtures/basic/doge.js: -------------------------------------------------------------------------------- 1 | module.exports = 'wow' 2 | -------------------------------------------------------------------------------- /test/fixtures/basic/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrot/roots-browserify/HEAD/test/fixtures/basic/index.js -------------------------------------------------------------------------------- /test/fixtures/basic/not_browserify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrot/roots-browserify/HEAD/test/fixtures/basic/not_browserify.js -------------------------------------------------------------------------------- /test/fixtures/coffee-js-mix/app.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrot/roots-browserify/HEAD/test/fixtures/coffee-js-mix/app.coffee -------------------------------------------------------------------------------- /test/fixtures/coffee-js-mix/doge.js: -------------------------------------------------------------------------------- 1 | module.exports = 'wow'; 2 | -------------------------------------------------------------------------------- /test/fixtures/coffee-js-mix/index.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrot/roots-browserify/HEAD/test/fixtures/coffee-js-mix/index.coffee -------------------------------------------------------------------------------- /test/fixtures/coffee-minify-sourcemap/app.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrot/roots-browserify/HEAD/test/fixtures/coffee-minify-sourcemap/app.coffee -------------------------------------------------------------------------------- /test/fixtures/coffee-minify-sourcemap/doge.coffee: -------------------------------------------------------------------------------- 1 | module.exports = 'wow' 2 | -------------------------------------------------------------------------------- /test/fixtures/coffee-minify-sourcemap/index.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrot/roots-browserify/HEAD/test/fixtures/coffee-minify-sourcemap/index.coffee -------------------------------------------------------------------------------- /test/fixtures/coffee-minify/app.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrot/roots-browserify/HEAD/test/fixtures/coffee-minify/app.coffee -------------------------------------------------------------------------------- /test/fixtures/coffee-minify/doge.coffee: -------------------------------------------------------------------------------- 1 | module.exports = 'wow' 2 | -------------------------------------------------------------------------------- /test/fixtures/coffee-minify/index.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrot/roots-browserify/HEAD/test/fixtures/coffee-minify/index.coffee -------------------------------------------------------------------------------- /test/fixtures/coffee-sourcemap/app.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrot/roots-browserify/HEAD/test/fixtures/coffee-sourcemap/app.coffee -------------------------------------------------------------------------------- /test/fixtures/coffee-sourcemap/doge.coffee: -------------------------------------------------------------------------------- 1 | module.exports = 'wow' 2 | -------------------------------------------------------------------------------- /test/fixtures/coffee-sourcemap/index.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrot/roots-browserify/HEAD/test/fixtures/coffee-sourcemap/index.coffee -------------------------------------------------------------------------------- /test/fixtures/coffeescript/app.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrot/roots-browserify/HEAD/test/fixtures/coffeescript/app.coffee -------------------------------------------------------------------------------- /test/fixtures/coffeescript/doge.coffee: -------------------------------------------------------------------------------- 1 | module.exports = 'wow' 2 | -------------------------------------------------------------------------------- /test/fixtures/coffeescript/index.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrot/roots-browserify/HEAD/test/fixtures/coffeescript/index.coffee -------------------------------------------------------------------------------- /test/fixtures/errors/app.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrot/roots-browserify/HEAD/test/fixtures/errors/app.coffee -------------------------------------------------------------------------------- /test/fixtures/errors/doge.js: -------------------------------------------------------------------------------- 1 | module.exports = 'wow' 2 | -------------------------------------------------------------------------------- /test/fixtures/errors/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrot/roots-browserify/HEAD/test/fixtures/errors/index.js -------------------------------------------------------------------------------- /test/fixtures/errors/not_browserify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrot/roots-browserify/HEAD/test/fixtures/errors/not_browserify.js -------------------------------------------------------------------------------- /test/fixtures/ignores/app.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrot/roots-browserify/HEAD/test/fixtures/ignores/app.coffee -------------------------------------------------------------------------------- /test/fixtures/ignores/doge.coffee: -------------------------------------------------------------------------------- 1 | module.exports = 'wow' 2 | -------------------------------------------------------------------------------- /test/fixtures/ignores/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrot/roots-browserify/HEAD/test/fixtures/ignores/index.js -------------------------------------------------------------------------------- /test/fixtures/minify-sourcemap/app.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrot/roots-browserify/HEAD/test/fixtures/minify-sourcemap/app.coffee -------------------------------------------------------------------------------- /test/fixtures/minify-sourcemap/doge.js: -------------------------------------------------------------------------------- 1 | module.exports = 'wow' 2 | -------------------------------------------------------------------------------- /test/fixtures/minify-sourcemap/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrot/roots-browserify/HEAD/test/fixtures/minify-sourcemap/index.js -------------------------------------------------------------------------------- /test/fixtures/minify/app.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrot/roots-browserify/HEAD/test/fixtures/minify/app.coffee -------------------------------------------------------------------------------- /test/fixtures/minify/doge.js: -------------------------------------------------------------------------------- 1 | module.exports = 'wow' 2 | -------------------------------------------------------------------------------- /test/fixtures/minify/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrot/roots-browserify/HEAD/test/fixtures/minify/index.js -------------------------------------------------------------------------------- /test/fixtures/path-prefix/app.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrot/roots-browserify/HEAD/test/fixtures/path-prefix/app.coffee -------------------------------------------------------------------------------- /test/fixtures/path-prefix/index.coffee: -------------------------------------------------------------------------------- 1 | console.log 'wowe, such test.' 2 | -------------------------------------------------------------------------------- /test/fixtures/path-prefix/index.jade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrot/roots-browserify/HEAD/test/fixtures/path-prefix/index.jade -------------------------------------------------------------------------------- /test/fixtures/path-prefix/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrot/roots-browserify/HEAD/test/fixtures/path-prefix/package.json -------------------------------------------------------------------------------- /test/fixtures/sourcemap/app.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrot/roots-browserify/HEAD/test/fixtures/sourcemap/app.coffee -------------------------------------------------------------------------------- /test/fixtures/sourcemap/doge.js: -------------------------------------------------------------------------------- 1 | module.exports = 'wow' 2 | -------------------------------------------------------------------------------- /test/fixtures/sourcemap/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrot/roots-browserify/HEAD/test/fixtures/sourcemap/index.js -------------------------------------------------------------------------------- /test/fixtures/transforms/app.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrot/roots-browserify/HEAD/test/fixtures/transforms/app.coffee -------------------------------------------------------------------------------- /test/fixtures/transforms/doge.yaml: -------------------------------------------------------------------------------- 1 | wow: 2 | such: doge 3 | -------------------------------------------------------------------------------- /test/fixtures/transforms/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrot/roots-browserify/HEAD/test/fixtures/transforms/index.js -------------------------------------------------------------------------------- /test/mocha.opts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrot/roots-browserify/HEAD/test/mocha.opts -------------------------------------------------------------------------------- /test/test.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrot/roots-browserify/HEAD/test/test.coffee --------------------------------------------------------------------------------