Skip to content

Commit 292ee6b

Browse files
committed
Add shields to readme
1 parent b94b732 commit 292ee6b

File tree

4 files changed

+22
-22
lines changed

4 files changed

+22
-22
lines changed

README.md

Lines changed: 10 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# Lucene Query String Builder
22

3+
[![NPM](https://img.shields.io/npm/v/lucene-query-string-builder?color=blue&style=flat-square)](https://www.npmjs.com/package/lucene-query-string-builder)
4+
[![NPM Downloads](https://img.shields.io/npm/dm/lucene-query-string-builder?style=flat-square)](https://www.npmjs.com/package/lucene-query-string-builder)
5+
[![Dependency Status](https://img.shields.io/librariesio/release/npm/lucene-query-string-builder?style=flat-square)](https://libraries.io/npm/lucene-query-string-builder)
6+
[![Standard Code Style](https://img.shields.io/badge/code_style-standard-brightgreen.svg?style=flat-square)](https://standardjs.com)
7+
38
Easily build your lucene string queries using small and pure functions.
49

510
Imagine having an API that leverages lucene for performing queries on the
@@ -134,29 +139,17 @@ https://lucene.apache.org/core/2_9_4/queryparsersyntax.html#Terms
134139
```bash bash
135140
set -eo pipefail
136141

137-
npm i
138-
npm prune
142+
{
143+
npm i
144+
npm prune
145+
} > /dev/null
139146

140147
npx standard --fix
141148
npx nyc npm t
142149
```
143150
```
144151
145-
up to date, audited 72 packages in 604ms
146-
147-
44 packages are looking for funding
148-
run `npm fund` for details
149-
150-
found 0 vulnerabilities
151-
152-
up to date, audited 72 packages in 553ms
153-
154-
44 packages are looking for funding
155-
run `npm fund` for details
156-
157-
found 0 vulnerabilities
158-
159-
152+
160153
> tape ./test/index.js
161154
162155
TAP version 13

README.mz

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# Lucene Query String Builder
22

3+
[![NPM](https://img.shields.io/npm/v/lucene-query-string-builder?color=blue&style=flat-square)](https://www.npmjs.com/package/lucene-query-string-builder)
4+
[![NPM Downloads](https://img.shields.io/npm/dm/lucene-query-string-builder?style=flat-square)](https://www.npmjs.com/package/lucene-query-string-builder)
5+
[![Dependency Status](https://img.shields.io/librariesio/release/npm/lucene-query-string-builder?style=flat-square)](https://libraries.io/npm/lucene-query-string-builder)
6+
[![Standard Code Style](https://img.shields.io/badge/code_style-standard-brightgreen.svg?style=flat-square)](https://standardjs.com)
7+
38
Easily build your lucene string queries using small and pure functions.
49

510
Imagine having an API that leverages lucene for performing queries on the
@@ -134,8 +139,10 @@ https://lucene.apache.org/core/2_9_4/queryparsersyntax.html#Terms
134139
```bash bash
135140
set -eo pipefail
136141

137-
npm i
138-
npm prune
142+
{
143+
npm i
144+
npm prune
145+
} > /dev/null
139146

140147
npx standard --fix
141148
npx nyc npm t

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "lucene-query-string-builder",
3-
"version": "1.0.5",
3+
"version": "1.0.6",
44
"description": "Build Lucene queries by defining lucene query builders",
55
"main": "index.js",
66
"repository": {

0 commit comments

Comments
 (0)