From 47d79ac9755cde808fa4483014f3b0b450408687 Mon Sep 17 00:00:00 2001 From: Sosuke Suzuki Date: Fri, 16 Jul 2021 16:42:59 +0900 Subject: [PATCH] Fix `make generate-standalone` -> `make build-standalone` (#13562) --- CONTRIBUTING.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index ddaf920a0f6e..169dd2e8b475 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -341,7 +341,7 @@ Note that the code shown in Chrome DevTools is compiled code and therefore diffe - [ ] Add `@babel/syntax-new-syntax` package. You can copy `packages/babel-plugin-syntax-decimal` and replace `decimal` to `new-syntax`. - [ ] Add `@babel/syntax-new-syntax` to `@babel/standalone`. - [ ] Add `@babel/syntax-new-syntax` to `package.json` - - [ ] Add `@babel/syntax-new-syntax` to [`pluginsConfig.json`](https://github.com/babel/babel/blob/master/packages/babel-standalone/scripts/pluginConfig.json), run `make generate-standalone`. + - [ ] Add `@babel/syntax-new-syntax` to [`pluginsConfig.json`](https://github.com/babel/babel/blob/master/packages/babel-standalone/scripts/pluginConfig.json), run `make build-standalone`. - [ ] Add `@babel/syntax-new-syntax` to `src/preset-stage-x`. - [ ] Add `"newSyntax"` to parser [typings](https://github.com/babel/babel/blob/master/packages/babel-parser/typings/babel-parser.d.ts) - [ ] Implement generator support in `packages/babel-generator/src/generators`. The generator converts AST to source code.