Skip to content

Commit

Permalink
build(lyra): fixes the build process
Browse files Browse the repository at this point in the history
  • Loading branch information
micheleriva committed Jul 30, 2022
1 parent d83b154 commit c327cda
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 7 deletions.
2 changes: 1 addition & 1 deletion packages/examples/with-react/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"preview": "vite preview"
},
"dependencies": {
"@nearform/lyra": "workspace:*",
"@nearform/lyra": "0.0.1-beta-16",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
Expand Down
9 changes: 5 additions & 4 deletions packages/lyra/package.json
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]",
Expand All @@ -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"
Expand All @@ -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"
}
}
12 changes: 10 additions & 2 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit c327cda

Please sign in to comment.