File tree 7 files changed +22
-17
lines changed
isolated-hoist-non-react-statics-do-not-use-this-in-your-code
7 files changed +22
-17
lines changed Original file line number Diff line number Diff line change
1
+ ---
2
+ ' @emotion/react ' : patch
3
+ ---
4
+
5
+ Shorten the path of the "private" ` isolated-hoist-non-react-statics-do-not-use-this-in-your-code ` entrypoint to avoid exeeding path limitations on Windows.
Original file line number Diff line number Diff line change
1
+ {
2
+ "main" : " dist/emotion-react-_isolated-hnrs.cjs.js" ,
3
+ "module" : " dist/emotion-react-_isolated-hnrs.esm.js" ,
4
+ "umd:main" : " dist/emotion-react-_isolated-hnrs.umd.min.js" ,
5
+ "browser" : {
6
+ "./dist/emotion-react-_isolated-hnrs.cjs.js" : " ./dist/emotion-react-_isolated-hnrs.browser.cjs.js" ,
7
+ "./dist/emotion-react-_isolated-hnrs.esm.js" : " ./dist/emotion-react-_isolated-hnrs.browser.esm.js"
8
+ },
9
+ "sideEffects" : false ,
10
+ "preconstruct" : {
11
+ "umdName" : " emotionHoistNonReactStatics"
12
+ }
13
+ }
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 13
13
" dist" ,
14
14
" jsx-runtime" ,
15
15
" jsx-dev-runtime" ,
16
- " isolated-hoist-non-react-statics-do-not-use-this-in-your-code " ,
16
+ " _isolated-hnrs " ,
17
17
" types/*.d.ts" ,
18
18
" macro.js" ,
19
19
" macro.d.ts" ,
68
68
" ./index.js" ,
69
69
" ./jsx-runtime.js" ,
70
70
" ./jsx-dev-runtime.js" ,
71
- " ./isolated-hoist-non-react-statics-do-not-use-this-in-your-code .js"
71
+ " ./_isolated-hnrs .js"
72
72
],
73
73
"umdName" : " emotionReact"
74
74
}
File renamed without changes.
Original file line number Diff line number Diff line change 1
1
// @flow
2
2
import * as React from 'react'
3
3
import weakMemoize from '@emotion/weak-memoize'
4
- import hoistNonReactStatics from './isolated-hoist-non-react-statics-do-not-use-this-in-your-code '
4
+ import hoistNonReactStatics from './_isolated-hnrs '
5
5
6
6
export const ThemeContext = /* #__PURE__ */ React . createContext < Object > ( { } )
7
7
if ( process . env . NODE_ENV !== 'production' ) {
Original file line number Diff line number Diff line change 1
1
// @flow
2
2
export let isBrowser = typeof document !== 'undefined'
3
3
4
- export const hasOwnProperty = Object . prototype . hasOwnProperty
4
+ export const hasOwnProperty = { } . hasOwnProperty
You can’t perform that action at this time.
0 commit comments