This repository was archived by the owner on May 25, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 4 files changed +428
-409
lines changed
Expand file tree Collapse file tree 4 files changed +428
-409
lines changed Original file line number Diff line number Diff line change 1010 "lbt" : " dev-lib lbt"
1111 },
1212 "dependencies" : {
13- "@google-cloud/firestore" : " ^7.0.0 " ,
14- "@naturalcycles/db-lib" : " ^10.0.2 " ,
15- "@naturalcycles/js-lib" : " ^14.6.0 " ,
16- "@naturalcycles/nodejs-lib" : " ^13.1.0 "
13+ "@google-cloud/firestore" : " ^7" ,
14+ "@naturalcycles/db-lib" : " ^10" ,
15+ "@naturalcycles/js-lib" : " ^15 " ,
16+ "@naturalcycles/nodejs-lib" : " ^14 "
1717 },
1818 "devDependencies" : {
19- "@naturalcycles/dev-lib" : " ^17.3.0 " ,
20- "@types/node" : " ^22.7.5 " ,
21- "@vitest/coverage-v8" : " ^3.1.1 " ,
22- "dotenv" : " ^16.0.0 " ,
23- "firebase-admin" : " ^13.2.0 " ,
24- "tsx" : " ^4.19.3 " ,
25- "vitest" : " ^3.1.1 "
19+ "@naturalcycles/dev-lib" : " ^18 " ,
20+ "@types/node" : " ^22" ,
21+ "@vitest/coverage-v8" : " ^3" ,
22+ "dotenv" : " ^16" ,
23+ "firebase-admin" : " ^13" ,
24+ "tsx" : " ^4" ,
25+ "vitest" : " ^3"
2626 },
2727 "files" : [
2828 " dist" ,
Original file line number Diff line number Diff line change @@ -333,6 +333,10 @@ export class FirestoreDBTransaction implements DBTransaction {
333333 public tx : Transaction ,
334334 ) { }
335335
336+ async commit ( ) : Promise < void > {
337+ throw new Error ( 'FirestoreDBTransaction.commit() is not implemented' )
338+ }
339+
336340 async rollback ( ) : Promise < void > {
337341 throw new RollbackError ( )
338342 }
Original file line number Diff line number Diff line change 11import { defineConfig } from 'vitest/config'
2- import { sharedConfig } from '@naturalcycles/dev-lib/cfg/vitest.config.mjs '
2+ import { sharedConfig } from '@naturalcycles/dev-lib/cfg/vitest.config.js '
33
44export default defineConfig ( {
55 test : {
You can’t perform that action at this time.
0 commit comments