Skip to content

Commit

Permalink
Merge pull request #8 from justeat/v1.3.0
Browse files Browse the repository at this point in the history
v2.0.0 - Remove IE support and replace Travis CI config file by Circle CI one
  • Loading branch information
kathywklee authored Jul 28, 2022
2 parents 6175fa6 + ac8b23e commit b1044cd
Show file tree
Hide file tree
Showing 5 changed files with 55 additions and 25 deletions.
41 changes: 41 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
# version: 2.1 # use CircleCI 2.1
#
# Check https://circleci.com/docs/language-javascript/ for more details
#
version: 2.1

workflows:
build:
jobs:
- build:
context: web-core


jobs:
build:
docker:
# specify the version you desire here
- image: cimg/node:16.15 # For latest available images check – https://circleci.com/docs/2.0/docker-image-tags.json

working_directory: ~/repo

steps: # a collection of executable commands
- checkout # special step to check out source code to working directory
- restore_cache:
name: Restore Yarn Package Cache
keys:
- yarn-packages-{{ checksum "yarn.lock" }}
- run:
name: Install Dependencies
command: yarn install --frozen-lockfile
- save_cache:
name: Save Yarn Package Cache
key: yarn-packages-{{ checksum "yarn.lock" }}
paths:
- ~/.cache/yarn
- run: # Lint JS files
name: Run Lint Task on files
command: yarn lint
- run: # run PR checks
name: PR Checks (Dangerfile)
command: yarn danger ci
23 changes: 0 additions & 23 deletions .travis.yml

This file was deleted.

13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,19 @@ 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).


v2.0.0
------------------------------
*July 27 2022*

### Added
- CircleCI config file.

### Changed
- Remove IE 11 from the supported browsers list.

### Removed
- TravisCI config file.

v1.2.0
------------------------------
*November 3 2020*
Expand Down
1 change: 0 additions & 1 deletion index.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
module.exports = [
'>= 1% in GB',
'ie 11',
'last 3 Chrome versions',
'last 2 Firefox versions',
'last 2 Edge versions',
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@justeat/browserslist-config-fozzie",
"version": "1.2.0",
"version": "2.0.0",
"description": "Just Eat's Browserslist config used in UI packages",
"main": "index.js",
"scripts": {
Expand Down

0 comments on commit b1044cd

Please sign in to comment.