@parcel/codeframe 2.6.0 → 2.6.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
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
  });