1
0
Fork 0
mirror of https://github.com/terribleplan/next.js.git synced 2024-01-19 02:48:18 +00:00
next.js/packages/next-server/lib
Kyle Holmberg 72e7929242 Change page export validity check on client and server in development (#5857)
Resolves #4055 

Credit: https://github.com/zeit/next.js/pull/5095

I didn't use the ignore webpack plugin from the original PR and tested bundle size with https://github.com/zeit/next.js/pull/5339 - seems to be safe on that front.

Was able to get tests to pass locally, unsure of what goes wrong in CI 🤷‍♂️ 

**Questions**
1) The initial PR didn't include changes to `next-server/lib/router` in `getRouteInfo()`. Should the same changes be made within?

2) Should we add a test for rendering a component created via `forwardRef()`?

`component-with-forwardedRef`:
```javascript
export default React.forwardRef((props, ref) => <span {...props} forwardedRef={ref}>This is a component with a forwarded ref</span>);
```

some test:
```javascript
test('renders from forwardRef', async () => {
  const $ = await get$('/component-with-forwardedRef')
  const span = $('span')
  expect(span.text()).toMatch(/This is a component with a forwarded ref/)
})
```
2018-12-17 16:09:23 +01:00
..
router Change page export validity check on client and server in development (#5857) 2018-12-17 16:09:23 +01:00
asset.js next-server (#5357) 2018-10-02 00:55:31 +02:00
constants.js Fix linter (#5350) 2018-10-20 17:00:01 +02:00
dynamic.js Remove flow types (#5704) 2018-11-21 16:04:37 +01:00
event-emitter.js Use Typescript to transpile Next.js core files instead of Babel (#5747) 2018-11-28 15:03:02 +01:00
head.js Dedupe only items with unique key (#5800) 2018-12-03 17:28:42 +01:00
loadable-capture.tsx Convert render.js to typescript (#5869) 2018-12-13 01:00:46 +01:00
loadable.js Convert render.js to typescript (#5869) 2018-12-13 01:00:46 +01:00
runtime-config.js next-server (#5357) 2018-10-02 00:55:31 +02:00
side-effect.js next-server (#5357) 2018-10-02 00:55:31 +02:00
utils.js Use Typescript to transpile Next.js core files instead of Babel (#5747) 2018-11-28 15:03:02 +01:00