├── .editorconfig ├── .gitignore ├── collaborators.md ├── index.js ├── package.json ├── readme.md └── test ├── config.xml ├── config2.xml ├── gulpfile.js ├── package.json ├── package1.json ├── package2.json └── subdir ├── config2.xml ├── package1.json ├── package2.json └── package3.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelTaylor3d/gulp-cordova-bump/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelTaylor3d/gulp-cordova-bump/HEAD/.gitignore -------------------------------------------------------------------------------- /collaborators.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelTaylor3d/gulp-cordova-bump/HEAD/collaborators.md -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelTaylor3d/gulp-cordova-bump/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelTaylor3d/gulp-cordova-bump/HEAD/package.json -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelTaylor3d/gulp-cordova-bump/HEAD/readme.md -------------------------------------------------------------------------------- /test/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelTaylor3d/gulp-cordova-bump/HEAD/test/config.xml -------------------------------------------------------------------------------- /test/config2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelTaylor3d/gulp-cordova-bump/HEAD/test/config2.xml -------------------------------------------------------------------------------- /test/gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelTaylor3d/gulp-cordova-bump/HEAD/test/gulpfile.js -------------------------------------------------------------------------------- /test/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "1.0.0" 3 | } 4 | -------------------------------------------------------------------------------- /test/package1.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "1.0.0" 3 | } -------------------------------------------------------------------------------- /test/package2.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "1.0.0" 3 | } -------------------------------------------------------------------------------- /test/subdir/config2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelTaylor3d/gulp-cordova-bump/HEAD/test/subdir/config2.xml -------------------------------------------------------------------------------- /test/subdir/package1.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "1.0.0" 3 | } -------------------------------------------------------------------------------- /test/subdir/package2.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "1.0.0" 3 | } -------------------------------------------------------------------------------- /test/subdir/package3.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "1.0.0" 3 | } --------------------------------------------------------------------------------