Skip to content

Commit 5ac4f15

Browse files
Create 12/04.md (#106)
* Create 04.md * Update 04.md
1 parent 52157d9 commit 5ac4f15

File tree

1 file changed

+50
-0
lines changed

1 file changed

+50
-0
lines changed

Diff for: 2019/12/04.md

+50
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,50 @@
1+
# 12/04
2+
3+
Attendees:
4+
- Nicolò
5+
- Jùnliàng
6+
- Kai
7+
8+
---
9+
10+
- [x] Configuration files extensions (@nicolo-ribaudo)
11+
- We currently allow `.babelrc`, `.babelrc.{js,cjs}` and `babel.config.{json,js,cjs}`
12+
- `babel.config.mjs` and `.babelrc.mjs`? ([issue](https://github.com/babel/babel/issues/10755))
13+
- Depends on https://github.com/babel/babel/pull/10507
14+
- `.mjs` can only be loaded asynchronously
15+
- Performance is similar
16+
- ESLint only works with the synchronous version (https://github.com/babel/babel/pull/10507#discussion_r331786481)
17+
- Throw an error when babel config uses .mjs extension
18+
- **Resolution**: Consensus in the room
19+
- `.babelrc.json`? ([Slack discussion](https://babeljs.slack.com/archives/C062RC35M/p1575072160232800), [issue](https://github.com/babel/babel/issues/10782), [pr](https://github.com/babel/babel/pull/10783))
20+
- ESLint did something similar - the extensionless version is deprecated in the docs
21+
- No downsides in doing it, except for "one more possible config file"
22+
- **Resolution**: Consensus in the room
23+
- [x] `@babel/eslint-* v8` (https://github.com/babel/babel/issues/10752)
24+
- Nicolò: every other integration allows passing options directly
25+
- `@babel/esint-parser` is only for parsing, enabling transform plugins might be confusing
26+
- If we decide _not_ to enable it, we can enable it later in a minor release
27+
- **Resolution**: not enable it for now, we can revise this decision later
28+
- [x] Minor additions to the "Babel 8 release plan" issue: (@nicolo-ribaudo)
29+
- [ ] Consider moving root AMD/UMD/SystemJS options to be plugin/preset options (https://github.com/babel/babel/issues/5473) - Taken from the [`Babel 7.next`](https://github.com/babel/babel/milestone/14) milestone.
30+
- **Resolution**: Need more context to decide if we should do it or not; the decision is postponed.
31+
- [ ] Make babel-node clearly separate arguments to node, babel-node, and the script being executed (https://github.com/babel/babel/issues/4373) - Taken from the [`Babel 7.next`](https://github.com/babel/babel/milestone/14) milestone.
32+
- **Resolution**: Need more context to decide if we should do it or not; the decision is postponed.
33+
- [ ] Clean up `@babel/types` (https://github.com/babel/babel/pull/5971) - Probably it's easier to rewrite this PR as many small PRs, they could all be `good first issue`s
34+
- This is risky, but safer checks are nice
35+
- We can add an env flag to enable the new checks in the next minor release. This would give the community the ability to test if their packages/dependencies would work with it in Babel 8.0.0
36+
- This will break _at least_ `react-native` (but we should send them a PR)
37+
- **Resolution**: If the rest of the teem agrees, let's add this flag in Babel 7.8.0
38+
- [ ] Disallow `babel.transform` used synchronously? ([comment in code](https://github.com/babel/babel/blob/db2a9fc96ebb2b29aaeedb962b46f5010a552f17/packages/babel-core/src/transform.js#L25-L27))
39+
- Currently there are `babel.transformSync` which is synchronous, `babel.transformAsync` which returns a promise, and `babel.transform` which accepts a callback.
40+
- `babel.transform` runs synchronously when the `callback` is not provided, for compatibility with Babel 6
41+
- Removing this overloading would possibly allow us to overload it to return a promise in the future
42+
- **Resolution**: Consensus in the room
43+
- @Andarist will post other ideas in the "Babel 8 Release Plan" issue
44+
- [ ] Reposition babel-preset-env-standalone in Babel 8 (@JLHwung)
45+
- Large build size (1.3MB), limited extra functionalities (6 plugins)
46+
- Consider merge back to babel-standalone
47+
- Merging back to babel-standalone would not increase bundle size too much
48+
- Currently only our website is using babel-preset-env-standalone
49+
- **Resolution** copy functions in env-standalone to babel-standalone in 7.8, deprecate env-standalone in 7.8, remove it on 8.x
50+
- [ ] Give the `triage` role to a Raja Sekar [**@rajasekarm**](https://github.com/rajasekarm)

0 commit comments

Comments
 (0)