Skip to content

Commit

Permalink
v0.2.0 - Updating Babel config presets (#7)
Browse files Browse the repository at this point in the history
  • Loading branch information
ashleynolan authored and DamianMullins committed Jan 30, 2018
1 parent 82cadcb commit 04e9cd3
Show file tree
Hide file tree
Showing 5 changed files with 2,258 additions and 1,159 deletions.
4 changes: 2 additions & 2 deletions .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.2.0
------------------------------
*January 29, 2018*

### Changed
- Updated `browserlist` in `package.json`
- Updated to use `babel-preset-env`
- Updated gulp-build-fozzie version


v0.1.2
------------------------------
*January 17, 2018*
Expand Down
6 changes: 5 additions & 1 deletion gulpfile.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
const gulp = require('gulp');
const { build } = require('@justeat/gulp-build-fozzie');

build(gulp);
build(gulp, {
js: {
jsDir: ''
}
});
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-dom",
"description": "Fozzie JS DOM queries library.",
"version": "0.1.2",
"version": "0.2.0",
"main": "dist/index.js",
"files": [
"dist"
Expand All @@ -25,12 +25,12 @@
"qwery": "^4.0.0"
},
"devDependencies": {
"@justeat/gulp-build-fozzie": "^6.0.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": "^2.13.1",
"coveralls": "^3.0.0",
"gulp": "^3.9.1"
},
"keywords": [
Expand All @@ -48,6 +48,12 @@
"stylelint": {
"extends": "@justeat/stylelint-config-fozzie"
},
"browserslist": [
"> 5%",
"last 2 versions",
"Safari >= 8",
"not ie 10"
],
"jest": {
"collectCoverageFrom": [
"src/**/*.{js,jsx}"
Expand Down
Loading

0 comments on commit 04e9cd3

Please sign in to comment.