Skip to content
This repository was archived by the owner on Feb 8, 2020. It is now read-only.

Commit a5cf629

Browse files
author
tunnckoCore
committed
fix(readme): add features section again
TAG: latest
1 parent 4520b3d commit a5cf629

File tree

3 files changed

+29
-1
lines changed

3 files changed

+29
-1
lines changed

.verb.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,18 @@ You may also read the [Contributing Guide](./CONTRIBUTING.md). There, beside _"H
2727
[![semantic release][semantic-release-img]][semantic-release-url]
2828
[![Node Version Required][nodeversion-img]][nodeversion-url]
2929

30+
## Features
31+
32+
- **Always up-to-date:** auto-publish new version when new version of dependency is out, [Renovate](https://renovateapp.com)
33+
- **Standard:** using StandardJS, Prettier, SemVer, Semantic Release and conventional commits
34+
- **Smart Plugins:** for extending the core API or the end [Result](#result), see [.use](#use) method and [Plugins Architecture](#plugins-architecture)
35+
- **Extensible:** using plugins for working directly on AST nodes, see the [Plugins Architecture](#plugins-architecture)
36+
- **ES2017 Ready:** by using `.parseExpression` method of the [babylon][] `v7.x` parser
37+
- **Customization:** allows switching the parser, through `options.parse`
38+
- **Support for:** arrow functions, default parameters, generators and async/await functions
39+
- **Stable:** battle-tested in production and against all parsers - [espree][], [acorn][], [babylon][]
40+
- **Tested:** with [275+ tests](./test.js) for _200%_ coverage
41+
3042
## Table of Contents
3143
<!-- toc -->
3244

README.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,18 @@ You may also read the [Contributing Guide](./CONTRIBUTING.md). There, beside _"H
2727
[![semantic release][semantic-release-img]][semantic-release-url]
2828
[![Node Version Required][nodeversion-img]][nodeversion-url]
2929

30+
## Features
31+
32+
- **Always up-to-date:** auto-publish new version when new version of dependency is out, [Renovate](https://renovateapp.com)
33+
- **Standard:** using StandardJS, Prettier, SemVer, Semantic Release and conventional commits
34+
- **Smart Plugins:** for extending the core API or the end [Result](#result), see [.use](#use) method and [Plugins Architecture](#plugins-architecture)
35+
- **Extensible:** using plugins for working directly on AST nodes, see the [Plugins Architecture](#plugins-architecture)
36+
- **ES2017 Ready:** by using `.parseExpression` method of the [babylon][] `v7.x` parser
37+
- **Customization:** allows switching the parser, through `options.parse`
38+
- **Support for:** arrow functions, default parameters, generators and async/await functions
39+
- **Stable:** battle-tested in production and against all parsers - [espree][], [acorn][], [babylon][]
40+
- **Tested:** with [275+ tests](./test.js) for _200%_ coverage
41+
3042
## Table of Contents
3143
- [Install](#install)
3244
- [API](#api)
@@ -252,10 +264,12 @@ Copyright © 2016-2017, [Charlike Mike Reagent](https://i.am.charlike.online). R
252264
_This file was generated by [verb-generate-readme](https://github.com/verbose/verb-generate-readme), v0.6.0, on August 10, 2017._
253265
Project scaffolded using [charlike-cli][].
254266

267+
[acorn]: https://github.com/ternjs/acorn
255268
[babylon]: https://babeljs.io/
256269
[charlike-cli]: https://github.com/tunnckoCore/charlike-cli
257270
[charlike]: https://github.com/tunnckoCore/charlike
258271
[define-property]: https://github.com/jonschlinkert/define-property
272+
[espree]: https://github.com/eslint/espree
259273
[execa]: https://github.com/sindresorhus/execa
260274
[function-arguments]: https://github.com/tunnckocore/function-arguments
261275

package.json

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,9 @@
102102
"charlike-cli",
103103
"define-property",
104104
"execa",
105-
"function-arguments"
105+
"function-arguments",
106+
"acorn",
107+
"espree"
106108
]
107109
},
108110
"release": {

0 commit comments

Comments
 (0)