Skip to content

Commit d3bbeef

Browse files
committed
Remove README from files
1 parent b08d8f1 commit d3bbeef

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ const users = [
6767
]
6868

6969
// Simple search
70-
const result1 = search(users, 'john') // Find users with "john" in any field
70+
const result1 = search(users, '"john"') // Find users with "john" in any field
7171

7272
// Field-specific search
7373
const result2 = search(users, 'name:jane') // Find users with "jane" in the name field

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
{
22
"name": "@ecromaneli/search-engine",
3-
"version": "1.3.0",
3+
"version": "1.3.1",
44
"description": "A powerful object search engine with advanced query syntax",
55
"main": "dist/npm/index.min.js",
6-
"files": [ "dist/npm/index.min.*", "dist/npm/index.d.*", "README.md", "LICENSE" ],
6+
"files": [ "dist/npm/index.min.*", "dist/npm/index.d.*", "LICENSE" ],
77
"exports": {
88
".": "./dist/npm/index.min.js"
99
},

0 commit comments

Comments
 (0)