javascript - Bower: How to skip (ignore) some files in downloaded packages -


is possible config bower in way not download specific files or folders? example minify .js files myself don't need .min.js files. such files make ide (phpstorm) confused in finding source code of functions , make code indexing process inefficient. bower-installer seems solution, however, prefer use bower itself.

if creating bower package can specify files ignored. example:

{ "name": "yourawesomepackagename", "version": "0.0.1", "main": "dist/your-awesome-js-module.js", "ignore": [ "source", "spec", ".bowerrc", ".gitignore", ".jshintignore", ".jshintrc", "bower.json", "gruntfile.js", "package.json", "readme.md" ], "dependencies": { "jquery": ">=1.10.2", "underscore": "~1.5.2" }, "devdependencies": { "jquery-mockjax": "~1.5.2" } } source: http://bob.yexley.net/creating-and-maintaining-your-own-bower-package/


Comments

Popular posts from this blog

shopping cart - Page redirect not working PHP -

php - How to modify a menu to show sub-menus -

python - Installing PyDev in eclipse is failed -