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

2020/06/18 第189回 フロントエンドMTG 議事録 #44

Open
mashabow opened this issue Jun 18, 2020 · 3 comments
Open

2020/06/18 第189回 フロントエンドMTG 議事録 #44

mashabow opened this issue Jun 18, 2020 · 3 comments

Comments

@mashabow
Copy link
Contributor

mashabow commented Jun 18, 2020

babel-preset-env で .browserslistrc の defaults が正しく解釈されない

おそらく babel/babel#10965 (comment) で、.browserslistrc 内の defaults が無視されることが原因。babel/babel#10897 で修正予定だが、breaking change になるので Babel 8 のリリースに入るとのこと。

defaults から defaults, not ie 11 に切り替えようとして遭遇。

Workaround としては、

  • .browserslistrc ではなく、babel-preset-env の targets オプションに指定する
  • defaults 以外のクエリでブラウザを指定する

のどちらかで行けそう。

module.exports = {
  presets: [
    [
      '@babel/preset-env',
      {
        useBuiltIns: 'entry',
        corejs: 3,
        debug: true, // 👈
      },
    ],
  ],
};

のように debug オプションを付けて実行するとわかる。

@krhrtky
Copy link

krhrtky commented Jun 18, 2020

Boostrap 5 alpha release

  • 脱JQury
  • IE サポート終了

@kogai
Copy link
Member

kogai commented Jun 18, 2020

スマート体重計のAPIドキュメントが読めない

https://dev.mi.com/docs/

serverlessとawsのgoライブラリでlambdaの開発が楽

https://serverless.com/
https://github.com/aws/aws-lambda-go

@zenoplex
Copy link

js nation のウェビナー無料

https://live.jsnation.com/

ちょこっと触ってみるという宣言

https://neutralino.js.org/

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

4 participants