Commit Graph

3770 Commits

Author SHA1 Message Date
a5399361ee chore(release): releasing with latest updates (#11) 2018-06-13 19:19:37 +05:30
4d8a91375d chore(npm): update repository paths and bump version 2018-06-13 13:46:19 +05:30
e72755461c Fix: Match single quotes (#17539)
* Fix: Match single quotes

* Fix: slash direction

* Fix: Regex expression and refined tests
2018-06-13 13:02:11 +05:30
9e84a54d72 fix: rename incorrect variable name (#17538)
* fix: rename incorrect variable name

* Fix: Bad variable naming
2018-06-13 13:02:11 +05:30
ed5e02d7ae test(challenges): Corrected expected average value (#17562)
Modified 8.675 to 8.52 in three places for correct average value

BREAKING CHANGE: n/a

Closes #17561
2018-06-13 13:02:11 +05:30
8d57e1607f fixed line breaks in 'Prevent Object Mutation' challenge (#17547)
* fix(seed):line breaks in 'Prevent Object Mutation' challenge #17541

* Update es6.json
2018-06-13 13:02:11 +05:30
8c119560d6 Fix: Remove duplicate test (#17543) 2018-06-13 13:02:11 +05:30
1245522cba Fix typo in CSS Grid: Use Media Queries to Create Responsive Layouts (#17534) 2018-06-13 13:02:11 +05:30
821164d519 Update to challenge verbiage for radio/checkbox (#17527)
Updated create radio / create checkbox to identify that the input element is not required to be inside the label element. Tried to use soft language without making user think it was incorrect because current tests still require the input to be nested within the label element. Also, this is not necessarily incorrect syntax as noted at W3 - Forms - Labels: https://bit.ly/2sLiXvE. Nesting implies implicit association vs explicit association using for attribute.
2018-06-13 13:02:11 +05:30
1336450ccc chore: add patch to gitignore (#7) 2018-06-11 19:55:04 +05:30
46e40f5aba chore(tools): add linting, fomatting and other tools 2018-06-11 19:28:21 +05:30
5e2c24e3b8 feat(interview-prep): Porting Rosetta problems (#17480)
* feat(interview-prep): Porting Rosetta problems

* Changes done

* Update rosetta-code.json

* Update rosetta-code.json
2018-06-11 18:22:32 +05:30
68b089e95d fix(challenges): add info about ReactDOM.render in an early react challenge (#17186) (#17473) 2018-06-11 18:22:32 +05:30
c9f572d271 fix(seed): updated basic javascript URLs for hints (#17445)
* Updated json file with right url values

* Updated url links after review

* Updated another broken url link after review
2018-06-11 18:22:32 +05:30
0874eca77c fix: added new test and fixed incorrect variable (#17471)
* Added new test and fixed incorrect variable

* Fix: Incorrect sentences and descriptions

* Update es6.json
2018-06-11 18:22:32 +05:30
95b5c479fc chore: add build status from travis (#4) 2018-06-09 04:38:09 +05:30
aa131b94d6 feat: add documentations and travis config (#3) 2018-06-09 04:26:02 +05:30
2cea1bdccc chore(scripts): remove scripts for server specific logic (#2) 2018-06-09 04:12:17 +05:30
d59514866e feat: add dev dependencies (#1) 2018-06-08 18:31:07 +05:30
ff8b13b316 fix(challenges): Corrected a test case for challenge (#17162)
For the last test case in 'Access Props using this.props' challenge, I
updated the test condition to check that the value of the tempPassword
prop is the same as the content within the <strong/> tags. This test
case will ensure that there is text present in the strong tag and its
value is as expected.

BREAKING CHANGE: none

Closes #17134
2018-05-30 01:47:52 +08:00
2a3369aa6b Updated basic-javascript.json file for challenge Manipulate arrays with shift; issue: #17235 2018-05-25 19:28:17 +00:00
7c694c2666 Fix/react versions (#17236)
<!-- freeCodeCamp Pull Request Template -->

<!-- IMPORTANT Please review https://github.com/freeCodeCamp/freeCodeCamp/blob/staging/CONTRIBUTING.md for detailed contributing guidelines -->
<!-- Help with PRs can be found at https://gitter.im/FreeCodeCamp/Contributors -->
<!-- Make sure that your PR is not a duplicate -->

#### Pre-Submission Checklist
<!-- Go over all points below, and after creating the PR, tick all the checkboxes that apply. -->
<!-- All points should be verified, otherwise, read the CONTRIBUTING guidelines from above-->
<!-- If you're unsure about any of these, don't hesitate to ask. We're here to help! -->
- [x] Your pull request targets the `staging` branch of freeCodeCamp.
- [x] Branch starts with either `fix/`, `feature/`, or `translate/` (e.g. `fix/signin-issue`)
- [ ] You have only one commit (if not, [squash](http://forum.freecodecamp.org/t/how-to-squash-multiple-commits-into-one-with-git/13231) them into one commit).
- [x] All new and existing tests pass the command `npm test`. Use `git commit --amend` to amend any fixes.

#### Type of Change
<!-- What type of change does your code introduce? After creating the PR, tick the checkboxes that apply. -->
- [x] Small bug fix (non-breaking change which fixes an issue)
- [ ] New feature (non-breaking change which adds new functionality)
- [ ] Breaking change (fix or feature that would change existing functionality)
- [ ] Add new translation (feature adding new translations)

#### Checklist:
<!-- Go over all points below, and after creating the PR, tick the checkboxes that apply. -->
<!-- If you're unsure about any of these, don't hesitate to ask in the Contributors room linked above. We're here to help! -->
- [x] Tested changes locally.
- [x] Addressed currently open issue (replace XXXXX with an issue no in next line)

Closes #17215

#### Description
<!-- Describe your changes in detail -->
2018-05-25 17:27:15 +05:30
15a92597ed fix(seed): challenge types (#17229)
Closes #17221
2018-05-24 21:27:09 +05:30
d039668a8f fix(challenges): Fix wrong word on Basic CSS lesson (#17219)
Updated 'valuables' to say 'variables' since that's what the description was about.
2018-05-23 12:59:34 +05:30
bcee3174aa style(challenges): Format Descriptions for Project Euler 1-16 (#17172)
Here are a list of style changes made for problems 1-16:

* 2: Centered text
* 6: Centered text and `<sup>` tags
* 8: Centered text
* 9: Centered text, `<var>`, and `<sup>` tags
* 11: Centered text and spacing between number grid and next paragraph
* 12: Tab spacing (padding-left: 4em)
* 14: Centered text, `<var>` tags, and tab spacing (padding-left: 4em)
* 16: `<sup>` tags

BREAKING CHANGE: None
2018-05-23 12:58:03 +05:30
b996d86cc3 style(challenges): Format Descriptions for Project Euler 17-26 (#17175)
Here's a list of style changes made for problems 17-26:

*17: Bold tags
*18: Bold tags
*19: ul and li tags for leap year information
*20: var tags and line break
*21: var tags
*22: added code tag
*23: var tags
*24: centered text and var tag
*25: sup tags, tab-like spacing, and CSS grid for spacing
*26: sub, sup, and var tags, and CSS grid for spacing

BREAKING CHANGE: None
2018-05-23 12:56:51 +05:30
4e645a5ff6 Package: Validate challenges on test (#17216)
This PR allows us to validate the schema during test.

It also removes some cruft from the seed files and ensures only the required data is packaged and consumable, reducing the package weight somewhat.
2018-05-22 18:13:14 +05:30
afc948890c chore(package): Version Bump (#17206) 2018-05-22 12:24:40 +05:30
1a25f60c6e build(np): Add publishing via np to seed 2018-05-21 20:02:54 +05:30
ee66d84ccb feat(package): Initial Curriculum separation (#17174)
* feat(package): Initial Curriculum separation

* feat(package): Add org scope to package

* chore(ooops): Remove development file

* feat(npm): Add .npmignore

* fix(paths): Fix curriculum paths

* feat(build): Add a build step

* chore(seed): Move package file back to seed

* fix(ignore): Fix .npmIgnore file

* chore(docs): Update README

* chore(seed): Rename coding interview blocks

* fix(seed): Challenge files now fit into learn

* chore(seed): Update seed files for use in learn

* chore(escapes): Unescape script tags of jQuery
2018-05-21 19:26:49 +05:30
63482406ea style(seed): Remove typo from chai-http-IV challenge title (#17148) (#17149) 2018-05-15 12:36:36 -04:00
4809f8b138 Chore: Update User model (#17171)
* fix(logs): Remove console.log's

* chore(challengeMap): challengeMap -> completedChallenges

* chore(userModel): Update user model

* feat(userIDs): Add user ident fields

* chore(github): Remove more refs to github data
2018-05-15 19:26:26 +05:30
c212258e2d fix(seed): removed typo from task description (#17166) 2018-05-15 10:16:33 +05:30
28eacebaf9 fix(challenges): Add Tests and Solution for Project Euler 50 (#17152)
Added an additional test and a solution adapted from the one
@elliotjz contributed to the fCC Arcade Mode.

BREAKING CHANGE: None
2018-05-14 15:12:04 +01:00
9a8fc6bf69 feat(challenge-redirect): Make '/challenge' and '/map' redirect to learn (#17144)
* feat(challenge-redirect): Make '/challenge' and '/map' redirect to learn

* fix(linting): Generate pathMigrationMap on 'prelint-js'

* fix(script): fix "only once" script

* fix(lock): Fix lock file
2018-05-14 13:04:51 +05:30
58e82ea802 fix(challenges): Edit Description, Add Tests and Solution for Project Euler 47 (#17142)
Edited the description to more closely match the spacing and line breaks
from projecteuler.net. Added more tests, updated the challenge seed,
and added a solution from user @elliotjz contributed to the fCC
Arcade Mode.

BREAKING CHANGE: None
2018-05-11 22:15:55 -04:00
b7be885c73 fix(challenges): Edit challengeSeed and Add Solution for Project Euler 49 (#17146)
Changed the name of the function in the challengeSeed from euler49 to the
challenge name. Also added a solution that @elliotjz contributed to the
fCC Arcade Mode.

BREAKING CHANGE: None
2018-05-11 17:23:28 -04:00
080c27e7cb fix(challenges): Edit Description, Tests, and Add Solution for Project Euler 48 (#17145)
Added `<sup>` tags to the description to make it more like the one on
projecteuler.net. Also added additional tests and a solution.

Here's a solution for QA:

```
```

BREAKING CHANGE: None
2018-05-11 17:00:46 -04:00
26c29f25aa fix(seed): Change tag nesting order (#17093)
Changed em tag to wrap around p tag

Closes #17077
2018-05-08 20:09:14 -04:00
7235ca1def fix(challenges): Edit Description and Add Solution for Project Euler 46 (#17140)
Updated the problem description with `<sup>` tags. Also added a solution
that user @elliotjz contributed to the fCC Arcade Mode.

BREAKING CHANGE: None
2018-05-08 15:53:01 -04:00
6586ecd5b6 fix(challenges): Edit Description and Add Solution for Project Euler 45 (#17126)
Updated the problem description with an inline CSS grid, <sup>, and
<var> tags. Also added a solution that user @elliotjz contributed
to the fCC Arcade Mode.

BREAKING CHANGE: None
2018-05-08 15:43:20 -04:00
cca9b8b3a8 fix(challenges): Edit Description and Add Solution for Project Euler 44 (#17127)
Updated the problem description with <sup> and <var> tags, and centered
some text. Also, added a solution that user @elliotjz contributed to the
fCC Arcade Mode.

BREAKING CHANGE: None
2018-05-06 21:48:17 +05:30
2b5e39e1f8 fix(seed): Bootstrap default button fix (#17082)
added btn-default class to lessons with basic Bootstrap buttons, which
add proper styles for default button

Closes #17075
2018-05-03 10:07:00 -04:00
23ff6cc16f fix(seed): Fix tests for apisMicroservicesCert (#17105)
Users are now capable of claiming the "Apis and Microservices"
certificate.
2018-05-03 18:34:44 +05:30
1ca9933192 fix: Claiming respWebDesignCert tests (#17102)
Changed the "Build a Personal Portfolio" id in the
responsive-web-design-certificate tests to the correct id.

Users are now capable of claiming the "Responsive Web Design Certificate".
2018-05-03 18:33:09 +05:30
746413bd68 fix(seed): Fixed test to fail if console.clear is still commented out (#17097)
Closes #16958
2018-05-03 18:31:42 +05:30
8ee64ebde5 fix: index number in QA challenge test (#17096)
* fix: index number in QA challenge test

* fix: removed json files from git
2018-05-03 02:01:44 +05:30
1bd4767fa0 fix: typo in responsive web design projects (#17100) 2018-05-03 02:01:05 +05:30
1b99e6d297 fix(challenges): Edit Description, Add Tests and Solution for Project Euler 40 (#17087)
Updated the problem description to more closely match the one on the Project Euler page. Also added more tests along with a solution that user @elliotjz contributed to the fCC Arcade Mode.

BREAKING CHANGE: None
2018-04-28 14:31:51 +05:30
a88cdee9c3 fix(challenges): Edit Description and Add Solution for Project Euler 38 (#17086)
Updated the problem description with `<val>` tags and improved the
formatting. Also added a solution that user @elliotjz contributed to
the fCC Arcade Mode.

BREAKING CHANGE: None
2018-04-28 14:31:23 +05:30