├── .github └── CONTRIBUTING.md ├── .gitignore ├── .jshintrc ├── .npmignore ├── .travis.yml ├── Gruntfile.js ├── HISTORY.md ├── LICENSE-MIT ├── README.md ├── package.json ├── specs ├── layouts_manager_spec.js └── package_matcher_spec.js ├── tasks ├── bower_task.js └── lib │ ├── asset_copier.js │ ├── bower_assets.js │ ├── layouts_manager.js │ └── package_matcher.js └── test ├── bower_assets_test.js └── fixtures ├── current_state_of_bower ├── component.json └── components │ └── jquery │ └── jquery.js ├── extended_component_json ├── component.json └── components │ ├── bootstrap-sass │ ├── js │ │ ├── bootstrap-affix.js │ │ └── bootstrap-modal.js │ └── lib │ │ └── _mixins.scss │ └── jquery │ └── jquery.js ├── honor_bowerrc ├── bo_co │ ├── bootstrap │ │ ├── js │ │ │ └── bootstrap-affix.js │ │ └── lib │ │ │ └── _mixins.scss │ └── jquery │ │ └── jquery.js └── component.json ├── regexOverridesOfBower ├── bo_co │ ├── bootstrap │ │ ├── js │ │ │ └── bootstrap-affix.js │ │ └── lib │ │ │ └── _mixins.scss │ ├── jquery │ │ ├── jquery-migrate.js │ │ ├── jquery-migrate.min.js │ │ ├── jquery.js │ │ └── jquery.min.js │ └── underscore │ │ ├── underscore.css │ │ └── underscore.js └── component.json └── support_bower_components_folder ├── bower.json └── bower_components └── jquery └── jquery.js /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatskevich/grunt-bower-task/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatskevich/grunt-bower-task/HEAD/.gitignore -------------------------------------------------------------------------------- /.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatskevich/grunt-bower-task/HEAD/.jshintrc -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | npm-debug.log 3 | tmp 4 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatskevich/grunt-bower-task/HEAD/.travis.yml -------------------------------------------------------------------------------- /Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatskevich/grunt-bower-task/HEAD/Gruntfile.js -------------------------------------------------------------------------------- /HISTORY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatskevich/grunt-bower-task/HEAD/HISTORY.md -------------------------------------------------------------------------------- /LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatskevich/grunt-bower-task/HEAD/LICENSE-MIT -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatskevich/grunt-bower-task/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatskevich/grunt-bower-task/HEAD/package.json -------------------------------------------------------------------------------- /specs/layouts_manager_spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatskevich/grunt-bower-task/HEAD/specs/layouts_manager_spec.js -------------------------------------------------------------------------------- /specs/package_matcher_spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatskevich/grunt-bower-task/HEAD/specs/package_matcher_spec.js -------------------------------------------------------------------------------- /tasks/bower_task.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatskevich/grunt-bower-task/HEAD/tasks/bower_task.js -------------------------------------------------------------------------------- /tasks/lib/asset_copier.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatskevich/grunt-bower-task/HEAD/tasks/lib/asset_copier.js -------------------------------------------------------------------------------- /tasks/lib/bower_assets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatskevich/grunt-bower-task/HEAD/tasks/lib/bower_assets.js -------------------------------------------------------------------------------- /tasks/lib/layouts_manager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatskevich/grunt-bower-task/HEAD/tasks/lib/layouts_manager.js -------------------------------------------------------------------------------- /tasks/lib/package_matcher.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatskevich/grunt-bower-task/HEAD/tasks/lib/package_matcher.js -------------------------------------------------------------------------------- /test/bower_assets_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatskevich/grunt-bower-task/HEAD/test/bower_assets_test.js -------------------------------------------------------------------------------- /test/fixtures/current_state_of_bower/component.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatskevich/grunt-bower-task/HEAD/test/fixtures/current_state_of_bower/component.json -------------------------------------------------------------------------------- /test/fixtures/current_state_of_bower/components/jquery/jquery.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixtures/extended_component_json/component.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatskevich/grunt-bower-task/HEAD/test/fixtures/extended_component_json/component.json -------------------------------------------------------------------------------- /test/fixtures/extended_component_json/components/bootstrap-sass/js/bootstrap-affix.js: -------------------------------------------------------------------------------- 1 | affix -------------------------------------------------------------------------------- /test/fixtures/extended_component_json/components/bootstrap-sass/js/bootstrap-modal.js: -------------------------------------------------------------------------------- 1 | modal -------------------------------------------------------------------------------- /test/fixtures/extended_component_json/components/bootstrap-sass/lib/_mixins.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixtures/extended_component_json/components/jquery/jquery.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixtures/honor_bowerrc/bo_co/bootstrap/js/bootstrap-affix.js: -------------------------------------------------------------------------------- 1 | affix -------------------------------------------------------------------------------- /test/fixtures/honor_bowerrc/bo_co/bootstrap/lib/_mixins.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixtures/honor_bowerrc/bo_co/jquery/jquery.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixtures/honor_bowerrc/component.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatskevich/grunt-bower-task/HEAD/test/fixtures/honor_bowerrc/component.json -------------------------------------------------------------------------------- /test/fixtures/regexOverridesOfBower/bo_co/bootstrap/js/bootstrap-affix.js: -------------------------------------------------------------------------------- 1 | affix -------------------------------------------------------------------------------- /test/fixtures/regexOverridesOfBower/bo_co/bootstrap/lib/_mixins.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixtures/regexOverridesOfBower/bo_co/jquery/jquery-migrate.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixtures/regexOverridesOfBower/bo_co/jquery/jquery-migrate.min.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixtures/regexOverridesOfBower/bo_co/jquery/jquery.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixtures/regexOverridesOfBower/bo_co/jquery/jquery.min.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixtures/regexOverridesOfBower/bo_co/underscore/underscore.css: -------------------------------------------------------------------------------- 1 | css 2 | -------------------------------------------------------------------------------- /test/fixtures/regexOverridesOfBower/bo_co/underscore/underscore.js: -------------------------------------------------------------------------------- 1 | js 2 | -------------------------------------------------------------------------------- /test/fixtures/regexOverridesOfBower/component.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatskevich/grunt-bower-task/HEAD/test/fixtures/regexOverridesOfBower/component.json -------------------------------------------------------------------------------- /test/fixtures/support_bower_components_folder/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatskevich/grunt-bower-task/HEAD/test/fixtures/support_bower_components_folder/bower.json -------------------------------------------------------------------------------- /test/fixtures/support_bower_components_folder/bower_components/jquery/jquery.js: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------