├── .gitignore ├── .jshintrc ├── .npmignore ├── .travis.yml ├── LICENSE ├── README.md ├── index.js ├── package.json ├── templates └── umd.jst └── test ├── fixtures ├── exports.js ├── helloworld.js ├── test-1.js └── test-2.js ├── stream.js └── test.js /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | *.log 3 | /template.js 4 | -------------------------------------------------------------------------------- /.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulp-community/gulp-wrap-umd/HEAD/.jshintrc -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulp-community/gulp-wrap-umd/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulp-community/gulp-wrap-umd/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulp-community/gulp-wrap-umd/HEAD/README.md -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulp-community/gulp-wrap-umd/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulp-community/gulp-wrap-umd/HEAD/package.json -------------------------------------------------------------------------------- /templates/umd.jst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulp-community/gulp-wrap-umd/HEAD/templates/umd.jst -------------------------------------------------------------------------------- /test/fixtures/exports.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulp-community/gulp-wrap-umd/HEAD/test/fixtures/exports.js -------------------------------------------------------------------------------- /test/fixtures/helloworld.js: -------------------------------------------------------------------------------- 1 | function(){ 2 | return 'Hello World'; 3 | } -------------------------------------------------------------------------------- /test/fixtures/test-1.js: -------------------------------------------------------------------------------- 1 | console.log('test 1'); 2 | -------------------------------------------------------------------------------- /test/fixtures/test-2.js: -------------------------------------------------------------------------------- 1 | console.log('test 2'); 2 | -------------------------------------------------------------------------------- /test/stream.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulp-community/gulp-wrap-umd/HEAD/test/stream.js -------------------------------------------------------------------------------- /test/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulp-community/gulp-wrap-umd/HEAD/test/test.js --------------------------------------------------------------------------------