1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-15 15:53:27 +00:00

Add jslib as a "real" dependency (#321)

* Split jslib

* Bump jslib

* Bump jslib, replace alias with tsconfig-paths-webpack-plugin
This commit is contained in:
Oscar Hinton
2021-06-07 19:25:55 +02:00
committed by GitHub
parent 3539d490d5
commit 477066118e
53 changed files with 1313 additions and 460 deletions

View File

@@ -1,10 +1,10 @@
import * as program from 'commander';
import { SyncService } from 'jslib/abstractions/sync.service';
import { SyncService } from 'jslib-common/abstractions/sync.service';
import { Response } from 'jslib/cli/models/response';
import { MessageResponse } from 'jslib/cli/models/response/messageResponse';
import { StringResponse } from 'jslib/cli/models/response/stringResponse';
import { Response } from 'jslib-node/cli/models/response';
import { MessageResponse } from 'jslib-node/cli/models/response/messageResponse';
import { StringResponse } from 'jslib-node/cli/models/response/stringResponse';
export class SyncCommand {
constructor(private syncService: SyncService) { }