Skip to content
This repository has been archived by the owner on Mar 23, 2023. It is now read-only.

Commit

Permalink
Merge pull request #1 from justeat/V0.0.2-UpdateText
Browse files Browse the repository at this point in the history
v0.0.2 - Minor text update
  • Loading branch information
simonsandersje authored Jul 20, 2018
2 parents c4f9276 + 37df312 commit ddc2b15
Showing 3 changed files with 19 additions and 18 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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*
21 changes: 6 additions & 15 deletions package.json
Original file line number Diff line number Diff line change
@@ -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 <https://github.com/justeat/{package-name}/graphs/contributors>"
"Github contributors <https://github.com/justeat/f-recruit-message/graphs/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",
6 changes: 3 additions & 3 deletions src/js/index.js
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit ddc2b15

Please sign in to comment.