mirror of
https://github.com/scratchfoundation/scratch-www.git
synced 2024-11-30 02:56:20 -05:00
corrected parentheses for lint error
This commit is contained in:
parent
a60da11f8a
commit
8eec0d3a87
3 changed files with 5 additions and 5 deletions
6
Makefile
6
Makefile
|
@ -14,10 +14,10 @@ build:
|
||||||
@make webpack
|
@make webpack
|
||||||
|
|
||||||
clean:
|
clean:
|
||||||
rm -rf ./build
|
|
||||||
rm -rf ./intl
|
|
||||||
mkdir -p build
|
mkdir -p build
|
||||||
|
rm -rf ./build/*
|
||||||
mkdir -p intl
|
mkdir -p intl
|
||||||
|
rm -rf ./intl/*
|
||||||
|
|
||||||
deploy:
|
deploy:
|
||||||
@make build
|
@make build
|
||||||
|
@ -70,7 +70,7 @@ integration:
|
||||||
|
|
||||||
smoke:
|
smoke:
|
||||||
$(TAP) ./test/integration/smoke-testing/*.js --timeout=3600
|
$(TAP) ./test/integration/smoke-testing/*.js --timeout=3600
|
||||||
|
|
||||||
smoke-verbose:
|
smoke-verbose:
|
||||||
$(TAP) ./test/integration/smoke-testing/*.js --timeout=3600 -R spec
|
$(TAP) ./test/integration/smoke-testing/*.js --timeout=3600 -R spec
|
||||||
|
|
||||||
|
|
|
@ -14,7 +14,7 @@ services:
|
||||||
hostname: scratch-www-app
|
hostname: scratch-www-app
|
||||||
environment:
|
environment:
|
||||||
- API_HOST=http://localhost:8491
|
- API_HOST=http://localhost:8491
|
||||||
- FALLBACK=http://localhost:8080
|
- FALLBACK=http://scratchr2-app:8080
|
||||||
- USE_DOCKER_WATCHOPTIONS=true
|
- USE_DOCKER_WATCHOPTIONS=true
|
||||||
build:
|
build:
|
||||||
context: ./
|
context: ./
|
||||||
|
|
|
@ -404,7 +404,7 @@ module.exports.getProjectStudios = id => (dispatch => {
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
module.exports.getCuratedStudios = (username) => (dispatch => {
|
module.exports.getCuratedStudios = username => (dispatch => {
|
||||||
dispatch(module.exports.setFetchStatus('curatedStudios', module.exports.Status.FETCHING));
|
dispatch(module.exports.setFetchStatus('curatedStudios', module.exports.Status.FETCHING));
|
||||||
api({
|
api({
|
||||||
uri: `/users/${username}/studios/curate`
|
uri: `/users/${username}/studios/curate`
|
||||||
|
|
Loading…
Reference in a new issue