Skip to content

Commit

Permalink
refactor(react-native/polyfills): rename package to @react-native/js-…
Browse files Browse the repository at this point in the history
…polyfills and align version

Summary:
Changelog:
[General][Changed] - renamed react-native/polyfills -> react-native/js-polyfills and align with other packages versions (0.72.0) as a part of migration to monorepo

Reviewed By: motiz88

Differential Revision: D41553157

fbshipit-source-id: eef70c8e7639080acdeb6716d1a915760a85458a
  • Loading branch information
hoxyq authored and facebook-github-bot committed Dec 6, 2022
1 parent 17f221c commit 71399d0
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion Libraries/vendor/core/ErrorUtils.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
* @flow strict
*/

import type {ErrorUtilsT} from '@react-native/polyfills/error-guard';
import type {ErrorUtilsT} from '@react-native/js-polyfills/error-guard';

/**
* The particular require runtime that we are using looks for a global
Expand Down
4 changes: 2 additions & 2 deletions jest/setup.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@
const MockNativeMethods = jest.requireActual('./MockNativeMethods');
const mockComponent = jest.requireActual('./mockComponent');

jest.requireActual('@react-native/polyfills/Object.es8');
jest.requireActual('@react-native/polyfills/error-guard');
jest.requireActual('@react-native/js-polyfills/Object.es8');
jest.requireActual('@react-native/js-polyfills/error-guard');

global.__DEV__ = true;

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@
"@react-native-community/cli-platform-ios": "10.0.0-alpha.3",
"@react-native/assets-registry": "^0.72.0",
"@react-native/gradle-plugin": "^0.72.1",
"@react-native/polyfills": "2.0.0",
"@react-native/js-polyfills": "^0.72.0",
"@react-native/normalize-colors": "^0.72.0",
"abort-controller": "^3.0.0",
"anser": "^1.4.9",
Expand Down
4 changes: 2 additions & 2 deletions packages/polyfills/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@react-native/polyfills",
"version": "2.0.0",
"name": "@react-native/js-polyfills",
"version": "0.72.0",
"description": "Polyfills for React Native.",
"repository": {
"type": "git",
Expand Down
2 changes: 1 addition & 1 deletion rn-get-polyfills.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,4 @@

'use strict';

module.exports = require('@react-native/polyfills');
module.exports = require('@react-native/js-polyfills');

0 comments on commit 71399d0

Please sign in to comment.