├── .gitignore ├── .npmignore ├── .npmrc ├── LICENSE ├── README.md ├── example ├── example.html ├── gulpfile.js └── version.json ├── index.js └── package.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkeLLLa/gulp-version-append/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkeLLLa/gulp-version-append/HEAD/.npmignore -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkeLLLa/gulp-version-append/HEAD/.npmrc -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkeLLLa/gulp-version-append/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkeLLLa/gulp-version-append/HEAD/README.md -------------------------------------------------------------------------------- /example/example.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkeLLLa/gulp-version-append/HEAD/example/example.html -------------------------------------------------------------------------------- /example/gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkeLLLa/gulp-version-append/HEAD/example/gulpfile.js -------------------------------------------------------------------------------- /example/version.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "0.0.2" 3 | } 4 | -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkeLLLa/gulp-version-append/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkeLLLa/gulp-version-append/HEAD/package.json --------------------------------------------------------------------------------