mirror of
https://github.com/terribleplan/next.js.git
synced 2024-01-19 02:48:18 +00:00
15bb1c5e79
- Replaces taskr-babel with taskr-typescript for the `next` package - Makes sure Node 8+ is used, no unneeded transpilation - Compile Next.js client side files through babel the same way pages are - Compile Next.js client side files to esmodules, not commonjs, so that tree shaking works. - Move error-debug.js out of next-server as it's only used/require in development - Drop ansi-html as dependency from next-server - Make next/link esmodule (for tree-shaking) - Make next/router esmodule (for tree-shaking) - add typescript compilation to next-server - Remove last remains of Flow - Move hoist-non-react-statics to next, out of next-server - Move htmlescape to next, out of next-server - Remove runtime-corejs2 from next-server
26 lines
777 B
JavaScript
26 lines
777 B
JavaScript
// Rewrite imports using next/<something> to next-server/<something>
|
|
export default function ({ types: t, template }) {
|
|
return {
|
|
visitor: {
|
|
ImportDeclaration (path) {
|
|
const source = path.node.source.value
|
|
if (source === 'next/asset') {
|
|
path.node.source.value = 'next-server/asset'
|
|
}
|
|
if (source === 'next/dynamic') {
|
|
path.node.source.value = 'next-server/dynamic'
|
|
}
|
|
if (source === 'next/constants') {
|
|
path.node.source.value = 'next-server/constants'
|
|
}
|
|
if (source === 'next/config') {
|
|
path.node.source.value = 'next-server/config'
|
|
}
|
|
if (source === 'next/head') {
|
|
path.node.source.value = 'next-server/head'
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|