Skip to content

Commit ad32fa2

Browse files
authored
Merge v1.0.7
#### Development Changes - Source files are now in ES2015, compiled with Babel - ESLint replaces JSHint and JSCS - Tests are refactored and now in CoffeeScript - Automatic deployment added through Travis
2 parents d9b0882 + d12b7bb commit ad32fa2

33 files changed

+324
-528
lines changed

.babelrc

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
{
2+
"presets": [
3+
"es2015"
4+
],
5+
"plugins": [
6+
"add-module-exports"
7+
]
8+
}

.eslintrc.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
extends: eslint:recommended
2+
parserOptions:
3+
ecmaVersion: 6
4+
sourceType: module
5+
env:
6+
node: true

.gitignore

Lines changed: 4 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,4 @@
1-
.DS_Store
2-
logs
3-
*.log
4-
pids
5-
*.pid
6-
*.seed
7-
lib-cov
8-
coverage
9-
.lock-wscript
10-
npm-debug.log*
11-
node_modules
1+
/coverage/
2+
/lib/
3+
/node_modules/
4+
/npm-debug.log

.jscs.json

Lines changed: 0 additions & 8 deletions
This file was deleted.

.jshintrc

Lines changed: 0 additions & 5 deletions
This file was deleted.

.npmignore

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
/coverage/
2+
/src/
3+
/.babelrc
4+
/.editorconfig
5+
/.eslintrc.yml
6+
/.gitignore
7+
/.travis.yml

.travis.yml

Lines changed: 18 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,23 @@
11
language: node_js
22
node_js:
3-
- "stable"
4-
- "5.0"
5-
- "4.0"
3+
- "6"
4+
- "4"
65
- "0.12"
76
- "0.10"
8-
after_script:
7+
after_success:
98
- npm run coveralls
10-
branches:
11-
only:
12-
- master
9+
before_deploy:
10+
- npm run build
11+
deploy:
12+
provider: npm
13+
api_key:
14+
secure: iZZgNpXKoBt+O/xjmh9bhoxKV0Yth8LuxpDCE0ULD4kGlx/yMyGsSllLu1RHPKJKu4e/hB4svq9Qk8SJLH+q7drld1JzwkT9YPgYNKx4YyHzvi79sI7SQa+yS2wrgaKPxErBgi2FX5Dssy9Mw+bkTAsPpHrc+l8ElxCcpllJKJr6kuk1IhWlt406ZColZE0jYX1GLgLed/VLVPr95tx/bZJEAfo7zNMn3kjGOG5GR5tid2i9CLLrPf6VcjWzoLzuqlE4NRrfD1lf+poOnH6URp89Wq0Ar8lWtBPpwaE5FDgMg2K3HlErdYt0DNRkC/hwxtYYNBrzeSHdFHwV5lOKODKZVIVTQ6b4mMzC1JCThxQy2Ayci3bnzMW3ZiE0xr8h+zDWiZWQa38PLCZfdfVv+15jqa/Bx2kKU3Utkua/Fk83O9tVvFoDcBvepY23zhoyJquB3xQ5v+xzDexLFU0gLgLAc+d4nP84AzJgKQYO94KnV96UkrSWQeavck87BcxZKhXLTqqIzuqGv5Ep32WjCOVcxyG4hcN+rAArKyI1YwfDAA/rcN1xj5KVzoTnoBppqTXczhumqsp8zcu9q0CPvbXCTeo4QE6bV1LadStLzer5B3NnTid0WFJ1tvInKFQf92diNZTfb6znbc53ZGDfRuVE97v66iaph7BtVfqsqfU=
15+
email:
16+
secure: ABRzp+20NrgciL4tdftlCINA9MHp2Ldd8R3k+v2ekILOR/n3Vomxd5qbmHhP/AiFWYEUZw1fU7zg6NNaxmtXRKvnLrpkA0aDeFBIphJ/wN/RSyR0hHO4VChf7bQYZnjpw8hJQy3Q3q41McKdTAc0MyoBELLcBh7bODgLzla1YqZRSb95XFJgK1g8umcKQ3HURkBLGSNimyXYqrukRAr7IIp7PYmovQzyEMNTmsSHJiE005/gHWv14ly+MGcRl27HlrDa0WWZMn5oRXUyiLgR7yhmmZOCK2VzC4nhm5J39j0vexY8YuxXyyd7NlUipcwIP9XiMeqX7t6w+DPCskYh4xq7iqV+jC2PRYaL+fKVXvJAJCDFgrSi3pJAtge7EFdcfqLZrdaekmHt9O9BLXKXd0QTEX+snaSW5nc1EwdoRHibUnybRIl5aZnrr88FK8EhtAvkJdhlqb1Ij98+/KHhEvlzgOJIMewykZv8Aa7QqDlBw9zAHJH4ZAxQfPa72lo9gIoc/1I18pUDHbXtzJL+dVEfk/zjrtGnZ7Ag1wJX6pGaNhndhTTIaFhAaDUojQAkeee5WmUTTgTHmjPjiCryXiKfbLhdXL3c3lXD4EnbBP5Gzv2Yu4YQMTVg1OcDi4zduussmN0uf+Ahm9dNIKkvrcTvAwPJ1tOqnbGH6SX75Zs=
17+
skip_cleanup: true
18+
on:
19+
repo: akim-mcmath/gulp-transform
20+
node: "4"
21+
tags: true
22+
after_deploy:
23+
- npm run unbuild

CHANGELOG.md

Lines changed: 0 additions & 18 deletions
This file was deleted.

LICENSE.txt renamed to LICENSE

File renamed without changes.

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ Copyright © 2016 Akim McMath. Licensed under the [MIT License][License link
127127
[NPM link]: https://npmjs.org/package/gulp-transform
128128
[Version badge]: https://img.shields.io/npm/v/gulp-transform.svg?style=flat-square
129129
[License badge]: https://img.shields.io/npm/l/gulp-transform.svg?style=flat-square
130-
[License link]: LICENSE.txt
130+
[License link]: LICENSE
131131
[Build badge]: https://img.shields.io/travis/akim-mcmath/gulp-transform/master.svg?style=flat-square
132132
[Build link]: https://travis-ci.org/akim-mcmath/gulp-transform
133133
[Coverage badge]: https://img.shields.io/coveralls/akim-mcmath/gulp-transform/master.svg?style=flat-square&service=github

0 commit comments

Comments
 (0)