Skip to content
This repository has been archived by the owner on Jan 18, 2024. It is now read-only.

Commit

Permalink
Merge branch 'main' into @kadikraman/validate-png
Browse files Browse the repository at this point in the history
  • Loading branch information
kadikraman committed Sep 21, 2023
2 parents 2e46165 + 93afce5 commit 2c75ab9
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ exports[`class-properties 1`] = `
Object {
Symbol(jest-snapshot-serializer-raw): "\\"use strict\\";
var _class;
function _defineProperty(obj, key, value) { key = _toPropertyKey(key); if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
function _toPropertyKey(arg) { var key = _toPrimitive(arg, \\"string\\"); return typeof key === \\"symbol\\" ? key : String(key); }
function _toPrimitive(input, hint) { if (typeof input !== \\"object\\" || input === null) return input; var prim = input[Symbol.toPrimitive]; if (prim !== undefined) { var res = prim.call(input, hint || \\"default\\"); if (typeof res !== \\"object\\") return res; throw new TypeError(\\"@@toPrimitive must return a primitive value.\\"); } return (hint === \\"string\\" ? String : Number)(input); }
Expand All @@ -16,10 +17,11 @@ class Bork {
});
}
}
_class = Bork;
//Static class properties
_defineProperty(Bork, \\"staticProperty\\", \\"babelIsCool\\");
_defineProperty(Bork, \\"staticFunction\\", function () {
return Bork.staticProperty;
return _class.staticProperty;
});",
}
`;
Expand Down
2 changes: 2 additions & 0 deletions packages/expo-doctor/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,9 @@
"@expo/json-file": "~8.2.37",
"@expo/schemer": "1.4.5",
"@expo/spawn-async": "^1.7.0",
"@types/debug": "^4.1.8",
"chalk": "^4.0.0",
"debug": "^4.3.4",
"ora": "3.4.0",
"resolve-from": "^5.0.0",
"semver": "7.3.2"
Expand Down

0 comments on commit 2c75ab9

Please sign in to comment.