Ensure externals are correct for mini-css-extract-plugin (#25340)

Co-authored-by: kodiakhq[bot] <49736102+kodiakhq[bot]@users.noreply.github.com>
This commit is contained in:
JJ Kasper 2021-05-23 06:15:58 -05:00 committed by GitHub
parent 0aef2728e4
commit a348407bcf
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
13 changed files with 1241 additions and 3 deletions

View file

@ -43,6 +43,7 @@ const hookPropertyMap = new Map(
],
['webpack/lib/GraphHelpers', 'next/dist/compiled/webpack/GraphHelpers'],
['webpack/lib/GraphHelpers.js', 'next/dist/compiled/webpack/GraphHelpers'],
['webpack/lib/NormalModule', 'next/dist/compiled/webpack/NormalModule'],
['webpack-sources', 'next/dist/compiled/webpack/sources'],
['webpack-sources/lib', 'next/dist/compiled/webpack/sources'],
['webpack-sources/lib/index', 'next/dist/compiled/webpack/sources'],

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View file

@ -694,7 +694,7 @@ export async function ncc_webpack_bundle5(task, opts) {
}
const webpackBundlePackages = {
webpack: 'next/dist/compiled/webpack/webpack',
webpack: 'next/dist/compiled/webpack/webpack-lib',
}
Object.assign(externals, webpackBundlePackages)

View file

@ -0,0 +1,5 @@
module.exports = {
future: {
webpack5: false,
},
}

View file

@ -0,0 +1,27 @@
import styles from './Component2.module.scss'
export default function Content2() {
return (
<div className={styles.container}>
<h1 className={styles.header}>Where does it come from?</h1>
<div className={styles.textContent}>
Contrary to popular belief, Lorem Ipsum is not simply random text. It
has roots in a piece of classical Latin literature from 45 BC, making it
over 2000 years old. Richard McClintock, a Latin professor at
Hampden-Sydney College in Virginia, looked up one of the more obscure
Latin words, consectetur, from a Lorem Ipsum passage, and going through
the cites of the word in classical literature, discovered the
undoubtable source. Lorem Ipsum comes from sections 1.10.32 and 1.10.33
of "de Finibus Bonorum et Malorum" (The Extremes of Good and Evil) by
Cicero, written in 45 BC. This book is a treatise on the theory of
ethics, very popular during the Renaissance. The first line of Lorem
Ipsum, "Lorem ipsum dolor sit amet..", comes from a line in section
1.10.32. The standard chunk of Lorem Ipsum used since the 1500s is
reproduced below for those interested. Sections 1.10.32 and 1.10.33 from
"de Finibus Bonorum et Malorum" by Cicero are also reproduced in their
exact original form, accompanied by English versions from the 1914
translation by H. Rackham.
</div>
</div>
)
}

View file

@ -0,0 +1,13 @@
.header {
font-style: italic;
}
.container {
background-color: #dddddd;
padding: 1rem;
}
.textContent {
color: #666;
letter-spacing: -1px;
}

View file

@ -0,0 +1,29 @@
import styles from './Content.module.css'
import Content2 from './Component2'
export default function Content() {
return (
<div className={styles.container}>
<h1 className={styles.header}>Where does it come from?</h1>
<div className={styles.textContent}>
Contrary to popular belief, Lorem Ipsum is not simply random text. It
has roots in a piece of classical Latin literature from 45 BC, making it
over 2000 years old. Richard McClintock, a Latin professor at
Hampden-Sydney College in Virginia, looked up one of the more obscure
Latin words, consectetur, from a Lorem Ipsum passage, and going through
the cites of the word in classical literature, discovered the
undoubtable source. Lorem Ipsum comes from sections 1.10.32 and 1.10.33
of "de Finibus Bonorum et Malorum" (The Extremes of Good and Evil) by
Cicero, written in 45 BC. This book is a treatise on the theory of
ethics, very popular during the Renaissance. The first line of Lorem
Ipsum, "Lorem ipsum dolor sit amet..", comes from a line in section
1.10.32. The standard chunk of Lorem Ipsum used since the 1500s is
reproduced below for those interested. Sections 1.10.32 and 1.10.33 from
"de Finibus Bonorum et Malorum" by Cicero are also reproduced in their
exact original form, accompanied by English versions from the 1914
translation by H. Rackham.
</div>
<Content2 />
</div>
)
}

View file

@ -0,0 +1,13 @@
.header {
font-style: italic;
}
.container {
background-color: #dddddd;
padding: 1rem;
}
.textContent {
color: #666;
letter-spacing: -1px;
}

File diff suppressed because it is too large Load diff

View file

@ -0,0 +1,3 @@
import dynamic from 'next/dynamic'
export const Comp = dynamic(() => import('../Content'), { ssr: false })

View file

@ -0,0 +1,24 @@
import React, { useState } from 'react'
import style from '../Content4.module.css'
import { Comp } from '../inner/k'
export default function Index() {
const [s] = useState(true)
if (s) {
return (
<>
<div className={style.header}></div>
<Comp />
</>
)
}
return null
}
export const getServerSideProps = () => {
return {
props: {},
}
}

View file

@ -0,0 +1,56 @@
/* eslint-env jest */
import webdriver from 'next-webdriver'
import { join } from 'path'
import {
findPort,
launchApp,
killApp,
nextBuild,
nextStart,
} from 'next-test-utils'
jest.setTimeout(1000 * 60 * 2)
let app
let appPort
const appDir = join(__dirname, '../')
function runTests() {
it('should load page correctly', async () => {
const browser = await webdriver(appPort, '/')
expect(
await browser
.elementByCss('#__next div:nth-child(2)')
.getComputedCss('background-color')
).toContain('221, 221, 221')
expect(await browser.eval('document.documentElement.innerHTML')).toContain(
'Where does it come from?'
)
})
}
describe('next/dynamic', () => {
describe('dev mode', () => {
beforeAll(async () => {
appPort = await findPort()
app = await launchApp(appDir, appPort)
})
afterAll(() => killApp(app))
runTests(true)
})
describe('production mode', () => {
beforeAll(async () => {
await nextBuild(appDir)
appPort = await findPort()
app = await nextStart(appDir, appPort)
})
afterAll(() => killApp(app))
runTests()
})
})