Skip to content

Commit

Permalink
try to use npm instead of lerna
Browse files Browse the repository at this point in the history
  • Loading branch information
Freezystem committed Aug 28, 2024
1 parent cc1dfbb commit 4a38d0e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@
"demo": "node dev.js",
"test:unit": "jest --testMatch \"**/unit/**/*.spec.js\" --coverage",
"test:integration": "jest --testMatch \"**/integration/**/*.spec.js\" --runInBand --coverage",
"test:mongoose7": "lerna add mongoose@7 --dev --scope moleculer-db-adapter-mongoose && jest --testMatch \"**/moleculer-db-adapter-mongoose/**/*.spec.js\"",
"test:mongoose8": "lerna add mongoose@8 --dev --scope moleculer-db-adapter-mongoose && jest --testMatch \"**/moleculer-db-adapter-mongoose/**/*.spec.js\"",
"test:mongoose7": "npm i -D mongoose@7 -w moleculer-db-adapter-mongoose --lockfile-version 1 && jest --testMatch \"**/moleculer-db-adapter-mongoose/**/*.spec.js\"",
"test:mongoose8": "npm i -D mongoose@8 -w moleculer-db-adapter-mongoose --lockfile-version 1 && jest --testMatch \"**/moleculer-db-adapter-mongoose/**/*.spec.js\"",
"ci": "jest --watch",
"coverall": "cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js",
"init": "cd packages && moleculer init addon",
Expand Down

0 comments on commit 4a38d0e

Please sign in to comment.