Skip to content
This repository has been archived by the owner on May 13, 2020. It is now read-only.

Commit

Permalink
Update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
henriquecarv committed Apr 27, 2019
1 parent b052852 commit ae084b7
Show file tree
Hide file tree
Showing 5 changed files with 115 additions and 35 deletions.
5 changes: 3 additions & 2 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -1,12 +1,13 @@
root = true

[*]
indent_style = space
indent_style = tab
indent_size = 2
end_of_line = lf
charset = utf-8
trim_trailing_whitespace = false
insert_final_newline = true

[*.md]
trim_trailing_whitespace = false
trim_trailing_whitespace = false
indent_style = space
8 changes: 0 additions & 8 deletions .whitesource

This file was deleted.

12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,24 +22,24 @@ Gulp plugin to bump beta version property in versioning files
- Create a gulpfile to run your tasks.

```javascript
const gulp = require('gulp');
const beta = require('gulp-bump-beta');
const gulp = require("gulp");
const beta = require("gulp-bump-beta");

const paths = {package: './package.json', manifest: './manifest.json'};
const paths = { package: "./package.json", manifest: "./manifest.json" };

const bumpBeta = () => {
return gulp
.src(Object.values(paths))
.pipe(beta())
.pipe(gulp.dest('./'));
.pipe(gulp.dest("./"));
};

gulp.task('bump-beta', gulp.series(bumpBeta));
gulp.task("bump-beta", gulp.series(bumpBeta));
```

### License

Copylefted (c) 2018 [Henrique Carvalho da Cruz][1] Licensed under the [MIT license][2].
Copylefted (c) 2019 [Henrique Carvalho da Cruz][1] Licensed under the [MIT license][2].

[1]: https://henriquecarv.com
[2]: ./LICENSE
119 changes: 103 additions & 16 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,13 +19,13 @@
"author": "Henrique Carvalho da Cruz <henriquecarv.cruz@gmail.com> (https://henriquecarv.com)",
"license": "MIT",
"devDependencies": {
"eslint": "^5.10.0",
"eslint": "^5.16.0",
"eslint-config-google": "^0.12.0",
"eslint-plugin-import": "^2.14.0"
"eslint-plugin-import": "^2.17.2"
},
"dependencies": {
"plugin-error": "^1.0.1",
"plugin-log": "^0.1.0",
"through2": "^3.0.0"
"through2": "^3.0.1"
}
}

0 comments on commit ae084b7

Please sign in to comment.