Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update documentation framework with docusaurus #506

Open
wants to merge 41 commits into
base: docs/v-next
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
41 commits
Select commit Hold shift + click to select a range
0045b98
Correct project example of Tuple (#442)
JacopKane Sep 8, 2019
27dea7d
update dev deps for security (#444)
evilsoft Sep 9, 2019
cc50960
Adding in CONTRIBUTING and CODINGSTANDARDS (#436)
dalefrancis88 Sep 10, 2019
3e4fb12
Add `bichain` to remaining Sum Types (#443)
evilsoft Sep 22, 2019
dff33c8
update CHANGELOG for 0.12.4 release
evilsoft Sep 22, 2019
2bab322
0.12.4
evilsoft Sep 22, 2019
0ef43c9
Convert inline comments to block (#447)
bennypowers Oct 30, 2019
8a9021d
Update example in contramap (#449)
rolfst Nov 1, 2019
7788de1
upgrade outdated dev deps (#452)
evilsoft Jan 2, 2020
033a4d4
Edit README (#454) (#456)
sunwukonga Jan 30, 2020
e451749
Fix two function signatures in README (#458)
sunwukonga Feb 3, 2020
bc32f25
README: add rpearce map tutorial (#460)
rpearce Feb 20, 2020
14fa4b6
doc(either): update setPassed example in Left (#461)
rolfst Mar 12, 2020
e8935b1
Add title to LICENSE file (#464)
waldyrious Mar 16, 2020
ba83056
remove non-inclusive voice from compose and add some examples (#466)
evilsoft Mar 16, 2020
b4a396a
Update Deps and Remove Dev Support for Node:8 (#465)
evilsoft Mar 16, 2020
b88a5ef
Update Either.md (#469)
area73 Apr 10, 2020
bb75efd
Update .all-contributorsrc (#471)
area73 Apr 10, 2020
ac80421
Update Const.md (#470)
fabfianda Apr 10, 2020
4e0296e
Allow fn passed to Async.fromPromise to be partially applied (#475)
JamieDixon May 22, 2020
54ab755
Update CONTRIBUTORS.md (#476)
dalefrancis88 May 22, 2020
ce8f939
upgrade deps (#479)
evilsoft May 26, 2020
e5e779a
Expose a length property for curried functions (#477)
JamieDixon May 26, 2020
4d025b1
Small Change (#474)
BasantPandey May 31, 2020
df5558b
Output result not correct (#472)
BasantPandey May 31, 2020
dd0b530
Update Import path for 'merge' module-name (#473)
BasantPandey Jul 15, 2020
705eee6
Fix unhandled promise rejection in tests (#482)
benhormann Jul 16, 2020
3a9d565
Upgrading packaged to remove vulnerability in Lodash and bringing som…
dalefrancis88 Jul 27, 2020
c6a7f9f
Correct getPathOr type annotation (#494)
jakubbarczyk Sep 9, 2020
1ff50f7
typo (#495)
area73 Sep 28, 2020
bb7aa31
Initial migration from old docs to docusauros
davidnussio Oct 10, 2020
50c7b97
Fixed broken links
davidnussio Oct 10, 2020
204378c
Testing docusaurus-lunr-search
davidnussio Oct 15, 2020
88d25d1
Update runkit layout
davidnussio Oct 15, 2020
0b8bf1d
Added orig icons, change sidebar item labels and main layout
davidnussio Oct 28, 2020
f6bb96c
Renamed docs-v2 to docs
davidnussio Feb 24, 2021
aa58c28
Change url and organization name
davidnussio Feb 24, 2021
4e53732
Change yarn.lock with package-lock.json
davidnussio Feb 27, 2021
856244e
Fix typo into example
davidnussio Mar 13, 2021
d404725
Fix linting & CI
davidnussio Mar 13, 2021
96769aa
npm audit fix
davidnussio May 7, 2021
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
58 changes: 57 additions & 1 deletion .all-contributorsrc
Original file line number Diff line number Diff line change
Expand Up @@ -252,7 +252,63 @@
"doc",
"test"
]
},
{
"login": "JacopKane",
"name": "Furkan Tunalı",
"avatar_url": "https://avatars2.githubusercontent.com/u/68406?v=4",
"profile": "http://furkantunali.com",
"contributions": [
"doc",
"example"
]
},
{
"login": "sunwukonga",
"name": "Paul Desmond Parker",
"avatar_url": "https://avatars3.githubusercontent.com/u/12194690?v=4",
"profile": "https://github.com/sunwukonga",
"contributions": [
"doc"
]
},
{
"login": "area73",
"name": "Rodrigo Erades",
"avatar_url": "https://avatars3.githubusercontent.com/u/2030605?v=4",
"profile": "https://github.com/area73",
"contributions": [
"doc"
]
},
{
"login": "JamieDixon",
"name": "Jamie Dixon",
"avatar_url": "https://avatars2.githubusercontent.com/u/1519443?v=4",
"profile": "https://twitter.com/jamiedixon",
"contributions": [
"code"
]
},
{
"login": "BasantPandey",
"name": "Basant Pandey",
"avatar_url": "https://avatars2.githubusercontent.com/u/896016?v=4",
"profile": "http://sharepointfordeveloper.blogspot.com",
"contributions": [
"doc"
]
},
{
"login": "davidnussio",
"name": "David Nussio",
"avatar_url": "https://avatars.githubusercontent.com/u/324371?v=4",
"profile": "https://github.com/davidnussio",
"contributions": [
"doc"
]
}
],
"repoType": "github"
"repoType": "github",
"commitConvention": "none"
}
86 changes: 43 additions & 43 deletions .eslintrc.js
Original file line number Diff line number Diff line change
@@ -1,47 +1,47 @@
module.exports = {
"env": {
"browser": true,
"es6": true,
"node": true
env: {
browser: true,
es6: true,
node: true,
},
"extends": "eslint:recommended",
"parserOptions": {
"sourceType": "module"
extends: ["eslint:recommended", "plugin:react/recommended"],
parserOptions: {
sourceType: "module",
},
plugins: ["markdown", "react"],
rules: {
"array-bracket-spacing": ["error", "always"],
"arrow-spacing": ["error"],
"block-spacing": ["error"],
camelcase: ["error"],
"comma-dangle": ["error", "never"],
"computed-property-spacing": ["error", "never"],
curly: ["error", "all"],
eqeqeq: ["error", "always"],
"eol-last": ["error", "always"],
"func-call-spacing": ["error", "never"],
indent: ["error", 2],
"linebreak-style": ["error", "unix"],
"no-else-return": ["error"],
"no-empty-function": ["error"],
"no-multiple-empty-lines": [2, { max: 1, maxEOF: 1 }],
"no-extra-parens": ["error"],
"no-lone-blocks": ["error"],
"no-multi-assign": ["error"],
"no-new": ["error"],
"no-new-func": ["error"],
"no-param-reassign": ["error"],
"no-return-assign": ["error"],
"no-sequences": ["error"],
"no-trailing-spaces": ["error"],
"no-void": ["error"],
"no-with": ["error"],
"no-useless-return": ["error"],
"object-curly-spacing": ["error", "always"],
quotes: ["error", "single"],
semi: ["error", "never"],
yoda: ["error"],
"react/prop-types": "off",
"react/no-unescaped-entities": "off",
},
"plugins": [
'markdown'
],
"rules": {
"array-bracket-spacing": [ "error", "always" ],
"arrow-spacing": [ "error" ],
"block-spacing": [ "error" ],
"camelcase": [ "error" ],
"comma-dangle": [ "error", "never" ],
"computed-property-spacing": [ "error", "never" ],
"curly": [ "error", "all" ],
"eqeqeq": [ "error", "always" ],
"eol-last": [ "error", "always" ],
"func-call-spacing": [ "error", "never" ],
"indent": [ "error", 2 ],
"linebreak-style": [ "error", "unix" ],
"no-else-return": [ "error" ],
"no-empty-function": [ "error" ],
"no-multiple-empty-lines": [2, { "max": 1, "maxEOF": 1 }],
"no-extra-parens": [ "error" ],
"no-lone-blocks": [ "error" ],
"no-multi-assign": [ "error" ],
"no-new": [ "error" ],
"no-new-func": [ "error" ],
"no-param-reassign": [ "error" ],
"no-return-assign": [ "error" ],
"no-sequences": [ "error" ],
"no-trailing-spaces": [ "error" ],
"no-void": [ "error" ],
"no-with": [ "error" ],
"no-useless-return": [ "error" ],
"object-curly-spacing": [ "error", "always" ],
"quotes": [ "error", "single" ],
"semi": [ "error", "never" ],
"yoda": [ "error" ]
}
};
1 change: 0 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ language: node_js
node_js:
- '12'
- '10'
- '8'

install:
- npm install
Expand Down
24 changes: 24 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,28 @@
# Change Log for `crocks`
v0.12.4 -- September 22, 2019
--

### Additions
* Functions/Methods
* `isMap` predicate function
* Add `bichain` for the following types:
* `Either`
* `Maybe`
* `Result`

### Optimizations
* Update `curry` to remove extra stack frames when currying.

### Documentation
* Add example for `applyTo`
* Corrections to the `project` example

### Pull Requests
* [#434 - Add isMap predicate](https://github.com/evilsoft/crocks/pull/434)
* [#435 - docs: add example for applyTo](https://github.com/evilsoft/crocks/pull/)
* [#438 - Micro-optimization to curry](https://github.com/evilsoft/crocks/pull/438)
* [#442 - Correct project example of Tuple](https://github.com/evilsoft/crocks/pull/442)
* [#443 - Add `bichain` to remaining Sum Types](https://github.com/evilsoft/crocks/pull/443)

v0.12.3 -- July 21, 2019
--
Expand Down
Loading