├── .bowerrc ├── .editorconfig ├── .gitignore ├── .jshintrc ├── .npmrc ├── .travis.yml ├── CONTRIBUTING.md ├── Gruntfile.js ├── README.md ├── bower.json ├── package.json ├── tasks └── bowercopy.js ├── test ├── bowercopy_test.js └── golden_files │ ├── jquery.ui.core.js │ └── jquery.ui.widget.js └── yarn.lock /.bowerrc: -------------------------------------------------------------------------------- 1 | { 2 | "directory": "bower_modules" 3 | } 4 | -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timmywil/grunt-bowercopy/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timmywil/grunt-bowercopy/HEAD/.gitignore -------------------------------------------------------------------------------- /.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timmywil/grunt-bowercopy/HEAD/.jshintrc -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | tag-version-prefix="" 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timmywil/grunt-bowercopy/HEAD/.travis.yml -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timmywil/grunt-bowercopy/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timmywil/grunt-bowercopy/HEAD/Gruntfile.js -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timmywil/grunt-bowercopy/HEAD/README.md -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timmywil/grunt-bowercopy/HEAD/bower.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timmywil/grunt-bowercopy/HEAD/package.json -------------------------------------------------------------------------------- /tasks/bowercopy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timmywil/grunt-bowercopy/HEAD/tasks/bowercopy.js -------------------------------------------------------------------------------- /test/bowercopy_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timmywil/grunt-bowercopy/HEAD/test/bowercopy_test.js -------------------------------------------------------------------------------- /test/golden_files/jquery.ui.core.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timmywil/grunt-bowercopy/HEAD/test/golden_files/jquery.ui.core.js -------------------------------------------------------------------------------- /test/golden_files/jquery.ui.widget.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timmywil/grunt-bowercopy/HEAD/test/golden_files/jquery.ui.widget.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timmywil/grunt-bowercopy/HEAD/yarn.lock --------------------------------------------------------------------------------