Skip to content
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

chore: upgrade @babel/* deps #11422

Merged
merged 2 commits into from Apr 15, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
13 changes: 0 additions & 13 deletions Gulpfile.js
Expand Up @@ -226,19 +226,6 @@ gulp.task("build-rollup", () => buildRollup(libBundles));
gulp.task("build-babel-standalone", () => buildRollup(standaloneBundle));

gulp.task("build-babel", () => buildBabel(/* exclude */ libBundles));
gulp.task("build-babel-types-deps", () =>
buildBabel(
/* exclude */ libBundles,
"packages/babel-helper-validator-identifier/src/**/*.js"
)
);
gulp.task("build-babel-types-self", () =>
buildBabel(/* exclude */ libBundles, "packages/babel-types/src/**/*.js")
);
gulp.task(
"build-babel-types",
gulp.series("build-babel-types-deps", "build-babel-types-self")
);
gulp.task("build", gulp.parallel("build-rollup", "build-babel"));

gulp.task("default", gulp.series("build"));
Expand Down
9 changes: 5 additions & 4 deletions Makefile
Expand Up @@ -78,6 +78,9 @@ build-no-bundle: clean clean-lib
$(MAKE) generate-type-helpers
$(MAKE) build-typings

build-no-bundle-ci: bootstrap-only
$(MAKE) build-no-bundle

watch: build-no-bundle
BABEL_ENV=development $(YARN) gulp watch

Expand All @@ -91,9 +94,7 @@ code-quality: flow lint
flow:
$(YARN) flow check --strip-root

bootstrap-flowcheck: bootstrap-only
$(YARN) gulp build-babel-types
$(MAKE) build-typings
bootstrap-flowcheck: build-no-bundle-ci

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

Expand All @@ -103,7 +104,7 @@ lint-js-ci: bootstrap-only
lint-ts-ci: bootstrap-flowcheck
$(MAKE) lint-ts

check-compat-data-ci: bootstrap-only
check-compat-data-ci: build-no-bundle-ci
$(MAKE) check-compat-data

lint: lint-js lint-ts
Expand Down
22 changes: 11 additions & 11 deletions package.json
Expand Up @@ -11,23 +11,23 @@
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.8.7",
"@babel/core": "^7.9.0",
"@babel/eslint-plugin-development": "^1.0.1",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-proposal-dynamic-import": "^7.8.3",
"@babel/plugin-proposal-export-namespace-from": "^7.8.3",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.8.3",
"@babel/plugin-proposal-numeric-separator": "^7.8.3",
"@babel/plugin-proposal-object-rest-spread": "^7.8.3",
"@babel/plugin-proposal-optional-chaining": "^7.8.3",
"@babel/plugin-transform-flow-strip-types": "^7.8.3",
"@babel/plugin-transform-for-of": "^7.8.6",
"@babel/plugin-transform-modules-commonjs": "^7.8.3",
"@babel/plugin-transform-runtime": "^7.8.3",
"@babel/preset-env": "^7.8.7",
"@babel/preset-flow": "^7.8.3",
"@babel/register": "^7.8.6",
"@babel/runtime": "^7.8.7",
"@babel/plugin-proposal-object-rest-spread": "^7.9.5",
"@babel/plugin-proposal-optional-chaining": "^7.9.0",
"@babel/plugin-transform-flow-strip-types": "^7.9.0",
"@babel/plugin-transform-for-of": "^7.9.0",
"@babel/plugin-transform-modules-commonjs": "^7.9.0",
"@babel/plugin-transform-runtime": "^7.9.0",
"@babel/preset-env": "^7.9.5",
"@babel/preset-flow": "^7.9.0",
"@babel/register": "^7.9.0",
"@babel/runtime": "^7.9.2",
"@rollup/plugin-json": "4.0.1",
"babel-eslint": "^11.0.0-beta.2",
"babel-jest": "^24.9.0",
Expand Down