Skip to content

V4 Changes #31

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 32 commits into from
Nov 28, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
32 commits
Select commit Hold shift + click to select a range
31e84ed
Adds support for v4 API and updates challenge service to use it.
a-lowe Jun 27, 2018
156381b
Updates getUserChallenges to use v4.
a-lowe Jun 28, 2018
c65af46
Merge branch 'master' into new-develop-mm
a-lowe Jun 29, 2018
ba0098e
Fixes issues with track being null and TCO events not displaying on e…
a-lowe Jun 30, 2018
81a0e8b
Adds "prepack" script
birdofpreyru Jul 2, 2018
9379580
Allows "-rcXXX" suffix on release tags
birdofpreyru Jul 2, 2018
d2b3912
Fix previous commit
birdofpreyru Jul 2, 2018
aa1bc0c
Another fix
birdofpreyru Jul 2, 2018
7581820
Update of release config
birdofpreyru Jul 2, 2018
bffd66c
Adds delay to challenge refresh on register/unregister to allow time …
a-lowe Jul 9, 2018
0c39928
Merge branch 'develop' into new-develop-mm
birdofpreyru Jul 10, 2018
405ec60
Adds challenge normalizations for legacy Marathon Matches. Fixes sor…
a-lowe Jul 18, 2018
709de69
Update package lock.
a-lowe Jul 18, 2018
af28491
Update version.
a-lowe Jul 18, 2018
8f45e42
Merge branch 'develop' into new-develop-mm
birdofpreyru Aug 16, 2018
bb6b247
After merge
sushilshinde Oct 25, 2018
fabce7b
fixing build issues
sushilshinde Oct 31, 2018
52f94bb
fixing build issues
sushilshinde Oct 31, 2018
3c914fe
Merge pull request #28 from sushilshinde/new-develop-mm
sushilshinde Oct 31, 2018
f05e63e
pushing build artifact - this is for testing only
sushilshinde Oct 31, 2018
14646af
deleting prod build artifacts
sushilshinde Nov 1, 2018
e0250be
issue_1732 fixed linting issues
Nov 1, 2018
d6f3edb
Merge pull request #29 from rashmi73/issue_1732
sushilshinde Nov 3, 2018
ef07dd6
adding prod dist - for testign only
sushilshinde Nov 5, 2018
bc45c27
deleting prod dist
sushilshinde Nov 19, 2018
54b5b14
removing hardcoding
sushilshinde Nov 19, 2018
3e32332
building dev dist
sushilshinde Nov 19, 2018
c761a65
adding prod folder
sushilshinde Nov 22, 2018
726db44
Changed npm version
sushilshinde Nov 28, 2018
1e4b154
Deleting dist folder, updating gitignore
sushilshinde Nov 28, 2018
aae7bd1
Fix eslint configs and tests
ThomasKranitsas Nov 28, 2018
626aa51
Merge pull request #30 from topcoder-platform/new-develop-mm
ThomasKranitsas Nov 28, 2018
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file added .DS_Store
Binary file not shown.
2 changes: 1 addition & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,6 @@ workflows:
branches:
ignore: /.*/
tags:
only: /v[0-9]+(\.[0-9]+)*/
only: /v[0-9]+(\.[0-9]+)*(-[0-9]+)?/
requires:
- test
40 changes: 38 additions & 2 deletions .eslintrc
Original file line number Diff line number Diff line change
@@ -1,3 +1,39 @@
{
"extends": "./node_modules/topcoder-react-utils/config/eslint/default.json"
}
"extends": "./node_modules/topcoder-react-utils/config/eslint/default.json",
"rules": {
"jsx-a11y/label-has-for": [
2,
{
"components": [
"Label"
],
"required": {
"some": [
"nesting",
"id"
]
},
"allowChildren": false
}
],
"jsx-a11y/label-has-associated-control": [
2,
{
"labelComponents": [
"CustomLabel"
],
"labelAttributes": [
"inputLabel"
],
"controlComponents": [
"CustomInput"
],
"depth": 3
}
],
"no-unused-vars": 0,
"no-undef": 0,
"react/jsx-no-undef": 0,
"react/require-default-props": 0
}
}
2 changes: 1 addition & 1 deletion .nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v8.11.1
8.11.2
1 change: 0 additions & 1 deletion __tests__/__snapshots__/index.js.snap
Original file line number Diff line number Diff line change
Expand Up @@ -253,7 +253,6 @@ Object {
"getService": [Function],
"normalizeChallenge": [Function],
"normalizeChallengeDetails": [Function],
"normalizeMarathonMatch": [Function],
},
"communities": Object {
"default": undefined,
Expand Down
Loading