Nuxt/packages/builder/src/builder.js

564 lines
17 KiB
JavaScript
Raw Normal View History

2018-03-16 19:52:17 +00:00
import path from 'path'
2018-03-16 16:12:06 +00:00
import chokidar from 'chokidar'
import consola from 'consola'
2018-03-16 19:11:24 +00:00
import fsExtra from 'fs-extra'
import Glob from 'glob'
2018-03-16 16:12:06 +00:00
import hash from 'hash-sum'
import pify from 'pify'
2018-03-16 16:12:06 +00:00
import serialize from 'serialize-javascript'
2018-03-16 19:52:17 +00:00
import upath from 'upath'
import concat from 'lodash/concat'
import debounce from 'lodash/debounce'
import map from 'lodash/map'
import omit from 'lodash/omit'
import template from 'lodash/template'
import uniq from 'lodash/uniq'
import uniqBy from 'lodash/uniqBy'
import values from 'lodash/values'
2018-03-16 19:52:17 +00:00
import devalue from '@nuxtjs/devalue'
import {
r,
wp,
wChunk,
createRoutes,
relativeTo,
waitFor,
2018-10-24 13:46:06 +00:00
determineGlobals,
2018-10-25 10:57:52 +00:00
stripWhitespace,
isString
} from '@nuxt/common'
2018-03-16 19:52:17 +00:00
import BuildContext from './context'
const glob = pify(Glob)
2017-06-11 14:17:36 +00:00
2018-03-16 16:12:06 +00:00
export default class Builder {
constructor(nuxt, bundleBuilder) {
2017-06-11 14:17:36 +00:00
this.nuxt = nuxt
this.plugins = []
2017-06-11 14:17:36 +00:00
this.options = nuxt.options
this.globals = determineGlobals(nuxt.options.globalName, nuxt.options.globals)
this.watchers = {
files: null,
custom: null,
restart: null
}
// Helper to resolve build paths
2018-01-13 05:22:11 +00:00
this.relativeToBuild = (...args) =>
relativeTo(this.options.buildDir, ...args)
this._buildStatus = STATUS.INITIAL
2018-11-08 09:15:56 +00:00
// Hooks for watch lifecycle
2017-11-24 03:43:01 +00:00
if (this.options.dev) {
2018-11-08 09:15:56 +00:00
// Start watching after initial render
this.nuxt.hook('build:done', () => {
consola.info('Waiting for file changes')
this.watchClient()
})
// Stop watching on nuxt.close()
2018-07-25 15:57:43 +00:00
this.nuxt.hook('close', () => this.unwatch())
2018-03-22 19:29:05 +00:00
}
if (this.options.build.analyze) {
this.nuxt.hook('build:done', () => {
consola.warn('Notice: Please do not deploy bundles built with analyze mode, it\'s only for analyzing purpose.')
})
}
// Resolve template
this.template = this.options.build.template || '@nuxt/vue-app'
if (typeof this.template === 'string') {
this.template = this.nuxt.resolver.requireModule(this.template)
}
2018-03-22 19:29:05 +00:00
// if(!this.options.dev) {
2018-01-08 15:11:03 +00:00
// TODO: enable again when unsafe concern resolved.(common/options.js:42)
2018-07-25 15:57:43 +00:00
// this.nuxt.hook('build:done', () => this.generateConfig())
2018-01-08 15:11:03 +00:00
// }
this.bundleBuilder = this.getBundleBuilder(bundleBuilder)
}
getBundleBuilder(BundleBuilder) {
if (typeof BundleBuilder === 'object') {
return BundleBuilder
}
const context = new BuildContext(this)
if (typeof BundleBuilder !== 'function') {
BundleBuilder = require('@nuxt/webpack').BundleBuilder
}
return new BundleBuilder(context)
2017-06-11 14:17:36 +00:00
}
normalizePlugins() {
return uniqBy(
this.options.plugins.map((p) => {
2018-01-13 05:22:11 +00:00
if (typeof p === 'string') p = { src: p }
2018-03-16 19:11:24 +00:00
const pluginBaseName = path.basename(p.src, path.extname(p.src)).replace(
2018-01-13 05:22:11 +00:00
/[^a-zA-Z?\d\s:]/g,
''
)
return {
src: this.nuxt.resolver.resolveAlias(p.src),
2018-01-13 05:22:11 +00:00
ssr: p.ssr !== false,
name: 'nuxt_plugin_' + pluginBaseName + '_' + hash(p.src)
}
}),
p => p.name
)
2017-07-10 22:53:06 +00:00
}
resolvePlugins() {
// Check plugins exist then set alias to their real path
return Promise.all(this.plugins.map(async (p) => {
const ext = path.extname(p.src) ? '' : '{.+([^.]),/index.+([^.])}'
const pluginFiles = await glob(`${p.src}${ext}`)
if (!pluginFiles || pluginFiles.length === 0) {
throw new Error(`Plugin not found: ${p.src}`)
} else if (pluginFiles.length > 1) {
consola.warn({
message: `Found ${pluginFiles.length} plugins that match the configuration, suggest to specify extension:`,
2018-11-08 09:15:56 +00:00
additional: '\n' + pluginFiles.map(x => `- ${x}`).join('\n')
})
}
p.src = this.relativeToBuild(p.src)
}))
}
2017-10-30 17:41:22 +00:00
forGenerate() {
this.bundleBuilder.forGenerate()
2017-08-17 12:43:51 +00:00
}
2017-10-30 17:41:22 +00:00
async build() {
// Avoid calling build() method multiple times when dev:true
2017-06-19 15:47:31 +00:00
/* istanbul ignore if */
if (this._buildStatus === STATUS.BUILD_DONE && this.options.dev) {
2017-06-11 14:17:36 +00:00
return this
}
// If building
2017-06-19 15:47:31 +00:00
/* istanbul ignore if */
2017-06-11 14:17:36 +00:00
if (this._buildStatus === STATUS.BUILDING) {
await waitFor(1000)
return this.build()
2017-06-11 14:17:36 +00:00
}
this._buildStatus = STATUS.BUILDING
2017-06-13 17:58:04 +00:00
2018-11-08 09:15:56 +00:00
if (this.options.dev) {
consola.info('Preparing project for development')
consola.info('Initial build may take a while')
} else {
consola.info('Production build')
}
2018-03-12 15:16:08 +00:00
// Wait for nuxt ready
await this.nuxt.ready()
2017-10-30 21:39:08 +00:00
// Call before hook
await this.nuxt.callHook('build:before', this, this.options.build)
2017-07-03 11:11:40 +00:00
2017-06-11 14:17:36 +00:00
// Check if pages dir exists and warn if not
this._nuxtPages = typeof this.options.build.createRoutes !== 'function'
if (this._nuxtPages) {
2018-03-16 19:11:24 +00:00
if (!fsExtra.existsSync(path.join(this.options.srcDir, this.options.dir.pages))) {
2018-08-08 10:54:05 +00:00
const dir = this.options.srcDir
2018-03-16 19:11:24 +00:00
if (fsExtra.existsSync(path.join(this.options.srcDir, '..', this.options.dir.pages))) {
2018-01-13 05:22:11 +00:00
throw new Error(
2018-02-03 16:04:15 +00:00
`No \`${this.options.dir.pages}\` directory found in ${dir}. Did you mean to run \`nuxt\` in the parent (\`../\`) directory?`
2018-01-13 05:22:11 +00:00
)
2017-06-11 14:17:36 +00:00
} else {
this._defaultPage = true
consola.warn(`No \`${this.options.dir.pages}\` directory found in ${dir}. Using the default built-in page.`)
2017-06-11 14:17:36 +00:00
}
}
}
2017-06-13 17:58:04 +00:00
2018-04-01 20:20:46 +00:00
consola.success('Builder initialized')
2018-03-16 06:26:23 +00:00
2018-04-01 20:20:46 +00:00
consola.debug(`App root: ${this.options.srcDir}`)
2017-06-11 14:17:36 +00:00
// Create .nuxt/, .nuxt/components and .nuxt/dist folders
2018-03-16 19:11:24 +00:00
await fsExtra.remove(r(this.options.buildDir))
const buildDirs = [r(this.options.buildDir, 'components')]
2017-06-11 14:17:36 +00:00
if (!this.options.dev) {
buildDirs.push(
r(this.options.buildDir, 'dist', 'client'),
r(this.options.buildDir, 'dist', 'server')
)
2017-06-11 14:17:36 +00:00
}
await Promise.all(buildDirs.map(dir => fsExtra.mkdirp(dir)))
2017-06-11 14:17:36 +00:00
// Generate routes and interpret the template files
await this.generateRoutesAndFiles()
await this.resolvePlugins()
// Start bundle build: webpack, rollup, parcel...
await this.bundleBuilder.build()
2017-06-11 14:17:36 +00:00
// Flag to set that building is done
this._buildStatus = STATUS.BUILD_DONE
2017-10-30 21:39:08 +00:00
// Call done hook
await this.nuxt.callHook('build:done', this)
2017-10-30 17:41:22 +00:00
2017-06-11 14:17:36 +00:00
return this
}
2017-10-30 17:41:22 +00:00
async generateRoutesAndFiles() {
2018-04-01 20:20:46 +00:00
consola.debug(`Generating nuxt files`)
// Plugins
this.plugins = Array.from(this.normalizePlugins())
2017-06-11 14:17:36 +00:00
// -- Templates --
let templatesFiles = Array.from(this.template.templatesFiles)
2017-06-11 14:17:36 +00:00
const templateVars = {
options: this.options,
2018-01-13 05:22:11 +00:00
extensions: this.options.extensions
.map(ext => ext.replace(/^\./, ''))
.join('|'),
2017-09-01 16:30:49 +00:00
messages: this.options.messages,
splitChunks: this.options.build.splitChunks,
uniqBy,
2017-06-11 14:17:36 +00:00
isDev: this.options.dev,
2018-10-24 13:46:06 +00:00
isTest: this.options.test,
debug: this.options.debug,
vue: { config: this.options.vue.config },
2017-08-20 13:13:42 +00:00
mode: this.options.mode,
2017-06-13 17:58:04 +00:00
router: this.options.router,
2017-06-11 14:17:36 +00:00
env: this.options.env,
head: this.options.head,
2018-03-16 19:11:24 +00:00
middleware: fsExtra.existsSync(path.join(this.options.srcDir, this.options.dir.middleware)),
store: this.options.store,
globalName: this.options.globalName,
globals: this.globals,
2017-06-11 14:17:36 +00:00
css: this.options.css,
2017-07-10 22:53:06 +00:00
plugins: this.plugins,
appPath: './App.js',
ignorePrefix: this.options.ignorePrefix,
2017-06-11 14:17:36 +00:00
layouts: Object.assign({}, this.options.layouts),
2018-01-13 05:22:11 +00:00
loading:
typeof this.options.loading === 'string'
? this.relativeToBuild(this.options.srcDir, this.options.loading)
: this.options.loading,
2017-06-11 14:17:36 +00:00
transition: this.options.transition,
2017-09-08 10:42:00 +00:00
layoutTransition: this.options.layoutTransition,
2018-02-03 23:24:45 +00:00
dir: this.options.dir,
2017-06-11 14:17:36 +00:00
components: {
2018-01-13 05:22:11 +00:00
ErrorPage: this.options.ErrorPage
? this.relativeToBuild(this.options.ErrorPage)
: null
2017-06-11 14:17:36 +00:00
}
}
// -- Layouts --
2018-03-16 19:11:24 +00:00
if (fsExtra.existsSync(path.resolve(this.options.srcDir, this.options.dir.layouts))) {
2018-02-03 18:41:43 +00:00
const layoutsFiles = await glob(`${this.options.dir.layouts}/**/*.{vue,js}`, {
2018-01-13 05:22:11 +00:00
cwd: this.options.srcDir,
2018-01-15 09:44:44 +00:00
ignore: this.options.ignore
2018-01-13 05:22:11 +00:00
})
layoutsFiles.forEach((file) => {
2018-08-08 10:54:05 +00:00
const name = file
.replace(new RegExp(`^${this.options.dir.layouts}/`), '')
2018-01-13 05:22:11 +00:00
.replace(/\.(vue|js)$/, '')
2017-08-14 12:15:00 +00:00
if (name === 'error') {
if (!templateVars.components.ErrorPage) {
templateVars.components.ErrorPage = this.relativeToBuild(
this.options.srcDir,
file
)
}
2017-08-14 12:15:00 +00:00
return
}
if (!templateVars.layouts[name] || /\.vue$/.test(file)) {
2018-01-13 05:22:11 +00:00
templateVars.layouts[name] = this.relativeToBuild(
this.options.srcDir,
file
)
}
2017-06-11 14:17:36 +00:00
})
}
// If no default layout, create its folder and add the default folder
if (!templateVars.layouts.default) {
2018-03-16 19:11:24 +00:00
await fsExtra.mkdirp(r(this.options.buildDir, 'layouts'))
2017-06-11 14:17:36 +00:00
templatesFiles.push('layouts/default.vue')
2017-06-20 17:12:06 +00:00
templateVars.layouts.default = './layouts/default.vue'
2017-06-11 14:17:36 +00:00
}
// -- Routes --
2018-04-01 20:20:46 +00:00
consola.debug('Generating routes...')
if (this._defaultPage) {
templateVars.router.routes = createRoutes(
['index.vue'],
this.template.templatesDir + '/pages'
)
} else if (this._nuxtPages) {
2017-06-11 14:17:36 +00:00
// Use nuxt.js createRoutes bases on pages/
2018-01-13 05:22:11 +00:00
const files = {}
; (await glob(`${this.options.dir.pages}/**/*.{vue,js}`, {
2018-01-13 05:22:11 +00:00
cwd: this.options.srcDir,
2018-01-15 09:44:44 +00:00
ignore: this.options.ignore
})).forEach((f) => {
const key = f.replace(/\.(js|vue)$/, '')
if (/\.vue$/.test(f) || !files[key]) {
files[key] = f.replace(/('|")/g, '\\$1')
}
})
2018-01-13 05:22:11 +00:00
templateVars.router.routes = createRoutes(
Object.values(files),
2018-02-02 16:58:51 +00:00
this.options.srcDir,
2018-02-03 16:04:15 +00:00
this.options.dir.pages
2018-01-13 05:22:11 +00:00
)
} else { // If user defined a custom method to create routes
2018-01-13 05:22:11 +00:00
templateVars.router.routes = this.options.build.createRoutes(
this.options.srcDir
)
2017-06-11 14:17:36 +00:00
}
2017-07-03 11:11:40 +00:00
2018-01-13 05:22:11 +00:00
await this.nuxt.callHook(
'build:extendRoutes',
templateVars.router.routes,
r
)
2017-06-11 14:17:36 +00:00
// router.extendRoutes method
if (typeof this.options.router.extendRoutes === 'function') {
// let the user extend the routes
2018-01-13 05:22:11 +00:00
const extendedRoutes = this.options.router.extendRoutes(
templateVars.router.routes,
r
)
// Only overwrite routes when something is returned for backwards compatibility
if (extendedRoutes !== undefined) {
templateVars.router.routes = extendedRoutes
}
2017-06-11 14:17:36 +00:00
}
// Make routes accessible for other modules and webpack configs
this.routes = templateVars.router.routes
2017-06-11 14:17:36 +00:00
// -- Store --
// Add store if needed
if (this.options.store) {
templatesFiles.push('store.js')
}
// Resolve template files
2018-01-13 05:22:11 +00:00
const customTemplateFiles = this.options.build.templates.map(
2018-03-16 19:11:24 +00:00
t => t.dst || path.basename(t.src || t)
2018-01-13 05:22:11 +00:00
)
templatesFiles = templatesFiles
.map((file) => {
2018-01-13 05:22:11 +00:00
// Skip if custom file was already provided in build.templates[]
if (customTemplateFiles.includes(file)) {
2018-01-13 05:22:11 +00:00
return
}
// Allow override templates using a file with same name in ${srcDir}/app
const customPath = r(this.options.srcDir, 'app', file)
2018-03-16 19:11:24 +00:00
const customFileExists = fsExtra.existsSync(customPath)
2018-01-13 05:22:11 +00:00
return {
src: customFileExists ? customPath : r(this.template.templatesDir, file),
2018-01-13 05:22:11 +00:00
dst: file,
custom: customFileExists
}
})
2018-10-25 10:57:52 +00:00
.filter(Boolean)
2017-06-11 14:17:36 +00:00
// -- Custom templates --
// Add custom template files
2018-01-13 05:22:11 +00:00
templatesFiles = templatesFiles.concat(
this.options.build.templates.map((t) => {
2018-01-13 05:22:11 +00:00
return Object.assign(
{
src: r(this.options.srcDir, t.src || t),
2018-03-16 19:11:24 +00:00
dst: t.dst || path.basename(t.src || t),
2018-01-13 05:22:11 +00:00
custom: true
},
t
)
})
)
2017-06-11 14:17:36 +00:00
2017-08-18 10:26:19 +00:00
// -- Loading indicator --
if (this.options.loadingIndicator.name) {
2018-03-16 19:11:24 +00:00
const indicatorPath1 = path.resolve(
this.template.templatesDir,
2018-01-13 05:22:11 +00:00
'views/loading',
this.options.loadingIndicator.name + '.html'
)
const indicatorPath2 = this.nuxt.resolver.resolveAlias(
2018-01-13 05:22:11 +00:00
this.options.loadingIndicator.name
)
2018-03-16 19:11:24 +00:00
const indicatorPath = fsExtra.existsSync(indicatorPath1)
2018-01-13 05:22:11 +00:00
? indicatorPath1
2018-03-16 19:11:24 +00:00
: fsExtra.existsSync(indicatorPath2) ? indicatorPath2 : null
2017-08-18 10:26:19 +00:00
if (indicatorPath) {
templatesFiles.push({
src: indicatorPath,
dst: 'loading.html',
options: this.options.loadingIndicator
})
2017-08-18 12:23:10 +00:00
} else {
2017-11-24 15:44:07 +00:00
/* istanbul ignore next */
2018-01-13 05:22:11 +00:00
// eslint-disable-next-line no-console
console.error(
`Could not fetch loading indicator: ${
this.options.loadingIndicator.name
}`
)
2017-08-18 10:26:19 +00:00
}
}
2018-01-13 05:22:11 +00:00
await this.nuxt.callHook('build:templates', {
templatesFiles,
templateVars,
resolve: r
})
2017-07-03 11:11:40 +00:00
2017-06-11 14:17:36 +00:00
// Interpret and move template files to .nuxt/
2018-01-13 05:22:11 +00:00
await Promise.all(
templatesFiles.map(async ({ src, dst, options, custom }) => {
// Add template to watchers
this.options.build.watch.push(src)
// Render template to dst
2018-03-16 19:11:24 +00:00
const fileContent = await fsExtra.readFile(src, 'utf8')
2018-01-13 05:22:11 +00:00
let content
try {
const templateFunction = template(fileContent, {
2018-01-13 05:22:11 +00:00
imports: {
serialize,
devalue,
2018-01-13 05:22:11 +00:00
hash,
r,
wp,
wChunk,
resolvePath: this.nuxt.resolver.resolvePath,
resolveAlias: this.nuxt.resolver.resolveAlias,
2018-01-13 05:22:11 +00:00
relativeToBuild: this.relativeToBuild
},
interpolate: /<%=([\s\S]+?)%>/g
2018-01-13 05:22:11 +00:00
})
2018-10-24 13:46:06 +00:00
content = stripWhitespace(
templateFunction(
Object.assign({}, templateVars, {
options: options || {},
custom,
src,
dst
})
)
2018-01-13 05:22:11 +00:00
)
} catch (err) {
/* istanbul ignore next */
throw new Error(`Could not compile template ${src}: ${err.message}`)
}
2018-03-16 19:11:24 +00:00
const _path = r(this.options.buildDir, dst)
// Ensure parent dir exits and write file
await fsExtra.outputFile(_path, content, 'utf8')
2018-01-13 05:22:11 +00:00
})
)
2018-04-01 20:20:46 +00:00
consola.success('Nuxt files generated')
2017-06-11 14:17:36 +00:00
}
// TODO: Uncomment when generateConfig enabled again
// async generateConfig() /* istanbul ignore next */ {
// const config = path.resolve(this.options.buildDir, 'build.config.js')
// const options = omit(this.options, Options.unsafeKeys)
// await fsExtra.writeFile(
// config,
// `export default ${JSON.stringify(options, null, ' ')}`,
// 'utf8'
// )
// }
2017-06-11 14:17:36 +00:00
2018-08-15 11:48:34 +00:00
watchClient() {
2017-11-24 03:43:01 +00:00
const src = this.options.srcDir
2018-01-02 02:36:09 +00:00
let patterns = [
2018-02-03 18:41:43 +00:00
r(src, this.options.dir.layouts),
2018-02-04 09:31:03 +00:00
r(src, this.options.dir.store),
2018-02-03 23:24:45 +00:00
r(src, this.options.dir.middleware),
2018-02-03 18:41:43 +00:00
r(src, `${this.options.dir.layouts}/*.{vue,js}`),
r(src, `${this.options.dir.layouts}/**/*.{vue,js}`)
2017-06-11 14:17:36 +00:00
]
2017-11-24 08:21:08 +00:00
if (this._nuxtPages) {
patterns.push(
2018-02-03 16:04:15 +00:00
r(src, this.options.dir.pages),
r(src, `${this.options.dir.pages}/*.{vue,js}`),
r(src, `${this.options.dir.pages}/**/*.{vue,js}`)
2017-11-24 08:21:08 +00:00
)
}
patterns = map(patterns, upath.normalizeSafe)
2018-01-02 02:36:09 +00:00
2018-08-15 11:48:34 +00:00
const options = this.options.watchers.chokidar
2017-06-11 14:17:36 +00:00
/* istanbul ignore next */
const refreshFiles = debounce(() => this.generateRoutesAndFiles(), 200)
2017-06-15 22:19:53 +00:00
// Watch for src Files
this.watchers.files = chokidar
2018-01-13 05:22:11 +00:00
.watch(patterns, options)
2017-06-11 14:17:36 +00:00
.on('add', refreshFiles)
.on('unlink', refreshFiles)
2017-06-15 22:19:53 +00:00
2017-06-11 14:17:36 +00:00
// Watch for custom provided files
let customPatterns = concat(
this.options.build.watch,
...values(omit(this.options.build.styleResources, ['options']))
)
customPatterns = map(uniq(customPatterns), upath.normalizeSafe)
this.watchers.custom = chokidar
.watch(customPatterns, options)
2017-06-11 14:17:36 +00:00
.on('change', refreshFiles)
2018-08-15 11:48:34 +00:00
}
2018-08-15 11:48:34 +00:00
watchServer() {
const nuxtRestartWatch = concat(
this.options.serverMiddleware
2018-10-25 10:57:52 +00:00
.filter(isString)
.map(this.nuxt.resolver.resolveAlias),
this.options.watch.map(this.nuxt.resolver.resolveAlias),
path.join(this.options.rootDir, 'nuxt.config.js')
)
2018-08-15 11:48:34 +00:00
this.watchers.restart = chokidar
2018-08-15 11:48:34 +00:00
.watch(nuxtRestartWatch, this.options.watchers.chokidar)
.on('change', (_path) => {
2018-08-15 11:48:34 +00:00
this.watchers.restart.close()
const { name, ext } = path.parse(_path)
2018-08-15 11:48:34 +00:00
this.nuxt.callHook('watch:fileChanged', this, `${name}${ext}`)
})
2017-06-11 14:17:36 +00:00
}
2017-11-24 03:43:01 +00:00
async unwatch() {
for (const watcher in this.watchers) {
if (this.watchers[watcher]) {
this.watchers[watcher].close()
}
}
if (this.bundleBuilder.unwatch) {
await this.bundleBuilder.unwatch()
}
2017-11-24 03:43:01 +00:00
}
2017-06-11 14:17:36 +00:00
}
const STATUS = {
INITIAL: 1,
BUILD_DONE: 2,
BUILDING: 3
}