mirror of
https://github.com/FoggedLens/iD.git
synced 2026-02-13 09:12:52 +00:00
See: https://github.com/openstreetmap/iD/issues/3403#issuecomment-245150454 This change drops the iD.js bundle size from 4.5MB to 3.4MB, and makes it much more readable, which is nice for debugging. This does not affect the minified bundle size.
27 lines
1.0 KiB
JavaScript
27 lines
1.0 KiB
JavaScript
export { wikipedia as dataWikipedia } from 'wmf-sitematrix';
|
|
export { default as dataFeatureIcons } from 'maki/www/maki-sprite.json';
|
|
export { default as dataSuggestions } from 'name-suggestion-index/name-suggestions.json';
|
|
|
|
export { dataAddressFormats } from './address-formats.json';
|
|
export { dataDeprecated } from './deprecated.json';
|
|
export { dataDiscarded } from './discarded.json';
|
|
export { dataImagery } from './imagery.json';
|
|
export { dataLocales } from './locales.json';
|
|
export { dataPhoneFormats } from './phone-formats.json';
|
|
|
|
export { default as dataImperial } from './imperial.json';
|
|
export { default as dataDriveLeft } from './drive-left.json';
|
|
export { en as dataEn } from '../dist/locales/en.json';
|
|
|
|
import { presets } from './presets/presets.json';
|
|
import { defaults } from './presets/defaults.json';
|
|
import { categories } from './presets/categories.json';
|
|
import { fields } from './presets/fields.json';
|
|
|
|
export var dataPresets = {
|
|
presets: presets,
|
|
defaults: defaults,
|
|
categories: categories,
|
|
fields: fields
|
|
};
|