diff --git a/CHANGELOG.md b/CHANGELOG.md index 37286d7..c075190 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,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.0.2 +------------------------------ +*July 20, 2018* + +### Changed +- Change text +- Make image https +- Add package name to package.json (Doh!) + + v0.0.1 ------------------------------ *July 20, 2018* diff --git a/package.json b/package.json index d7a995b..8b5dc66 100644 --- a/package.json +++ b/package.json @@ -1,18 +1,18 @@ { - "name": "@justeat/{package-name}", + "name": "@justeat/f-recruit-message", "description": "", - "version": "0.0.1", + "version": "0.0.2", "main": "dist/index.js", - "homepage": "https://github.com/justeat/{package-name}", + "homepage": "https://github.com/justeat/f-recruit-message", "contributors": [ - "Github contributors " + "Github contributors " ], "repository": { "type": "git", - "url": "git@github.com:justeat/{package-name}.git" + "url": "git@github.com:justeat/f-recruit-message.git" }, "bugs": { - "url": "https://github.com/justeat/{package-name}/issues" + "url": "https://github.com/justeat/f-recruit-message/issues" }, "license": "Apache-2.0", "engines": { @@ -31,12 +31,6 @@ "fozzie", "eyeglass-module" ], - "eyeglass": { - "name": "{package-name}", - "sassDir": "src/scss", - "needs": "^1.1.2", - "exports": false - }, "scripts": { "prepare": "concurrently -n \"lint,compile,test\" -c \"blue,yellow,green\" --kill-others-on-fail \"yarn lint\" \"yarn compile\" \"yarn run test\"", "lint": "gulp scripts:lint", @@ -45,9 +39,6 @@ "test:watch": "jest --coverage --watch", "test:coveralls": "cat coverage/lcov.info | coveralls" }, - "stylelint": { - "extends": "@justeat/stylelint-config-fozzie" - }, "browserslist": [ "> 5%", "last 2 versions", diff --git a/src/js/index.js b/src/js/index.js index e5bb461..8b7fdf5 100644 --- a/src/js/index.js +++ b/src/js/index.js @@ -2,14 +2,14 @@ * Write the recruitment message to the console */ const recruitMessage = function () { - console.log("\n\n%c %c \n\n- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -\nLove web development? Love takeaway? Why not join us?\n- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -\n\n%chttps://careers.just-eat.com/opportunities\n\n", - "font-size:50px; margin-left:35px; padding-right:295px; background: url(http://dy3erx8o0a6nh.cloudfront.net/images/logo-just-eat-2016_x2.png) no-repeat;')", + console.log("\n\n%c %c \n\n- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -\nLove development? Love takeaway? Then why not join us?\n- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -\n\n%chttps://careers.just-eat.com/opportunities\n\n", + "font-size:50px; margin-left:35px; padding-right:295px; background: url(https://dy3erx8o0a6nh.cloudfront.net/images/logo-just-eat-2016_x2.png) no-repeat;')", "font-family: Hind Vadodara, Arial, sans-serif; font-size: 14px; line-height: 1.5; color: #535353; background-color: #fff;", "font-family: Hind Vadodara, Arial, sans-serif; font-size: 14px; line-height: 1.5; color: #535353; background-color: #fff; text-decoration: underline; margin-left: 55px"); }; /** - * Export f-recruit-message function + * Export recruitMessage() */ module.exports = { recruitMessage: recruitMessage