Conversation
| prettierConfig.filepath = filename; | ||
| prettierConfig.parser = "babel"; | ||
|
|
||
| if (process.env.CI && parseInt(process.versions.node, 10) < 10) { |
There was a problem hiding this comment.
They are removed since we run build scripts on latest node only 😛.
|
Build successful! You can test your changes in the REPL here: https://babeljs.io/repl/build/34416/ |
|
This pull request is automatically built and testable in CodeSandbox. To see build info of the built libraries, click here or the icon next to each commit SHA. Latest deployment of this branch, based on commit f8f3081:
|
| gulp.series("build-dev", function watch() { | ||
| gulp.watch(defaultSourcesGlob, gulp.task("build-no-bundle")); | ||
| gulp.watch( | ||
| babelStandalonePluginConfigGlob, |
There was a problem hiding this comment.
When you edit packages/babel-standalone/scripts/pluginConfig.json, packages/babel-standalone/src/generated/plugins.js will be automatically generated so you don't have to run (and remember to!) make generate-standalone again.
Gulpfile.js
Outdated
| ); | ||
| gulp.watch( | ||
| buildTypingsWatchGlob, | ||
| gulp.parallel("build-typings", "generate-type-helpers") |
There was a problem hiding this comment.
When you edit packages/babel-types/src/definitions or ./packages/babel-types/scripts/generators/*.js, the @babel/types helpers and typings will be regenerated automatically. So you don't have to run (and remember to!) make generate-type-helpers && make build-typings again.
ed39a04 to
54204d5
Compare
3d2111d to
bb81f5f
Compare
bb81f5f to
ca59046
Compare
ca59046 to
f8f3081
Compare
|
This PR introduces some problems with the generated |
|
I can partially revert types generation so we can get it merged. |
f8f3081 to
c088350
Compare
@babel/typesdefinitions are updated,make watchdoes not rebuild type helpers and typingsThis PR moves build scripts from Makefile to gulp -- so we can implement watch utilities for some tasks. It does not remove Makefile but should be easier for Windows contributors: The plan is to have
gulp watchandyarn jestpractical replacement formake watchandmake test.