Skip to content

Commit

Permalink
feat(store): add GPU and CPU support for Vuugo (#1555)
Browse files Browse the repository at this point in the history
  • Loading branch information
anthonytam authored Jan 3, 2021
1 parent f9a3d03 commit 8ab6e1f
Show file tree
Hide file tree
Showing 4 changed files with 728 additions and 0 deletions.
1 change: 1 addition & 0 deletions docs/reference/filter.md
Original file line number Diff line number Diff line change
Expand Up @@ -137,6 +137,7 @@ Used with the `STORES` variable.
| Umart | AU | `umart`|
| Unieuro | IT | `unieuro`|
| Very | UK | `very`|
| Vuugo | CA | `vuugo` |
| Walmart | US | `walmart`|
| Walmart | CA | `walmart-ca`|
| Wipoid | ES | `wipoid`|
Expand Down
2 changes: 2 additions & 0 deletions src/store/model/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -101,6 +101,7 @@ import {Umart} from './umart';
import {Unieuro} from './unieuro';
import {Very} from './very';
import {VsGamers} from './vsgamers';
import {Vuugo} from './vuugo';
import {Walmart} from './walmart';
import {WalmartCa} from './walmart-ca';
import {Wipoid} from './wipoid';
Expand Down Expand Up @@ -210,6 +211,7 @@ export const storeList = new Map([
[Unieuro.name, Unieuro],
[Very.name, Very],
[VsGamers.name, VsGamers],
[Vuugo.name, Vuugo],
[Walmart.name, Walmart],
[WalmartCa.name, WalmartCa],
[Wipoid.name, Wipoid],
Expand Down
1 change: 1 addition & 0 deletions src/store/model/store.ts
Original file line number Diff line number Diff line change
Expand Up @@ -147,6 +147,7 @@ export type Model =
| 'xc3 black'
| 'xc3 ultra'
| 'xc3'
| 'xlr8 epic x'
| 'xlr8 revel'
| 'xlr8 uprising';

Expand Down
Loading

0 comments on commit 8ab6e1f

Please sign in to comment.