-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Modify JS file to comply with the new data structure (#24)
* modify js to support new API output * fix pipeline * change request type to POST * modify according to new output structure --------- Co-authored-by: Shashank Atreya <[email protected]>
- Loading branch information
Showing
3 changed files
with
118 additions
and
202 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,3 +3,4 @@ | |
/node_modules/ | ||
composer.lock | ||
package-lock.json | ||
.idea/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,39 @@ | ||
{ | ||
"require-dev": { | ||
"mediawiki/mediawiki-codesniffer": "*", | ||
"mediawiki/minus-x": "*", | ||
"php-parallel-lint/php-parallel-lint": "*", | ||
"php-parallel-lint/php-console-highlighter": "*" | ||
}, | ||
"scripts": { | ||
"test": [ | ||
"parallel-lint --colors --exclude vendor .", | ||
"lint": [ | ||
"parallel-lint --colors --exclude vendor ." | ||
], | ||
"phpcs": [ | ||
"phpcs -p -s" | ||
], | ||
"fix": "phpcbf" | ||
"minus-x": [ | ||
"minus-x check ." | ||
], | ||
"test": [ | ||
"composer minus-x", | ||
"composer lint", | ||
"composer phpcs" | ||
], | ||
"fix": [ | ||
"minus-x fix .", | ||
"phpcbf" | ||
], | ||
"phpcs-junit": [ | ||
"phpcs --report=junit > report-phpcs.xml" | ||
], | ||
"reports-junit": [ | ||
"composer phpcs-junit" | ||
] | ||
}, | ||
"config": { | ||
"allow-plugins": { | ||
"dealerdirect/phpcodesniffer-composer-installer": true | ||
} | ||
} | ||
} |
Oops, something went wrong.