Skip to content

Commit

Permalink
v0.10.0 - Updating babel presets and minor package updates (#11)
Browse files Browse the repository at this point in the history
  • Loading branch information
ashleynolan authored Jan 30, 2018
1 parent 96e4cf2 commit c2b952a
Show file tree
Hide file tree
Showing 5 changed files with 161 additions and 74 deletions.
2 changes: 1 addition & 1 deletion .babelrc
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"presets": [
"es2015",
"env",
"babili"
]
}
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,16 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).


v0.10.0
------------------------------
*January 29, 2018*

### Changed
- Updated `browserlist` in `package.json`
- Updated to use `babel-preset-env`
- Updated package versions (minor updates)


v0.9.0
------------------------------
*January 19, 2018*
Expand Down
1 change: 1 addition & 0 deletions gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ const { build } = require('@justeat/gulp-build-fozzie');

build(gulp, {
js: {
jsDir: '',
lintPaths: ['{src,test}/**/*.js']
}
});
14 changes: 10 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@justeat/f-toggle",
"description": "Fozzie vanilla JS toggle library.",
"version": "0.9.0",
"version": "0.10.0",
"main": "dist/index.js",
"homepage": "https://github.com/justeat/f-toggle",
"contributors": [
Expand All @@ -24,13 +24,13 @@
"qwery": "^4.0.0"
},
"devDependencies": {
"@justeat/gulp-build-fozzie": "^7.1.0",
"@justeat/gulp-build-fozzie": "^7.2.0",
"babel-cli": "^6.26.0",
"babel-preset-babili": "^0.1.4",
"babel-preset-es2015": "^6.24.1",
"babel-preset-env": "^1.6.1",
"concurrently": "^3.5.1",
"coveralls": "^3.0.0",
"danger": "^3.0.5",
"danger": "^3.1.3",
"gulp": "^3.9.1",
"js-test-buddy": "^0.0.7"
},
Expand All @@ -44,6 +44,12 @@
"test": "gulp scripts:test:coverage",
"test:coveralls": "cat coverage/lcov.info | coveralls"
},
"browserslist": [
"> 5%",
"last 2 versions",
"Safari >= 8",
"not ie 10"
],
"jest": {
"collectCoverageFrom": [
"src/**/*.{js,jsx}"
Expand Down
Loading

0 comments on commit c2b952a

Please sign in to comment.