-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #8 from KevinAst/next3
publish: v0.1.3 Establish Polyfill Strategy
- Loading branch information
Showing
6 changed files
with
9,335 additions
and
28 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,29 @@ | ||
{ | ||
"presets": ["es2015", "stage-1", "react"], | ||
"env": { | ||
"commonjs": { | ||
"plugins": [ | ||
["transform-es2015-modules-commonjs", { "loose": true }] | ||
// standard presets applying various plugins | ||
presets: [ | ||
"env", // babel-preset-env: supporting es2015, es2016, and es2017 (with configuration) | ||
"react" // babel-preset-react: react and jsx | ||
], | ||
|
||
// explicit plugins NOT part of the presets (above) ... prefer this over yearly presets | ||
plugins: [ | ||
"transform-object-rest-spread", // "object rest properties" (es2018 Stage 4) | ||
// ... ex: myFn({p1, p2, ...restParms}) | ||
], | ||
|
||
// additional plugins explicitly called out via the BABEL_ENV variable | ||
// ... see: build scripts in package.json | ||
env: { | ||
// BABEL_ENV=commonjs ... our CommonJS distribution (promoted in lib/ directory) | ||
commonjs: { | ||
plugins: [ | ||
["transform-es2015-modules-commonjs", { loose: true }] | ||
] | ||
}, | ||
"es": { | ||
"plugins": [ | ||
// BABEL_ENV=es ... for our ES distribution (promoted in lib/ directory) | ||
es: { | ||
plugins: [ | ||
] | ||
}, | ||
"test": { | ||
"plugins": [ | ||
["transform-es2015-modules-commonjs", { "loose": true }] | ||
] | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,85 @@ | ||
# Change Log | ||
|
||
The **feature-redux-logic**project adheres to [Semantic | ||
The **feature-redux-logic** project adheres to [Semantic | ||
Versioning](http://semver.org/). | ||
|
||
Each release, along with migration instructions, is documented on the | ||
[Github Releases](https://github.com/KevinAst/feature-redux-logic/releases) | ||
page. | ||
Each release is documented on this page *(in addition to the [Github | ||
Release Notes](https://github.com/KevinAst/feature-redux-logic/releases))*, | ||
and **contains migration instructions**. | ||
|
||
## Summary: | ||
|
||
Release | What | *When* | ||
---------|-------------------------------------------------|------------------ | ||
[v0.1.3] | Establish Polyfill Strategy | *July 2, 2018* | ||
[v0.1.0] | Initial Release | *March 6, 2018* | ||
|
||
|
||
[v0.1.3]: #v013---establish-polyfill-strategy-july-2-2018 | ||
[v0.1.0]: #v010---initial-release-march-6-2018 | ||
|
||
|
||
|
||
<!-- UNRELEASED ************************************************************************** | ||
TEMPLATE: | ||
## vn.n.n - DESC *(DATE ?, 2018)* | ||
[GitHub Content](https://github.com/KevinAst/feature-redux-logic/tree/vn.n.n) | ||
• | ||
[GitHub Release](https://github.com/KevinAst/feature-redux-logic/releases/tag/vn.n.n) | ||
• | ||
[Diff](see below) | ||
RUNNING CONTENT (pop out as needed) ... | ||
- adorn bullets with following bolded prefix | ||
**Added**: ... for new features | ||
**Changed**: ... for changes in existing functionality | ||
**Deprecated**: ... for soon-to-be removed features | ||
**Removed**: ... for now removed features | ||
**Fixed**: ... for any bug fixes | ||
**Enhanced**: ... for enhancements | ||
**Security**: ... in case of vulnerabilities | ||
**Docs**: ... changes in documentation | ||
**Review**: ... requires review | ||
**Internal**: ... internal change NOT affecting user/client | ||
UNRELEASED ******************************************************************************** --> | ||
|
||
|
||
|
||
<!-- *** RELEASE *************************************************************** --> | ||
|
||
## v0.1.3 - Establish Polyfill Strategy *(July 2, 2018)* | ||
|
||
[GitHub Content](https://github.com/KevinAst/feature-redux-logic/tree/v0.1.3) | ||
• | ||
[GitHub Release](https://github.com/KevinAst/feature-redux-logic/releases/tag/v0.1.3) | ||
• | ||
[Diff](https://github.com/KevinAst/feature-redux-logic/compare/v0.1.0...v0.1.3) | ||
|
||
**NOTE**: This release is a **non-breaking change** _(i.e. no API was affected)_. | ||
|
||
- **Review**: A new policy is in affect where **polyfills are the | ||
responsibility of the client app**, when the target JavaScript | ||
engine is inadequate _(such as the IE browser)_. Please refer to | ||
[Potential Need for | ||
Polyfills](./README.md#potential-need-for-polyfills) for more | ||
information. | ||
|
||
As a result, all previous code patches related to es2015+ polyfill | ||
issues were removed, in favor of **polyfilling at the app-level**. | ||
|
||
- **Internal**: The most current babel version/configuration is now | ||
used to transpile the library's es5 distribution. | ||
|
||
|
||
<!-- *** RELEASE *************************************************************** --> | ||
|
||
## v0.1.0 - Initial Release *(March 6, 2018)* | ||
[GitHub Content](https://github.com/KevinAst/feature-redux-logic/tree/v0.1.0) | ||
• | ||
[GitHub Release](https://github.com/KevinAst/feature-redux-logic/releases/tag/v0.1.0) | ||
|
||
**This is where it all began ...** |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.