react-native-keys icon indicating copy to clipboard operation
react-native-keys copied to clipboard

fix: change to weaker type definitions

Open YangJonghun opened this issue 11 months ago • 0 comments

Summary

change to weaker type definitions (partial revert commit bd74375bef2a618624c77d8be1bc0354460a502a) because current definition doesn't support below case

  • dev
{
  "public": {
    "OPTIONAL1": "test",
    "REQUIRE": "false"
  }
}

  • prod
{
  "public": {
    "OPTIONAL2": "test",
    "REQUIRE": "false"
  }
}

above case we met type error

Changelog

change to weaker type definitions

Test Plan

YangJonghun avatar Mar 21 '24 08:03 YangJonghun