2017-06-14 16:13:43 +00:00
import _ from 'lodash'
import { join , resolve } from 'path'
import { existsSync } from 'fs'
2017-08-15 01:06:56 +00:00
import { isUrl , isPureObject } from 'utils'
2017-06-14 16:13:43 +00:00
2017-08-16 07:40:10 +00:00
const Options = { }
export default Options
Options . from = function ( _options ) {
2017-06-14 16:13:43 +00:00
// Clone options to prevent unwanted side-effects
const options = Object . assign ( { } , _options )
// Normalize options
if ( options . loading === true ) {
delete options . loading
}
if ( options . router && typeof options . router . middleware === 'string' ) {
options . router . middleware = [ options . router . middleware ]
}
if ( options . router && typeof options . router . base === 'string' ) {
options . _routerBaseSpecified = true
}
if ( typeof options . transition === 'string' ) {
options . transition = { name : options . transition }
}
2017-09-08 10:42:00 +00:00
if ( typeof options . layoutTransition === 'string' ) {
options . layoutTransition = { name : options . layoutTransition }
}
2017-06-14 16:13:43 +00:00
// Apply defaults
2017-07-30 12:20:58 +00:00
_ . defaultsDeep ( options , Options . defaults )
2017-06-14 16:13:43 +00:00
// Resolve dirs
2017-07-31 22:24:10 +00:00
const hasValue = v => typeof v === 'string' && v
options . rootDir = hasValue ( options . rootDir ) ? options . rootDir : process . cwd ( )
options . srcDir = hasValue ( options . srcDir ) ? resolve ( options . rootDir , options . srcDir ) : options . rootDir
options . modulesDir = resolve ( options . rootDir , hasValue ( options . modulesDir ) ? options . modulesDir : 'node_modules' )
2017-08-21 11:16:35 +00:00
options . buildDir = resolve ( options . rootDir , options . buildDir )
options . cacheDir = resolve ( options . rootDir , options . cacheDir )
2017-06-14 16:13:43 +00:00
// If app.html is defined, set the template path to the user template
2017-06-16 12:42:45 +00:00
options . appTemplatePath = resolve ( options . buildDir , 'views/app.template.html' )
2017-06-14 16:13:43 +00:00
if ( existsSync ( join ( options . srcDir , 'app.html' ) ) ) {
options . appTemplatePath = join ( options . srcDir , 'app.html' )
}
2017-06-14 17:32:25 +00:00
// Ignore publicPath on dev
2017-06-19 15:47:31 +00:00
/* istanbul ignore if */
2017-06-14 17:32:25 +00:00
if ( options . dev && isUrl ( options . build . publicPath ) ) {
2017-07-30 12:20:58 +00:00
options . build . publicPath = Options . defaults . build . publicPath
2017-06-14 17:32:25 +00:00
}
// If store defined, update store options to true unless explicitly disabled
if ( options . store !== false && existsSync ( join ( options . srcDir , 'store' ) ) ) {
2017-06-14 17:38:07 +00:00
options . store = true
2017-06-14 17:32:25 +00:00
}
2017-08-18 10:26:19 +00:00
// Normalize loadingIndicator
if ( ! isPureObject ( options . loadingIndicator ) ) {
options . loadingIndicator = { name : options . loadingIndicator }
}
// Apply defaults to loadingIndicator
options . loadingIndicator = Object . assign ( {
2017-09-01 16:16:08 +00:00
name : 'pulse' ,
2017-09-02 20:03:48 +00:00
color : '#dbe1ec' ,
2017-08-18 10:26:19 +00:00
background : 'white'
} , options . loadingIndicator )
2017-08-20 08:38:38 +00:00
// cssSourceMap
if ( options . build . cssSourceMap === undefined ) {
options . build . cssSourceMap = options . dev
}
2017-08-15 01:06:56 +00:00
// Postcss
// 1. Check if it is explicitly disabled by false value
// ... Disable all postcss loaders
// 2. Check if any standard source of postcss config exists
2017-09-29 10:17:55 +00:00
// ... Make postcss = { config: { path } }
2017-08-15 01:06:56 +00:00
// 3. Else (Easy Usage)
// ... Auto merge it with defaults
if ( options . build . postcss !== false ) {
// Detect postcss config existence
// https://github.com/michael-ciniawsky/postcss-load-config
2017-09-29 10:17:55 +00:00
let postcssConfigPath
2017-08-15 01:06:56 +00:00
for ( let dir of [ options . srcDir , options . rootDir ] ) {
for ( let file of [ 'postcss.config.js' , '.postcssrc.js' , '.postcssrc' , '.postcssrc.json' , '.postcssrc.yaml' ] ) {
if ( existsSync ( resolve ( dir , file ) ) ) {
2017-09-29 10:17:55 +00:00
postcssConfigPath = resolve ( dir , file )
2017-08-15 01:06:56 +00:00
break
}
}
2017-09-29 10:17:55 +00:00
if ( postcssConfigPath ) break
2017-08-15 01:06:56 +00:00
}
// Default postcss options
2017-09-29 10:17:55 +00:00
if ( postcssConfigPath ) {
options . build . postcss = {
2017-08-15 01:06:56 +00:00
sourceMap : options . build . cssSourceMap ,
2017-09-29 10:17:55 +00:00
// https://github.com/postcss/postcss-loader/blob/master/lib/index.js#L79
config : {
path : postcssConfigPath
2017-08-15 01:06:56 +00:00
}
2017-09-29 10:17:55 +00:00
}
} else {
// Normalize & Apply default plugins
if ( Array . isArray ( options . build . postcss ) ) {
options . build . postcss = { plugins : options . build . postcss }
}
if ( isPureObject ( options . build . postcss ) ) {
options . build . postcss = Object . assign ( {
sourceMap : options . build . cssSourceMap ,
plugins : {
// https://github.com/postcss/postcss-import
'postcss-import' : {
root : options . rootDir ,
path : [
options . srcDir ,
options . rootDir ,
options . modulesDir
]
} ,
// https://github.com/postcss/postcss-url
'postcss-url' : { } ,
// http://cssnext.io/postcss
'postcss-cssnext' : { }
}
} , options . build . postcss )
}
2017-08-15 01:06:56 +00:00
}
2017-08-14 21:13:08 +00:00
}
2017-08-05 00:58:26 +00:00
// Debug errors
2017-08-05 21:48:43 +00:00
if ( options . debug === undefined ) {
options . debug = options . dev
2017-08-05 00:58:26 +00:00
}
2017-08-19 13:22:53 +00:00
// Apply mode preset
let modePreset = Options . modes [ options . mode || 'universal' ] || Options . modes [ 'universal' ]
_ . defaultsDeep ( options , modePreset )
2017-07-11 00:24:39 +00:00
2017-08-18 13:44:34 +00:00
// If no server-side rendering, add appear true transition
if ( options . render . ssr === false ) {
options . transition . appear = true
}
2017-06-14 16:13:43 +00:00
return options
}
2017-07-30 12:20:58 +00:00
Options . modes = {
2017-07-11 00:24:39 +00:00
universal : {
build : {
ssr : true
} ,
render : {
ssr : true
}
} ,
spa : {
build : {
ssr : false
} ,
render : {
ssr : false
}
}
}
2017-07-30 12:20:58 +00:00
Options . defaults = {
2017-07-11 00:24:39 +00:00
mode : 'universal' ,
dev : process . env . NODE _ENV !== 'production' ,
2017-08-05 21:48:43 +00:00
debug : undefined , // Will be equal to dev if not provided
2017-06-11 14:17:36 +00:00
buildDir : '.nuxt' ,
2017-08-21 11:16:35 +00:00
cacheDir : '.cache' ,
2017-06-18 13:48:25 +00:00
nuxtAppDir : resolve ( _ _dirname , '../lib/app/' ) , // Relative to dist
2017-06-11 14:17:36 +00:00
build : {
analyze : false ,
2017-08-21 11:16:35 +00:00
dll : false ,
2017-06-11 14:17:36 +00:00
extractCSS : false ,
2017-08-19 12:10:55 +00:00
cssSourceMap : undefined ,
2017-07-11 00:24:39 +00:00
ssr : undefined ,
2017-06-11 14:17:36 +00:00
publicPath : '/_nuxt/' ,
filenames : {
2017-08-16 07:24:59 +00:00
css : 'common.[contenthash].css' ,
2017-06-11 14:17:36 +00:00
manifest : 'manifest.[hash].js' ,
2017-08-18 07:17:56 +00:00
vendor : 'common.[chunkhash].js' ,
2017-08-16 10:36:27 +00:00
app : 'app.[chunkhash].js' ,
chunk : '[name].[chunkhash].js'
2017-06-11 14:17:36 +00:00
} ,
vendor : [ ] ,
plugins : [ ] ,
babel : { } ,
2017-08-15 01:06:56 +00:00
postcss : { } ,
2017-06-11 14:17:36 +00:00
templates : [ ] ,
2017-07-09 09:40:37 +00:00
watch : [ ] ,
devMiddleware : { } ,
hotMiddleware : { }
2017-06-11 14:17:36 +00:00
} ,
generate : {
dir : 'dist' ,
routes : [ ] ,
2017-07-09 10:00:08 +00:00
concurrency : 500 ,
2017-06-11 14:17:36 +00:00
interval : 0 ,
minify : {
collapseBooleanAttributes : true ,
collapseWhitespace : true ,
decodeEntities : true ,
minifyCSS : true ,
minifyJS : true ,
processConditionalComments : true ,
removeAttributeQuotes : false ,
removeComments : false ,
removeEmptyAttributes : true ,
removeOptionalTags : true ,
removeRedundantAttributes : true ,
removeScriptTypeAttributes : false ,
removeStyleLinkTypeAttributes : false ,
removeTagWhitespace : false ,
sortAttributes : true ,
2017-08-13 19:12:35 +00:00
sortClassName : false ,
2017-06-11 14:17:36 +00:00
trimCustomFragments : true ,
useShortDoctype : true
}
} ,
env : { } ,
head : {
meta : [ ] ,
link : [ ] ,
style : [ ] ,
script : [ ]
} ,
plugins : [ ] ,
css : [ ] ,
modules : [ ] ,
layouts : { } ,
serverMiddleware : [ ] ,
ErrorPage : null ,
loading : {
color : 'black' ,
failedColor : 'red' ,
height : '2px' ,
2017-08-29 11:58:45 +00:00
duration : 5000 ,
rtl : false
2017-06-11 14:17:36 +00:00
} ,
2017-08-18 10:29:37 +00:00
loadingIndicator : { } ,
2017-06-11 14:17:36 +00:00
transition : {
name : 'page' ,
2017-08-18 13:44:34 +00:00
mode : 'out-in' ,
2017-08-18 14:47:01 +00:00
appear : false ,
appearClass : 'appear' ,
appearActiveClass : 'appear-active' ,
appearToClass : 'appear-to'
2017-06-11 14:17:36 +00:00
} ,
2017-09-08 10:42:00 +00:00
layoutTransition : {
name : 'layout' ,
mode : 'out-in'
} ,
2017-06-11 14:17:36 +00:00
router : {
mode : 'history' ,
base : '/' ,
2017-06-13 17:58:04 +00:00
routes : [ ] ,
2017-06-11 14:17:36 +00:00
middleware : [ ] ,
linkActiveClass : 'nuxt-link-active' ,
linkExactActiveClass : 'nuxt-link-exact-active' ,
extendRoutes : null ,
2017-07-04 16:30:01 +00:00
scrollBehavior : null ,
fallback : false
2017-06-11 14:17:36 +00:00
} ,
render : {
2017-07-04 21:50:43 +00:00
bundleRenderer : { } ,
2017-06-20 12:48:25 +00:00
resourceHints : true ,
2017-07-11 00:24:39 +00:00
ssr : undefined ,
2017-06-11 14:17:36 +00:00
http2 : {
push : false
} ,
static : { } ,
gzip : {
threshold : 0
} ,
etag : {
weak : true // Faster for responses > 5KB
}
} ,
watchers : {
2017-08-21 11:16:35 +00:00
webpack : {
ignored : /-dll/
} ,
2017-06-11 14:17:36 +00:00
chokidar : { }
2017-09-01 16:16:08 +00:00
} ,
2017-09-09 20:21:51 +00:00
editor : {
editor : 'code'
} ,
2017-09-01 16:16:08 +00:00
messages : {
2017-09-01 16:40:01 +00:00
error _404 : 'This page could not be found' ,
2017-09-01 16:30:49 +00:00
server _error : 'Server error' ,
nuxtjs : 'Nuxt.js' ,
back _to _home : 'Back to the home page' ,
server _error _details : 'An error occurred in the application and your page could not be served. If you are the application owner, check your logs for details.' ,
client _error : 'Error' ,
client _error _details : 'An error occurred while rendering the page. Check developer tools console for details.'
2017-06-11 14:17:36 +00:00
}
}