-
Notifications
You must be signed in to change notification settings - Fork 3
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 #2 from KevinAst/feature-initial
publish: v0.1.0 Initial Release
- Loading branch information
Showing
47 changed files
with
1,609 additions
and
474 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,3 +1,14 @@ | ||
{ | ||
"presets": ["es2015", "stage-1"] | ||
"presets": ["es2015", "stage-1"], | ||
"env": { | ||
"commonjs": { | ||
"plugins": [ | ||
["transform-es2015-modules-commonjs", { "loose": true }] | ||
] | ||
}, | ||
"es": { | ||
"plugins": [ | ||
] | ||
} | ||
} | ||
} |
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 |
---|---|---|
@@ -0,0 +1,23 @@ | ||
{ | ||
"env": { | ||
"es6": true, | ||
"browser": true, | ||
"node": true | ||
}, | ||
"extends": "eslint:recommended", | ||
"parserOptions": { | ||
"sourceType": "module" | ||
}, | ||
"globals": { | ||
"describe": true, // describe() is part of our unit test framework | ||
"it": true // it() is part of our unit test framework | ||
}, | ||
"rules": { | ||
"strict": ["error", "never"], // ES6 Modules imply a 'use strict'; ... specifying this is redundant | ||
"indent": ["off", 2], // allow any indentation | ||
"no-unused-vars": ["error", {"args": "none"}], // allow unsed parameter declaration | ||
"linebreak-style": "off", // allow both unix/windows carriage returns | ||
"quotes": "off", // allow single or double quotes string literals | ||
"semi": ["error", "always"] // enforce semicolons | ||
} | ||
} |
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 |
---|---|---|
@@ -0,0 +1,10 @@ | ||
language: node_js | ||
node_js: | ||
- "6" | ||
- "7" | ||
- node # current node version (may be duplicate, but that's OK) | ||
script: | ||
- npm run prepublish # lint, clean, build (bundles), test (bundles) | ||
branches: | ||
except: | ||
- gh-pages |
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 |
---|---|---|
@@ -0,0 +1,7 @@ | ||
# Change Log | ||
|
||
The [astx-redux-util](https://astx-redux-util.js.org) project adheres | ||
to [Semantic Versioning](http://semver.org/). | ||
|
||
Each release, along with migration instructions, is documented on the | ||
[Github Releases](https://github.com/KevinAst/astx-redux-util/releases) page. |
File renamed without changes.
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.