Skip to content

Commit

Permalink
Fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
nicolo-ribaudo committed Feb 16, 2020
1 parent 301ef63 commit 92b41b4
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions Makefile
Expand Up @@ -81,12 +81,12 @@ build-no-bundle: clean clean-lib
watch: build-no-bundle
BABEL_ENV=development $(YARN) gulp watch

code-quality-ci: flowcheck-ci lint-ci
code-quality-ci: flowcheck-ci lint-ci check-compat-data-ci

flowcheck-ci: bootstrap-flowcheck
$(MAKE) flow

code-quality: flow lint
code-quality: flow lint check-compat-data

flow:
$(YARN) flow check --strip-root
Expand All @@ -95,7 +95,7 @@ bootstrap-flowcheck: bootstrap-only
$(YARN) gulp build-babel-types
$(MAKE) build-typings

lint-ci: lint-js-ci lint-ts-ci check-compat-data
lint-ci: lint-js-ci lint-ts-ci

lint-js-ci: bootstrap-only
$(MAKE) lint-js
Expand Down Expand Up @@ -125,6 +125,10 @@ check-compat-data:
build-compat-data:
cd packages/babel-compat-data; $(YARN) run build-data

check-compat-data-ci:
$(YARN) lerna bootstrap --scope @babel/compat-data
$(MAKE) check-compat-data

clean: test-clean
rm -f .npmrc
rm -rf packages/babel-polyfill/browser*
Expand Down

0 comments on commit 92b41b4

Please sign in to comment.