1
0
mirror of https://github.com/SomboChea/ui synced 2026-01-12 06:05:43 +07:00

fix: convert Engine component to hooks (#233)

* refactor: convert Engine component to hooks

* inline engine test data only used by one test

* remove  from engines tests

* remove confusing test abstraction

* change tests to not use mutations
This commit is contained in:
Andrew Hughson
2019-10-31 21:17:16 +00:00
committed by Juan Picado @jotadeveloper
parent b56e43846b
commit 5cb47ed49e
3 changed files with 73 additions and 101 deletions

View File

@@ -9,6 +9,10 @@ export interface PackageMetaInterface {
fileCount: number;
unpackedSize: number;
};
engines?: {
node?: string;
npm?: string;
};
license?: Partial<LicenseInterface> | string;
version: string;
};