Skip to content

Commit

Permalink
refactor(materiel): update docs, change name
Browse files Browse the repository at this point in the history
  • Loading branch information
jef committed Apr 9, 2021
1 parent 0ebe745 commit 7ec8a16
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
1 change: 1 addition & 0 deletions docs/reference/filter.md
Original file line number Diff line number Diff line change
Expand Up @@ -125,6 +125,7 @@ Used with the `STORES` variable.
| Medimax | DE | `medimax`|
| Megekko | NL | `megekko`|
| MemoryExpress | CA | `memoryexpress`|
| Materiel | FR | `materiel` |
| Micro Center | US | `microcenter`|
| Mindfactory | DE | `mindfactory` |
| MSY | AU | `msy`|
Expand Down
4 changes: 2 additions & 2 deletions src/store/model/index.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import {config, defaultStoreData} from '../../config';
import {AComPC} from './acompc';
import {Ldlc} from './ldlc';
import {MaterielDotNet} from './materiel.net';
import {Materiel} from './materiel';
import {Adorama} from './adorama';
import {Akinformatica} from './akinformatica';
import {Allneeds} from './allneeds';
Expand Down Expand Up @@ -237,7 +237,7 @@ export const storeList = new Map([
[Medimax.name, Medimax],
[Megekko.name, Megekko],
[Ldlc.name, Ldlc],
[MaterielDotNet.name, MaterielDotNet],
[Materiel.name, Materiel],
[MemoryExpress.name, MemoryExpress],
[MicroCenter.name, MicroCenter],
[Mindfactory.name, Mindfactory],
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import {Store} from './store';

export const MaterielDotNet: Store = {
export const Materiel: Store = {
currency: '€',
labels: {
inStock: {
Expand Down Expand Up @@ -222,5 +222,5 @@ export const MaterielDotNet: Store = {
url: 'https://www.materiel.net/produit/202011060033.html',
},
],
name: 'materiel.net',
name: 'materiel',
};
3 changes: 1 addition & 2 deletions src/store/model/store.ts
Original file line number Diff line number Diff line change
Expand Up @@ -110,9 +110,8 @@ export type Model =
| 'gaming x3'
| 'ghost'
| 'ghost oc'
| 'ghost'
| 'suprim x'
| 'suprim'
| 'suprim x'
| 'gaming'
| 'hurricane'
| 'ichill x2'
Expand Down

0 comments on commit 7ec8a16

Please sign in to comment.