-
Notifications
You must be signed in to change notification settings - Fork 35
/
cliqz-ios.js
46 lines (45 loc) · 1.15 KB
/
cliqz-ios.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
const publish = require('./common/publish');
const urls = require('./common/urls-cliqz');
module.exports = {
"platform": "react-native",
"format": "common",
"baseURL": "/",
"testsBasePath": "./build/modules",
"testem_launchers": ["unit-node"],
"testem_launchers_ci": ["unit-node"],
"pack": "npm pack",
"publish": publish.toEdge('browser-core', 'cliqz-ios'),
"isMobile": true,
"settings": Object.assign({}, urls, {
"RESULTS_TIMEOUT": 3000,
"ALLOWED_COUNTRY_CODES": ["de", "at", "ch", "es", "us", "fr", "nl", "gb", "it", "se"],
"RESULTS_PROVIDER_ORDER": ["calculator", "history", "cliqz", "querySuggestions", "instant"],
"CLEAR_RESULTS_AT_SESSION_START": false,
}),
"default_prefs" : {
"modules.pairing.enabled": false
},
"modules": [
"core",
"core-cliqz",
"search",
"p2p",
"pairing",
"mobile-pairing",
"mobile-cards",
"video-downloader",
"anolysis",
"geolocation"
],
"bundles": [
],
"react_components": {
"ExtensionApp": "./modules/mobile-cards/cliqz-ios/ExtensionApp"
},
"resources": {
"bundling": "assets",
"include": [
"core/logo-database.json",
]
}
};