├── .gitignore ├── index.js ├── package.json ├── readme.md └── test ├── deps ├── dep1.js └── umd.js ├── testBasic.js ├── testError.js ├── testUmd.js └── utils └── configInputOutputDone.js /.gitignore: -------------------------------------------------------------------------------- 1 | /node_modules 2 | -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariusGundersen/gulp-amd-optimizer/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariusGundersen/gulp-amd-optimizer/HEAD/package.json -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariusGundersen/gulp-amd-optimizer/HEAD/readme.md -------------------------------------------------------------------------------- /test/deps/dep1.js: -------------------------------------------------------------------------------- 1 | define(function(){return "dependency1";}); -------------------------------------------------------------------------------- /test/deps/umd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariusGundersen/gulp-amd-optimizer/HEAD/test/deps/umd.js -------------------------------------------------------------------------------- /test/testBasic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariusGundersen/gulp-amd-optimizer/HEAD/test/testBasic.js -------------------------------------------------------------------------------- /test/testError.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariusGundersen/gulp-amd-optimizer/HEAD/test/testError.js -------------------------------------------------------------------------------- /test/testUmd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariusGundersen/gulp-amd-optimizer/HEAD/test/testUmd.js -------------------------------------------------------------------------------- /test/utils/configInputOutputDone.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariusGundersen/gulp-amd-optimizer/HEAD/test/utils/configInputOutputDone.js --------------------------------------------------------------------------------