├── .gitattributes ├── .github └── workflows │ └── test.yml ├── .gitignore ├── .jshintrc ├── AUTHORS ├── CHANGELOG ├── CONTRIBUTING.md ├── Gruntfile.js ├── LICENSE-MIT ├── README.md ├── docs ├── concat-examples.md ├── concat-options.md └── concat-overview.md ├── package.json ├── tasks ├── concat.js └── lib │ ├── comment.js │ └── sourcemap.js └── test ├── concat_test.js ├── expected ├── custom_options ├── default_options ├── handling_invalid_files ├── overwrite ├── process_dir_path ├── process_function ├── sourcemap2_link.map ├── sourcemap3_embed.map ├── sourcemap_css.css ├── sourcemap_css.css.map ├── sourcemap_inline ├── sourcemap_js.js └── sourcemap_js.js.map ├── fixtures ├── banner.js ├── banner2.js ├── banner3.js ├── css1.css ├── css2.css ├── file0 ├── file1 ├── file2 ├── js1.js ├── js2.js ├── mappedsource ├── mappedsource_embed └── maps │ └── mappedsource_embed.map └── sourcemap_tester.html /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntjs/grunt-contrib-concat/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntjs/grunt-contrib-concat/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | npm-debug.log 3 | tmp 4 | -------------------------------------------------------------------------------- /.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntjs/grunt-contrib-concat/HEAD/.jshintrc -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntjs/grunt-contrib-concat/HEAD/AUTHORS -------------------------------------------------------------------------------- /CHANGELOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntjs/grunt-contrib-concat/HEAD/CHANGELOG -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntjs/grunt-contrib-concat/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntjs/grunt-contrib-concat/HEAD/Gruntfile.js -------------------------------------------------------------------------------- /LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntjs/grunt-contrib-concat/HEAD/LICENSE-MIT -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntjs/grunt-contrib-concat/HEAD/README.md -------------------------------------------------------------------------------- /docs/concat-examples.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntjs/grunt-contrib-concat/HEAD/docs/concat-examples.md -------------------------------------------------------------------------------- /docs/concat-options.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntjs/grunt-contrib-concat/HEAD/docs/concat-options.md -------------------------------------------------------------------------------- /docs/concat-overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntjs/grunt-contrib-concat/HEAD/docs/concat-overview.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntjs/grunt-contrib-concat/HEAD/package.json -------------------------------------------------------------------------------- /tasks/concat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntjs/grunt-contrib-concat/HEAD/tasks/concat.js -------------------------------------------------------------------------------- /tasks/lib/comment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntjs/grunt-contrib-concat/HEAD/tasks/lib/comment.js -------------------------------------------------------------------------------- /tasks/lib/sourcemap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntjs/grunt-contrib-concat/HEAD/tasks/lib/sourcemap.js -------------------------------------------------------------------------------- /test/concat_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntjs/grunt-contrib-concat/HEAD/test/concat_test.js -------------------------------------------------------------------------------- /test/expected/custom_options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntjs/grunt-contrib-concat/HEAD/test/expected/custom_options -------------------------------------------------------------------------------- /test/expected/default_options: -------------------------------------------------------------------------------- 1 | file1 2 | file2 -------------------------------------------------------------------------------- /test/expected/handling_invalid_files: -------------------------------------------------------------------------------- 1 | file1 2 | file2 -------------------------------------------------------------------------------- /test/expected/overwrite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntjs/grunt-contrib-concat/HEAD/test/expected/overwrite -------------------------------------------------------------------------------- /test/expected/process_dir_path: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/expected/process_function: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntjs/grunt-contrib-concat/HEAD/test/expected/process_function -------------------------------------------------------------------------------- /test/expected/sourcemap2_link.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntjs/grunt-contrib-concat/HEAD/test/expected/sourcemap2_link.map -------------------------------------------------------------------------------- /test/expected/sourcemap3_embed.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntjs/grunt-contrib-concat/HEAD/test/expected/sourcemap3_embed.map -------------------------------------------------------------------------------- /test/expected/sourcemap_css.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntjs/grunt-contrib-concat/HEAD/test/expected/sourcemap_css.css -------------------------------------------------------------------------------- /test/expected/sourcemap_css.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntjs/grunt-contrib-concat/HEAD/test/expected/sourcemap_css.css.map -------------------------------------------------------------------------------- /test/expected/sourcemap_inline: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntjs/grunt-contrib-concat/HEAD/test/expected/sourcemap_inline -------------------------------------------------------------------------------- /test/expected/sourcemap_js.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntjs/grunt-contrib-concat/HEAD/test/expected/sourcemap_js.js -------------------------------------------------------------------------------- /test/expected/sourcemap_js.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntjs/grunt-contrib-concat/HEAD/test/expected/sourcemap_js.js.map -------------------------------------------------------------------------------- /test/fixtures/banner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntjs/grunt-contrib-concat/HEAD/test/fixtures/banner.js -------------------------------------------------------------------------------- /test/fixtures/banner2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntjs/grunt-contrib-concat/HEAD/test/fixtures/banner2.js -------------------------------------------------------------------------------- /test/fixtures/banner3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntjs/grunt-contrib-concat/HEAD/test/fixtures/banner3.js -------------------------------------------------------------------------------- /test/fixtures/css1.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntjs/grunt-contrib-concat/HEAD/test/fixtures/css1.css -------------------------------------------------------------------------------- /test/fixtures/css2.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntjs/grunt-contrib-concat/HEAD/test/fixtures/css2.css -------------------------------------------------------------------------------- /test/fixtures/file0: -------------------------------------------------------------------------------- 1 | this 2 | file 3 | + many 4 | lines -------------------------------------------------------------------------------- /test/fixtures/file1: -------------------------------------------------------------------------------- 1 | file1 -------------------------------------------------------------------------------- /test/fixtures/file2: -------------------------------------------------------------------------------- 1 | file2 -------------------------------------------------------------------------------- /test/fixtures/js1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntjs/grunt-contrib-concat/HEAD/test/fixtures/js1.js -------------------------------------------------------------------------------- /test/fixtures/js2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntjs/grunt-contrib-concat/HEAD/test/fixtures/js2.js -------------------------------------------------------------------------------- /test/fixtures/mappedsource: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntjs/grunt-contrib-concat/HEAD/test/fixtures/mappedsource -------------------------------------------------------------------------------- /test/fixtures/mappedsource_embed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntjs/grunt-contrib-concat/HEAD/test/fixtures/mappedsource_embed -------------------------------------------------------------------------------- /test/fixtures/maps/mappedsource_embed.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntjs/grunt-contrib-concat/HEAD/test/fixtures/maps/mappedsource_embed.map -------------------------------------------------------------------------------- /test/sourcemap_tester.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntjs/grunt-contrib-concat/HEAD/test/sourcemap_tester.html --------------------------------------------------------------------------------