@parcel/codeframe 2.6.0 → 2.6.1

Sign up to get free protection for your applications and to get access to all the features.
package/lib/codeframe.js CHANGED
@@ -31146,7 +31146,7 @@ const setLazyProperty = (object, property, get)=>{
31146
31146
  get: ()=>{
31147
31147
  const value = get();
31148
31148
  Object.defineProperty(object, property, {
31149
- value,
31149
+ value: value,
31150
31150
  enumerable: true,
31151
31151
  configurable: true
31152
31152
  });