Skip to content

Commit 7fd260d

Browse files
committed
docs: remove @next tag
BREAKING CHANGE: change v2 tag `@latest` to `@legacy`
1 parent b56a9a4 commit 7fd260d

2 files changed

Lines changed: 4 additions & 5 deletions

File tree

.travis.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,6 @@ before_deploy:
2525
deploy:
2626
skip_cleanup: true # keep the devDependencies
2727
provider: npm
28-
tag: next
2928
3029
api_key:
3130
secure: CMFF6dnRAVd6EPWfEOdsFSgY3XQxEDS0TYyvIDt2Xy9eaGaFq4jwdpCQ+9OZNGfDXcmBjuDXnsWv6TqxYHohm5hLYYqU1CT1fFVUU0sCxl41HKyliXUC21qaT/lB68EcRSnDAdCAcQ/jLFIZObBxwHD7yUOyoBnmkTvcBn5Kgi6kaKYjJlzP4Z0zP0MbO3+2R2LTj01eAcE7TtHehITcP4CktPGRkDLgRjFmOahg63MnfpsqHX22p/l/Z3OqCnguhHK6b7cpjwHL4zfyEHU/K+o6KsLErFidIAg1yKzFskaHUImVYQiJhkJaJyzA9YW4xW1UYHjO1BwxkxsJOM0EMbzWxH8hEvrig6wgP8Midp3RXWusJ8VbZvNcyj4OPYWhc4aR5GOlr7W36xp04d0BP+WZVBycxYVbMFj5SmbF6BXjeC6w1Aj3m+oUUIC5SUKwDD3hyfgCrBoAGcKhKxRF9SGUWdHSouuisuFWTSdFiUugBPrYx+LhBVVkByLAvy1J7j+yl03I08X4/N6c4mJ2e6eE7B02oaS4tTyJT8BADJ7pE6vG4r3T+qRy7rqU4SHJ4pwzG2AyuvwxeTwz7PCSWFD/XgQgd2qROLpekT4Ds8v9TPt4vSfWgN4otIIRV91UcLvBBmlERCHwcwmX4iU3p7tYMVhcdrhI9FpDNNK/4J0=

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -61,9 +61,9 @@ Usage
6161
Install this plugin from npm:
6262

6363
```bash
64-
npm install babel-plugin-add-module-exports@next --save-dev
64+
npm install babel-plugin-add-module-exports --save-dev
6565
# or
66-
yarn add -D babel-plugin-add-module-exports@next
66+
yarn add -D babel-plugin-add-module-exports
6767
```
6868

6969
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:
@@ -77,7 +77,7 @@ Write the name to [babelrc](https://babeljs.io/docs/usage/babelrc/). It works wi
7777
}
7878
```
7979

80-
### v0.3.0
80+
### modules: false
8181

8282
**However, the plugin doesn't change the pure-esmodule**.
8383
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/)).
@@ -97,7 +97,7 @@ into
9797
export default 'foo'
9898
```
9999

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

103103
Options

0 commit comments

Comments
 (0)