Re: [w3c/manifest] Extension point should come after processing other members (#629)

I'm ok with us moving it... the idea was to prevent people overriding standard behavior. If that becomes a problem, we can modify this to be:

```js
const defaultValues = processManifest();
const extendedValues = processExtensions(defaultValues);
const finalValue = {...extendedValues, ...defaultValues};
return finalValue;
```


-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/w3c/manifest/issues/629#issuecomment-347410700

Received on Tuesday, 28 November 2017 04:33:26 UTC