From 39865ce746d05825285e2a4abb4a9675693f1dad Mon Sep 17 00:00:00 2001 From: Henry Zhu Date: Thu, 4 Aug 2016 21:35:46 -0400 Subject: [PATCH] fix typos [skip ci] --- CHANGELOG.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b508f19e09..f1ef1821d4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -30,14 +30,14 @@ This has been rather annoying. Having to install `babel-preset-es2015-loose-nati With [#3627](https://github.com/babel/babel/pull/3627), you can pass 2 options in: - `loose` - Enable "loose" transformations for any plugins in this preset that allow them (Disabled by default). -- `modules` - Enable transformation of ES6 module syntax to another module type (Enabled by default to `"commonjs"``). -Can be `false` to not transform modules, or one of `["amd", "umd", "systemjs", "commonjs"]`` +- `modules` - Enable transformation of ES6 module syntax to another module type (Enabled by default to `"commonjs"`). +Can be `false` to not transform modules, or one of `["amd", "umd", "systemjs", "commonjs"]` ```js // for loose and native modules { presets: [ - ["es2015", { loose: true, modules: false }] + ["es2015", { "loose": true, "modules": false }] ] } ```