-
-
Notifications
You must be signed in to change notification settings - Fork 298
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
build(lyra): fixes the build process
- Loading branch information
1 parent
d83b154
commit c327cda
Showing
3 changed files
with
16 additions
and
7 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
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,7 +1,7 @@ | ||
{ | ||
"name": "@nearform/lyra", | ||
"description": "Fast, in-memory, typo-tolerant, full-text search engine", | ||
"version": "0.0.1-beta-16", | ||
"version": "0.0.1-beta-17", | ||
"author": { | ||
"name": "Michele Riva", | ||
"email": "[email protected]", | ||
|
@@ -14,7 +14,7 @@ | |
"scripts": { | ||
"build:cjs": "tsc --project tsconfig.cjs.json", | ||
"build:module": "tsc --project tsconfig.esm.json", | ||
"build": "pnpm build:module && pnpm build:cjs", | ||
"build": "rimraf ./dist && pnpm build:module && pnpm build:cjs", | ||
"test": "c8 -c tests/config/c8-local.json tap --rcfile=tests/config/tap.yml tests/*.test.ts", | ||
"test:ci": "c8 -c tests/config/c8-ci.json tap --rcfile=tests/config/tap.yml --no-color tests/*.test.ts", | ||
"ci": "npm run build && npm run test:ci" | ||
|
@@ -29,8 +29,9 @@ | |
"@types/node": "^18.6.2", | ||
"@types/tap": "^15.0.7", | ||
"c8": "^7.12.0", | ||
"rimraf": "^3.0.2", | ||
"tap": "^16.3.0", | ||
"typescript": "^4.7.4", | ||
"ts-node": "^10.9.1" | ||
"ts-node": "^10.9.1", | ||
"typescript": "^4.7.4" | ||
} | ||
} |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.