Skip to content

Commit

Permalink
docs: remove @next tag
Browse files Browse the repository at this point in the history
BREAKING CHANGE: change v2 tag `@latest` to `@legacy`
  • Loading branch information
59naga committed Sep 11, 2018
1 parent b56a9a4 commit 7fd260d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
1 change: 0 additions & 1 deletion .travis.yml
Expand Up @@ -25,7 +25,6 @@ before_deploy:
deploy:
skip_cleanup: true # keep the devDependencies
provider: npm
tag: next
email: i59naga@icloud.com
api_key:
secure: CMFF6dnRAVd6EPWfEOdsFSgY3XQxEDS0TYyvIDt2Xy9eaGaFq4jwdpCQ+9OZNGfDXcmBjuDXnsWv6TqxYHohm5hLYYqU1CT1fFVUU0sCxl41HKyliXUC21qaT/lB68EcRSnDAdCAcQ/jLFIZObBxwHD7yUOyoBnmkTvcBn5Kgi6kaKYjJlzP4Z0zP0MbO3+2R2LTj01eAcE7TtHehITcP4CktPGRkDLgRjFmOahg63MnfpsqHX22p/l/Z3OqCnguhHK6b7cpjwHL4zfyEHU/K+o6KsLErFidIAg1yKzFskaHUImVYQiJhkJaJyzA9YW4xW1UYHjO1BwxkxsJOM0EMbzWxH8hEvrig6wgP8Midp3RXWusJ8VbZvNcyj4OPYWhc4aR5GOlr7W36xp04d0BP+WZVBycxYVbMFj5SmbF6BXjeC6w1Aj3m+oUUIC5SUKwDD3hyfgCrBoAGcKhKxRF9SGUWdHSouuisuFWTSdFiUugBPrYx+LhBVVkByLAvy1J7j+yl03I08X4/N6c4mJ2e6eE7B02oaS4tTyJT8BADJ7pE6vG4r3T+qRy7rqU4SHJ4pwzG2AyuvwxeTwz7PCSWFD/XgQgd2qROLpekT4Ds8v9TPt4vSfWgN4otIIRV91UcLvBBmlERCHwcwmX4iU3p7tYMVhcdrhI9FpDNNK/4J0=
Expand Down
8 changes: 4 additions & 4 deletions README.md
Expand Up @@ -61,9 +61,9 @@ Usage
Install this plugin from npm:

```bash
npm install babel-plugin-add-module-exports@next --save-dev
npm install babel-plugin-add-module-exports --save-dev
# or
yarn add -D babel-plugin-add-module-exports@next
yarn add -D babel-plugin-add-module-exports
```

Write the name to [babelrc](https://babeljs.io/docs/usage/babelrc/). It works with [preset-env](http://babeljs.io/docs/en/babel-preset-env/) to output CommonJS code:
Expand All @@ -77,7 +77,7 @@ Write the name to [babelrc](https://babeljs.io/docs/usage/babelrc/). It works wi
}
```

### v0.3.0
### modules: false

**However, the plugin doesn't change the pure-esmodule**.
this plugin makes changes only when exists `exports.default` (in other words, using [commonjs](https://babeljs.io/docs/en/babel-plugin-transform-es2015-modules-commonjs/)).
Expand All @@ -97,7 +97,7 @@ into
export default 'foo'
```

`0.3.0` Currently support is `commonjs` and `umd`.
`1.0.0` Currently support is `commonjs` and `umd`.
Doesn't support `amd`, `systemjs` modules(don't use. there are no plans to support at the moment).

Options
Expand Down

0 comments on commit 7fd260d

Please sign in to comment.