mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-27 08:02:01 +00:00
Merge branch 'dev' into feat-cleanup-test-console-output
This commit is contained in:
commit
a00f482d24
@ -23,12 +23,6 @@ jobs:
|
||||
paths:
|
||||
- "node_modules"
|
||||
|
||||
# Build
|
||||
- run:
|
||||
name: Build
|
||||
command: |
|
||||
yarn build
|
||||
|
||||
# Test
|
||||
- run:
|
||||
name: Tests
|
||||
@ -36,10 +30,10 @@ jobs:
|
||||
|
||||
# Release next
|
||||
- run:
|
||||
name: Release Next version
|
||||
name: Publish nuxt-next
|
||||
command: |
|
||||
if [ "${CIRCLE_BRANCH}" == "dev" ]; then
|
||||
echo "TOKEN: $NPM_TOKEN"
|
||||
echo "//registry.npmjs.org/:_authToken=$NPM_TOKEN" >> ~/.npmrc
|
||||
npm run release-next
|
||||
echo "//registry.yarnpkg.com/:_authToken=$NPM_TOKEN" >> ~/.npmrc
|
||||
./scripts/release-next && npm publish --tag next
|
||||
fi
|
||||
|
@ -8,7 +8,7 @@ module.exports = {
|
||||
browser: true,
|
||||
node: true
|
||||
},
|
||||
extends: 'standard',
|
||||
extends: ['standard', 'standard-jsx'],
|
||||
// required to lint *.vue files
|
||||
plugins: [
|
||||
'html'
|
||||
|
@ -1,14 +1,13 @@
|
||||
language: node_js
|
||||
node_js:
|
||||
- "8"
|
||||
- "6"
|
||||
- "9"
|
||||
cache:
|
||||
yarn: true
|
||||
directories:
|
||||
- node_modules
|
||||
install:
|
||||
- yarn install
|
||||
- yarn run build
|
||||
script:
|
||||
- yarn run test
|
||||
after_success:
|
||||
|
@ -1,8 +1,8 @@
|
||||
# Test against the latest version of this Node.js version
|
||||
environment:
|
||||
matrix:
|
||||
- nodejs_version: "6"
|
||||
- nodejs_version: "8"
|
||||
- nodejs_version: "9"
|
||||
|
||||
cache:
|
||||
- "%LOCALAPPDATA%\\Yarn"
|
||||
|
@ -1,116 +0,0 @@
|
||||
// Some parts brought from https://github.com/vuejs/vue/blob/dev/build/config.js
|
||||
const { resolve } = require('path')
|
||||
const rollupBabel = require('rollup-plugin-babel')
|
||||
const rollupAlias = require('rollup-plugin-alias')
|
||||
const rollupCommonJS = require('rollup-plugin-commonjs')
|
||||
const rollupReplace = require('rollup-plugin-replace')
|
||||
const rollupNodeResolve = require('rollup-plugin-node-resolve')
|
||||
const packageJson = require('../package.json')
|
||||
|
||||
const dependencies = Object.keys(packageJson.dependencies)
|
||||
const version = packageJson.version || process.env.VERSION
|
||||
|
||||
// -----------------------------
|
||||
// Banner
|
||||
// -----------------------------
|
||||
const banner =
|
||||
'/*!\n' +
|
||||
' * Nuxt.js v' + version + '\n' +
|
||||
' * Released under the MIT License.\n' +
|
||||
' */'
|
||||
|
||||
// -----------------------------
|
||||
// Aliases
|
||||
// -----------------------------
|
||||
const rootDir = resolve(__dirname, '..')
|
||||
const libDir = resolve(rootDir, 'lib')
|
||||
const distDir = resolve(rootDir, 'dist')
|
||||
|
||||
const aliases = {
|
||||
core: resolve(libDir, 'core/index.js'),
|
||||
builder: resolve(libDir, 'builder/index.js'),
|
||||
common: resolve(libDir, 'common/index.js'),
|
||||
utils: resolve(libDir, 'common/utils.js'),
|
||||
app: resolve(libDir, 'app')
|
||||
}
|
||||
|
||||
// -----------------------------
|
||||
// Builds
|
||||
// -----------------------------
|
||||
const builds = {
|
||||
nuxt: {
|
||||
entry: resolve(libDir, 'index.js'),
|
||||
file: resolve(distDir, 'nuxt.js')
|
||||
},
|
||||
core: {
|
||||
entry: resolve(libDir, 'core/index.js'),
|
||||
file: resolve(distDir, 'core.js')
|
||||
}
|
||||
}
|
||||
|
||||
// -----------------------------
|
||||
// Default config
|
||||
// -----------------------------
|
||||
function genConfig (opts) {
|
||||
const config = {
|
||||
input: opts.entry,
|
||||
output: {
|
||||
file: opts.file,
|
||||
format: 'cjs',
|
||||
sourcemap: true
|
||||
},
|
||||
external: ['fs', 'path', 'http', 'module', 'vue-server-renderer/server-plugin', 'vue-server-renderer/client-plugin']
|
||||
.concat(dependencies, opts.external),
|
||||
banner: opts.banner || banner,
|
||||
name: opts.modulename || 'Nuxt',
|
||||
plugins: [
|
||||
rollupAlias(Object.assign({
|
||||
resolve: ['.js', '.json', '.jsx', '.ts']
|
||||
}, aliases, opts.alias)),
|
||||
|
||||
rollupNodeResolve({ preferBuiltins: true }),
|
||||
|
||||
rollupCommonJS(),
|
||||
|
||||
rollupBabel(Object.assign({
|
||||
exclude: 'node_modules/**',
|
||||
plugins: [
|
||||
['transform-runtime', { 'helpers': false, 'polyfill': false }],
|
||||
'transform-async-to-generator',
|
||||
'array-includes',
|
||||
'external-helpers'
|
||||
],
|
||||
presets: [
|
||||
['env', {
|
||||
targets: {
|
||||
node: '6.11.0'
|
||||
},
|
||||
modules: false
|
||||
}]
|
||||
],
|
||||
'env': {
|
||||
'test': {
|
||||
'plugins': [ 'istanbul' ]
|
||||
}
|
||||
}
|
||||
}, opts.babel)),
|
||||
|
||||
rollupReplace({ __VERSION__: version })
|
||||
].concat(opts.plugins || [])
|
||||
}
|
||||
|
||||
if (opts.env) {
|
||||
config.plugins.push(rollupReplace({
|
||||
'process.env.NODE_ENV': JSON.stringify(opts.env)
|
||||
}))
|
||||
}
|
||||
|
||||
return config
|
||||
}
|
||||
|
||||
if (process.env.TARGET) {
|
||||
module.exports = genConfig(builds[process.env.TARGET])
|
||||
} else {
|
||||
exports.getBuild = name => genConfig(builds[name])
|
||||
exports.getAllBuilds = () => Object.keys(builds).map(name => genConfig(builds[name]))
|
||||
}
|
@ -3,7 +3,7 @@
|
||||
<div class="container">
|
||||
<h1>Blog</h1>
|
||||
<ul>
|
||||
<li v-for="post in posts">
|
||||
<li v-for="(post, index) in posts" :key="index">
|
||||
<nuxt-link :to="{ name: 'posts-id', params: { id: post.id } }">{{ post.title }}</nuxt-link>
|
||||
</li>
|
||||
</ul>
|
||||
|
@ -2,7 +2,7 @@
|
||||
<div class="container">
|
||||
<h2>Users</h2>
|
||||
<ul class="users">
|
||||
<li v-for="user in users">
|
||||
<li v-for="user in users" :key="user.id">
|
||||
<nuxt-link :to="'/users/'+user.id">{{ user.name }}</nuxt-link>
|
||||
</li>
|
||||
</ul>
|
||||
|
@ -1,15 +0,0 @@
|
||||
<script>
|
||||
export default {
|
||||
asyncData({ req }) {
|
||||
return {
|
||||
name: req ? 'server' : 'client'
|
||||
}
|
||||
},
|
||||
render(h) {
|
||||
return <div>
|
||||
<p>Hi from {this.name}</p>
|
||||
<nuxt-link to="/">Home page</nuxt-link>
|
||||
</div>
|
||||
}
|
||||
}
|
||||
</script>
|
@ -1,8 +0,0 @@
|
||||
export default {
|
||||
render(h) {
|
||||
return <div>
|
||||
<h1>Welcome !</h1>
|
||||
<nuxt-link to="/about">About page</nuxt-link>
|
||||
</div>
|
||||
}
|
||||
}
|
@ -4,10 +4,10 @@
|
||||
<div class="container">
|
||||
<h1 class="Header__Title">Nuxt i18n</h1>
|
||||
<nav class="Header__Menu">
|
||||
<nuxt-link class="Header__Link" :to="path('/')" exact>
|
||||
<nuxt-link class="Header__Link" :to="$i18n.path('')" exact>
|
||||
{{ $t('links.home') }}
|
||||
</nuxt-link>
|
||||
<nuxt-link class="Header__Link" :to="path('/about')" exact>
|
||||
<nuxt-link class="Header__Link" :to="$i18n.path('about')" exact>
|
||||
{{ $t('links.about') }}
|
||||
</nuxt-link>
|
||||
<nuxt-link class="Header__Link" v-if="$i18n.locale === 'en'" :to="`/fr` + $route.fullPath" active-class="none" exact>
|
||||
@ -24,13 +24,7 @@
|
||||
</template>
|
||||
|
||||
<script>
|
||||
export default {
|
||||
methods: {
|
||||
path(url) {
|
||||
return (this.$i18n.locale === 'en' ? url : '/' + this.$i18n.locale + url)
|
||||
}
|
||||
}
|
||||
}
|
||||
export default {}
|
||||
</script>
|
||||
|
||||
<style>
|
||||
|
@ -14,4 +14,12 @@ export default ({ app, store }) => {
|
||||
'fr': require('~/locales/fr.json')
|
||||
}
|
||||
})
|
||||
|
||||
app.i18n.path = (link) => {
|
||||
if (app.i18n.locale === app.i18n.fallbackLocale) {
|
||||
return `/${link}`
|
||||
}
|
||||
|
||||
return `/${app.i18n.locale}/${link}`
|
||||
}
|
||||
}
|
||||
|
5
examples/jsx/README.md
Normal file
5
examples/jsx/README.md
Normal file
@ -0,0 +1,5 @@
|
||||
# Render Functions & JSX Example
|
||||
|
||||
## Documentation
|
||||
|
||||
Vue: https://vuejs.org/v2/guide/render-function.html
|
17
examples/jsx/components/test.vue
Normal file
17
examples/jsx/components/test.vue
Normal file
@ -0,0 +1,17 @@
|
||||
<template>
|
||||
<p v-html="data"></p>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
export default {
|
||||
props: {
|
||||
data: String
|
||||
}
|
||||
}
|
||||
</script>
|
||||
|
||||
<style scoped>
|
||||
p {
|
||||
padding: 5px 20px;
|
||||
}
|
||||
</style>
|
@ -1,5 +1,5 @@
|
||||
{
|
||||
"name": "hello-nuxt-jsx",
|
||||
"name": "nuxt-jsx",
|
||||
"dependencies": {
|
||||
"nuxt": "latest"
|
||||
},
|
21
examples/jsx/pages/about.js
Normal file
21
examples/jsx/pages/about.js
Normal file
@ -0,0 +1,21 @@
|
||||
|
||||
import Test from '~/components/test.vue'
|
||||
|
||||
export default {
|
||||
head: {
|
||||
title: 'About Page',
|
||||
meta: [
|
||||
{ hid: 'description', name: 'description', content: 'About page description' }
|
||||
]
|
||||
},
|
||||
components: {
|
||||
Test
|
||||
},
|
||||
render() {
|
||||
return <div class='container'>
|
||||
<h1>About page</h1>
|
||||
<test data='I am test component' />
|
||||
<p><nuxt-link to='/'>Home page</nuxt-link></p>
|
||||
</div>
|
||||
}
|
||||
}
|
20
examples/jsx/pages/index.js
Executable file
20
examples/jsx/pages/index.js
Executable file
@ -0,0 +1,20 @@
|
||||
export default {
|
||||
head: {
|
||||
title: 'Home page 🚀',
|
||||
meta: [
|
||||
{ hid: 'description', name: 'description', content: 'Home page description' }
|
||||
],
|
||||
script: [
|
||||
{ src: '/head.js' },
|
||||
// Supported since 1.0
|
||||
{ src: '/body.js', body: true },
|
||||
{ src: '/defer.js', defer: '' }
|
||||
]
|
||||
},
|
||||
render() {
|
||||
return <div class='container'>
|
||||
<h1>Home page 🚀</h1>
|
||||
<nuxt-link to='/about'>About page</nuxt-link>
|
||||
</div>
|
||||
}
|
||||
}
|
@ -1,16 +1,8 @@
|
||||
module.exports = {
|
||||
modules: [
|
||||
'@nuxtjs/markdownit'
|
||||
],
|
||||
plugins: [
|
||||
'~/plugins/md-it'
|
||||
]
|
||||
// [optional] markdownit options
|
||||
// See https://github.com/markdown-it/markdown-it
|
||||
// markdownit: {
|
||||
// preset: 'default',
|
||||
// linkify: true,
|
||||
// breaks: true,
|
||||
// use: [
|
||||
// 'markdown-it-container',
|
||||
// 'markdown-it-attrs'
|
||||
// ]
|
||||
// }
|
||||
}
|
||||
|
@ -10,5 +10,8 @@
|
||||
"dev": "nuxt",
|
||||
"build": "nuxt build",
|
||||
"start": "nuxt start"
|
||||
},
|
||||
"devDependencies": {
|
||||
"jstransformer-markdown-it": "^2.0.0"
|
||||
}
|
||||
}
|
||||
|
@ -1,8 +1,10 @@
|
||||
<template lang="pug">
|
||||
div
|
||||
h1 Pug Page
|
||||
div(language="md") Current route is: {{ $route.name }}
|
||||
div(language="md") Data model is: {{ model }}
|
||||
:markdown-it()
|
||||
## Current route is: {{ $route.name }}
|
||||
div(v-html="$md.render(model)")
|
||||
|
||||
br
|
||||
nuxt-link(to='/') Back Home
|
||||
</template>
|
||||
@ -11,7 +13,7 @@
|
||||
export default {
|
||||
data() {
|
||||
return {
|
||||
model: 'I am pug'
|
||||
model: '## Title h2\n### title h3\n\nLong text Long text Long text Long text Long text Long text Long text Long text Long text \n\n* gimme a list item\n* and one more yeehaw'
|
||||
}
|
||||
}
|
||||
}
|
||||
|
5
examples/markdownit/plugins/md-it.js
Normal file
5
examples/markdownit/plugins/md-it.js
Normal file
@ -0,0 +1,5 @@
|
||||
import MarkdownIt from 'markdown-it'
|
||||
|
||||
export default ({ app }, inject) => {
|
||||
inject('md', new MarkdownIt())
|
||||
}
|
@ -1,6 +1,6 @@
|
||||
<template>
|
||||
<ul>
|
||||
<li v-for="visit in visits"><i>{{ visit.date | hours }}</i> - {{ visit.path }}</li>
|
||||
<li v-for="(visit, index) in visits" :key="index"><i>{{ visit.date | hours }}</i> - {{ visit.path }}</li>
|
||||
</ul>
|
||||
</template>
|
||||
|
||||
|
@ -4,7 +4,9 @@
|
||||
<pre>{{ userAgent }}</pre>
|
||||
<ul>
|
||||
<li><nuxt-link to="/">Home</nuxt-link></li>
|
||||
<li v-for="slug in slugs"><nuxt-link :to="{ name: 'slug', params: { slug } }">{{ slug }}</nuxt-link></li>
|
||||
<li v-for="(slug, index) in slugs" :key="index">
|
||||
<nuxt-link :to="{ name: 'slug', params: { slug } }">{{ slug }}</nuxt-link>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</template>
|
||||
|
@ -3,7 +3,7 @@
|
||||
<div class="left">
|
||||
<h2><nuxt-link to="/">Players</nuxt-link></h2>
|
||||
<ul class="players">
|
||||
<li v-for="user in users">
|
||||
<li v-for="user in users" :key="user.id">
|
||||
<nuxt-link :to="'/'+user.id">{{ user.name }}</nuxt-link>
|
||||
</li>
|
||||
</ul>
|
||||
|
@ -6,7 +6,7 @@
|
||||
<nuxt-link v-if="page < totalPages" :to="'?page=' + (page + 1)">Next ></nuxt-link>
|
||||
<a v-else class="disabled">Next ></a>
|
||||
<ul>
|
||||
<li v-for="user in users">
|
||||
<li v-for="user in users" :key="user.id">
|
||||
<img :src="user.avatar" class="avatar" />
|
||||
<span>{{ user.first_name }} {{ user.last_name }}</span>
|
||||
</li>
|
||||
|
@ -6,7 +6,7 @@
|
||||
{{selected}}
|
||||
</div>
|
||||
<div class="flex flex-wrap ph2 justify-between bg-white-80">
|
||||
<div v-for="person in people">
|
||||
<div v-for="person in people" :key="person.id">
|
||||
<Card :person="person"></Card>
|
||||
</div>
|
||||
</div>
|
||||
|
@ -2,7 +2,7 @@
|
||||
<div>
|
||||
<h3>Cars</h3>
|
||||
<ul>
|
||||
<li v-for="car in allCars">
|
||||
<li v-for="car in allCars" :key="car.id">
|
||||
<nuxt-link :to="`car/${car.id}`">
|
||||
{{ car.year }} {{ car.make }} {{ car.model }}
|
||||
</nuxt-link>
|
||||
|
@ -2,7 +2,7 @@
|
||||
<div>
|
||||
<h2>Todos</h2>
|
||||
<ul>
|
||||
<li v-for="todo in todos">
|
||||
<li v-for="(todo, index) in todos" :key="index">
|
||||
<input type="checkbox" :checked="todo.done" @change="toggle(todo)">
|
||||
<span :class="{ done: todo.done }">{{ todo.text }}</span>
|
||||
</li>
|
||||
|
@ -2,13 +2,13 @@
|
||||
<div>
|
||||
<h2>Articles</h2>
|
||||
<ul>
|
||||
<li v-for="article in articles">
|
||||
<li v-for="(article, index) in articles" :key="index">
|
||||
<span>{{article}}</span>
|
||||
</li>
|
||||
</ul>
|
||||
<h2>Comments <small>(nested under articles)</small></h2>
|
||||
<ul>
|
||||
<li v-for="comment in comments">
|
||||
<li v-for="(comment, index) in comments" :key="index">
|
||||
<span>{{comment}}</span>
|
||||
</li>
|
||||
</ul>
|
||||
|
@ -8,7 +8,7 @@
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<tr v-for="(value, key) in cookies">
|
||||
<tr v-for="(value, key) in cookies" :key="key">
|
||||
<td>{{ key }}</td>
|
||||
<td>{{ value }}</td>
|
||||
<td><button @click="removeCookie(key)">Remove</button></td>
|
||||
|
@ -10,7 +10,7 @@
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<tr v-for="(user, key) in users">
|
||||
<tr v-for="(user, key) in users" :key="key">
|
||||
<td>
|
||||
<nuxt-link :to="{ path: `/users/${key}`}">
|
||||
<img :src="user.avatar" class="rounded" alt="avatar">
|
||||
|
@ -4,7 +4,9 @@
|
||||
<li class="chat page">
|
||||
<div class="chatArea">
|
||||
<ul class="messages" ref="messages">
|
||||
<li class="message" v-for="message in messages"><i :title="message.date">{{ message.date.split('T')[1].slice(0, -2) }}</i>: {{ message.text }}</li>
|
||||
<li class="message" v-for="(message, index) in messages" :key="index">
|
||||
<i :title="message.date">{{ message.date.split('T')[1].slice(0, -2) }}</i>: {{ message.text }}
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
<input class="inputMessage" type="text" v-model="message" @keyup.enter="sendMessage" placeholder="Type here..." />
|
||||
|
7
examples/with-vue-material/README.md
Normal file
7
examples/with-vue-material/README.md
Normal file
@ -0,0 +1,7 @@
|
||||
# Nuxt With Vue-Material
|
||||
|
||||
## Compatibility
|
||||
|
||||
Vue-Material >= 1.0.0beta
|
||||
|
||||
[View Demo](https://nuxt-vue-material.now.sh)
|
25
examples/with-vue-material/nuxt.config.js
Normal file
25
examples/with-vue-material/nuxt.config.js
Normal file
@ -0,0 +1,25 @@
|
||||
module.exports = {
|
||||
head: {
|
||||
meta: [
|
||||
{
|
||||
name: 'viewport',
|
||||
content: 'width=device-width, initial-scale=1, minimal-ui'
|
||||
}
|
||||
],
|
||||
link: [
|
||||
{
|
||||
rel: 'stylesheet',
|
||||
href: 'https://fonts.googleapis.com/css?family=Roboto:300,400,500,700,400italic|Material+Icons'
|
||||
},
|
||||
{
|
||||
rel: 'stylesheet',
|
||||
href: 'https://unpkg.com/vue-material@beta/dist/vue-material.min.css'
|
||||
},
|
||||
{
|
||||
rel: 'stylesheet',
|
||||
href: 'https://unpkg.com/vue-material@beta/dist/theme/default.css'
|
||||
}
|
||||
]
|
||||
},
|
||||
plugins: ['~/plugins/vue-material']
|
||||
}
|
14
examples/with-vue-material/package.json
Normal file
14
examples/with-vue-material/package.json
Normal file
@ -0,0 +1,14 @@
|
||||
{
|
||||
"name": "with-vue-material",
|
||||
"version": "1.0.0",
|
||||
"dependencies": {
|
||||
"nuxt": "latest",
|
||||
"vue": "~2.4.4",
|
||||
"vue-material": "beta"
|
||||
},
|
||||
"scripts": {
|
||||
"dev": "nuxt",
|
||||
"build": "nuxt build",
|
||||
"start": "nuxt start"
|
||||
}
|
||||
}
|
106
examples/with-vue-material/pages/index.vue
Normal file
106
examples/with-vue-material/pages/index.vue
Normal file
@ -0,0 +1,106 @@
|
||||
<template>
|
||||
<div class="page-container md-layout-column">
|
||||
<md-toolbar class="md-primary">
|
||||
<md-button class="md-icon-button" @click="showNavigation = true">
|
||||
<md-icon>menu</md-icon>
|
||||
</md-button>
|
||||
<span class="md-title">Nuxt + Vue Material</span>
|
||||
|
||||
<div class="md-toolbar-section-end">
|
||||
<md-button @click="showSidepanel = true">Favorites</md-button>
|
||||
</div>
|
||||
</md-toolbar>
|
||||
|
||||
<md-drawer :md-active.sync="showNavigation">
|
||||
<md-toolbar class="md-transparent" md-elevation="0">
|
||||
<span class="md-title">My App name</span>
|
||||
</md-toolbar>
|
||||
|
||||
<md-list>
|
||||
<md-list-item>
|
||||
<md-icon>move_to_inbox</md-icon>
|
||||
<span class="md-list-item-text">Inbox</span>
|
||||
</md-list-item>
|
||||
|
||||
<md-list-item>
|
||||
<md-icon>send</md-icon>
|
||||
<span class="md-list-item-text">Sent Mail</span>
|
||||
</md-list-item>
|
||||
|
||||
<md-list-item>
|
||||
<md-icon>delete</md-icon>
|
||||
<span class="md-list-item-text">Trash</span>
|
||||
</md-list-item>
|
||||
|
||||
<md-list-item>
|
||||
<md-icon>error</md-icon>
|
||||
<span class="md-list-item-text">Spam</span>
|
||||
</md-list-item>
|
||||
</md-list>
|
||||
</md-drawer>
|
||||
|
||||
<md-drawer class="md-right" :md-active.sync="showSidepanel">
|
||||
<md-toolbar class="md-transparent" md-elevation="0">
|
||||
<span class="md-title">Favorites</span>
|
||||
</md-toolbar>
|
||||
|
||||
<md-list>
|
||||
<md-list-item>
|
||||
<span class="md-list-item-text">Abbey Christansen</span>
|
||||
|
||||
<md-button class="md-icon-button md-list-action">
|
||||
<md-icon class="md-primary">chat_bubble</md-icon>
|
||||
</md-button>
|
||||
</md-list-item>
|
||||
|
||||
<md-list-item>
|
||||
<span class="md-list-item-text">Alex Nelson</span>
|
||||
|
||||
<md-button class="md-icon-button md-list-action">
|
||||
<md-icon class="md-primary">chat_bubble</md-icon>
|
||||
</md-button>
|
||||
</md-list-item>
|
||||
|
||||
<md-list-item>
|
||||
<span class="md-list-item-text">Mary Johnson</span>
|
||||
|
||||
<md-button class="md-icon-button md-list-action">
|
||||
<md-icon>chat_bubble</md-icon>
|
||||
</md-button>
|
||||
</md-list-item>
|
||||
</md-list>
|
||||
</md-drawer>
|
||||
|
||||
<md-content>
|
||||
Lorem ipsum dolor sit amet, consectetur adipisicing elit. Error quibusdam, non molestias et! Earum magnam, similique, quo recusandae placeat dicta asperiores modi sint ea repudiandae maxime? Quae non explicabo, neque.
|
||||
</md-content>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
export default {
|
||||
name: 'Sidenav',
|
||||
data: () => ({
|
||||
showNavigation: false,
|
||||
showSidepanel: false
|
||||
})
|
||||
}
|
||||
</script>
|
||||
|
||||
<style scoped>
|
||||
.page-container {
|
||||
min-height: 100vh;
|
||||
overflow: hidden;
|
||||
position: relative;
|
||||
border: 1px solid rgba(#000, 0.12);
|
||||
}
|
||||
|
||||
.md-drawer {
|
||||
width: 230px;
|
||||
max-width: calc(100vw - 125px);
|
||||
}
|
||||
|
||||
.md-content {
|
||||
padding: 16px;
|
||||
}
|
||||
</style>
|
4
examples/with-vue-material/plugins/vue-material.js
Normal file
4
examples/with-vue-material/plugins/vue-material.js
Normal file
@ -0,0 +1,4 @@
|
||||
import Vue from 'vue'
|
||||
import VueMaterial from 'vue-material'
|
||||
|
||||
Vue.use(VueMaterial)
|
@ -1,14 +1,27 @@
|
||||
// Specify overrides (theme and/or base variables etc.)
|
||||
// See https://vuetifyjs.com/quick-start
|
||||
// And for themes customizing: https://vuetifyjs.com/style/theme
|
||||
|
||||
// Color Palette: https://vuetifyjs.com/style/colors
|
||||
|
||||
// Although, since version https://github.com/vuetifyjs/vuetify/releases/tag/v0.17.0, colors are no
|
||||
// longer defined **explicitly** in the stylus files.
|
||||
// you can use `import colors from 'vuetify/es5/util/colors'` in the vuetify instance, under `plugins`
|
||||
// if you only want to define your color palette.
|
||||
|
||||
// you have to define the same palette colors just if you want to use them inside your own stylus files.
|
||||
|
||||
@require '~vuetify/src/stylus/settings/_colors'
|
||||
|
||||
$theme := {
|
||||
primary: #9c27b0
|
||||
accent: #ce93d8
|
||||
secondary: #424242
|
||||
info: #0D47A1
|
||||
warning: #ffb300
|
||||
error: #B71C1C
|
||||
success: #2E7D32
|
||||
primary: $red.darken-2
|
||||
accent: $red.accent-2
|
||||
secondary: $grey.lighten-1
|
||||
info: $blue.lighten-1
|
||||
warning: $amber.darken-2
|
||||
error: $red.accent-4
|
||||
success: $green.lighten-2
|
||||
}
|
||||
|
||||
// Import Vuetify styling
|
||||
@require '~vuetify/src/stylus/main.styl'
|
||||
@require '~vuetify/src/stylus/main'
|
||||
|
@ -1,3 +1,5 @@
|
||||
const nodeExternals = require('webpack-node-externals')
|
||||
|
||||
module.exports = {
|
||||
/*
|
||||
** Head elements
|
||||
@ -13,7 +15,16 @@ module.exports = {
|
||||
*/
|
||||
build: {
|
||||
vendor: ['vuetify'],
|
||||
extractCSS: true
|
||||
extractCSS: true,
|
||||
extend(config, ctx) {
|
||||
if (ctx.isServer) {
|
||||
config.externals = [
|
||||
nodeExternals({
|
||||
whitelist: [/^vuetify/]
|
||||
})
|
||||
]
|
||||
}
|
||||
}
|
||||
},
|
||||
/*
|
||||
** Load Vuetify into the app
|
||||
|
@ -1,4 +1,19 @@
|
||||
import Vue from 'vue'
|
||||
import Vuetify from 'vuetify'
|
||||
import colors from 'vuetify/es5/util/colors'
|
||||
|
||||
Vue.use(Vuetify)
|
||||
// You can also specify those components you are going to use for "a la carte" build:
|
||||
// https://github.com/vuetifyjs/nuxt/blob/master/template/plugins/vuetify.js
|
||||
// https://github.com/vuetifyjs/a-la-carte/blob/master/template/src/main.js
|
||||
|
||||
Vue.use(Vuetify, {
|
||||
theme: {
|
||||
primary: '#121212', // a color that is not in the material colors palette
|
||||
accent: colors.grey.darken3,
|
||||
secondary: colors.amber.darken3,
|
||||
info: colors.teal.lighten1,
|
||||
warning: colors.amber,
|
||||
error: colors.deepOrange.accent4,
|
||||
success: colors.green.accent3
|
||||
}
|
||||
})
|
||||
|
16
index.js
16
index.js
@ -1,16 +0,0 @@
|
||||
/*!
|
||||
* Nuxt.js
|
||||
* (c) 2016-2017 Chopin Brothers
|
||||
* Core maintainer: Pooya (@pi0)
|
||||
* Released under the MIT License.
|
||||
*/
|
||||
|
||||
// Node Source Map Support
|
||||
// https://github.com/evanw/node-source-map-support
|
||||
require('source-map-support').install()
|
||||
|
||||
// Fix babel flag
|
||||
/* istanbul ignore else */
|
||||
process.noDeprecation = true
|
||||
|
||||
module.exports = require('./dist/nuxt')
|
@ -1,12 +1,15 @@
|
||||
import Vue from 'vue'
|
||||
import NuxtChild from './nuxt-child'
|
||||
import NuxtError from '<%= components.ErrorPage ? ((components.ErrorPage.includes('~') || components.ErrorPage.includes('@')) ? components.ErrorPage : "../" + components.ErrorPage) : "./nuxt-error.vue" %>'
|
||||
import NuxtError from '<%= components.ErrorPage ? ((components.ErrorPage.indexOf('~') === 0 || components.ErrorPage.indexOf('@') === 0) ? components.ErrorPage : "../" + components.ErrorPage) : "./nuxt-error.vue" %>'
|
||||
import { compile } from '../utils'
|
||||
|
||||
export default {
|
||||
name: 'nuxt',
|
||||
props: ['nuxtChildKey'],
|
||||
render(h) {
|
||||
if (this.nuxt._redirected) {
|
||||
return h('div', [ '<%= messages.redirect %>' ])
|
||||
}
|
||||
// If there is some error
|
||||
if (this.nuxt.err) {
|
||||
return h('nuxt-error', {
|
||||
|
@ -8,13 +8,12 @@ import NuxtLink from './components/nuxt-link.js'
|
||||
import NuxtError from '<%= components.ErrorPage ? components.ErrorPage : "./components/nuxt-error.vue" %>'
|
||||
import Nuxt from './components/nuxt.js'
|
||||
import App from '<%= appPath %>'
|
||||
import { setContext, getLocation } from './utils'
|
||||
import { setContext, getLocation, getRouteData } from './utils'
|
||||
<% if (store) { %>import { createStore } from './store.js'<% } %>
|
||||
|
||||
/* Plugins */
|
||||
|
||||
<% plugins.forEach(plugin => { %>// <%= plugin.src %><%= (plugin.ssr===false) ? ' (Only included in client bundle)' : '' %>
|
||||
import <%= plugin.name %> from '<%= plugin.name %>'<% }) %>
|
||||
<% plugins.forEach(plugin => { %>import <%= plugin.name %> from '<%= plugin.name %>' // Source: <%= relativeToBuild(plugin.src) %><%= (plugin.ssr===false) ? ' (ssr: false)' : '' %>
|
||||
<% }) %>
|
||||
|
||||
// Component: <no-ssr>
|
||||
Vue.component(NoSSR.name, NoSSR)
|
||||
@ -167,7 +166,17 @@ async function createApp (ssrContext) {
|
||||
// If server-side, wait for async component to be resolved first
|
||||
if (process.server && ssrContext && ssrContext.url) {
|
||||
await new Promise((resolve, reject) => {
|
||||
router.push(ssrContext.url, resolve, reject)
|
||||
router.push(ssrContext.url, resolve, () => {
|
||||
// navigated to a different route in router guard
|
||||
const unregister = router.afterEach(async (to, from, next) => {
|
||||
ssrContext.url = to.fullPath
|
||||
app.context.route = await getRouteData(to)
|
||||
app.context.params = to.params || {}
|
||||
app.context.query = to.query || {}
|
||||
unregister()
|
||||
resolve()
|
||||
})
|
||||
})
|
||||
})
|
||||
}
|
||||
|
||||
|
@ -85,7 +85,7 @@ export function resolveRouteComponents(route) {
|
||||
)
|
||||
}
|
||||
|
||||
async function getRouteData(route) {
|
||||
export async function getRouteData(route) {
|
||||
// Make sure the components are resolved (code-splitting)
|
||||
await resolveRouteComponents(route)
|
||||
// Send back a copy of route with meta based on Component definition
|
||||
@ -132,11 +132,24 @@ export async function setContext(app, context) {
|
||||
path = status
|
||||
status = 302
|
||||
}
|
||||
// "/absolute/route", "./relative/route" or "../relative/route"
|
||||
if (/(^[.]{1,2}\/)|(^\/(?!\/))/.test(path)) {
|
||||
app.context.next({
|
||||
path: path,
|
||||
query: query,
|
||||
status: status
|
||||
})
|
||||
} else {
|
||||
path = formatUrl(path, query)
|
||||
if (process.server) {
|
||||
app.context.res.setHeader('Location', path)
|
||||
app.context.res.statusCode = status
|
||||
app.nuxt._redirected = true
|
||||
}
|
||||
if (process.client) {
|
||||
window.location = path
|
||||
}
|
||||
}
|
||||
}
|
||||
if (process.server) app.context.beforeNuxtRender = (fn) => context.beforeRenderFns.push(fn)
|
||||
if (process.client) app.context.nuxtState = window.__NUXT__
|
||||
@ -442,3 +455,60 @@ function escapeString(str) {
|
||||
function escapeGroup(group) {
|
||||
return group.replace(/([=!:$\/()])/g, '\\$1')
|
||||
}
|
||||
|
||||
/**
|
||||
* Format given url, append query to url query string
|
||||
*
|
||||
* @param {string} url
|
||||
* @param {string} query
|
||||
* @return {string}
|
||||
*/
|
||||
function formatUrl (url, query) {
|
||||
let protocol
|
||||
let index = url.indexOf('://')
|
||||
if (index !== -1) {
|
||||
protocol = url.substring(0, index)
|
||||
url = url.substring(index + 3)
|
||||
} else if (url.indexOf('//') === 0) {
|
||||
url = url.substring(2)
|
||||
}
|
||||
|
||||
let parts = url.split('/')
|
||||
let result = (protocol ? protocol + '://' : '//') + parts.shift()
|
||||
|
||||
let path = parts.filter(Boolean).join('/')
|
||||
let hash
|
||||
parts = path.split('#')
|
||||
if (parts.length === 2) {
|
||||
path = parts[0]
|
||||
hash = parts[1]
|
||||
}
|
||||
|
||||
result += path ? '/' + path : ''
|
||||
|
||||
if (query && JSON.stringify(query) !== '{}') {
|
||||
result += (url.split('?').length === 2 ? '&' : '?') + formatQuery(query)
|
||||
}
|
||||
result += hash ? '#' + hash : ''
|
||||
|
||||
return result
|
||||
}
|
||||
|
||||
/**
|
||||
* Transform data object to query string
|
||||
*
|
||||
* @param {object} query
|
||||
* @return {string}
|
||||
*/
|
||||
function formatQuery (query) {
|
||||
return Object.keys(query).sort().map(key => {
|
||||
var val = query[key]
|
||||
if (val == null) {
|
||||
return ''
|
||||
}
|
||||
if (Array.isArray(val)) {
|
||||
return val.slice().map(val2 => [key, '=', val2].join('')).join('&')
|
||||
}
|
||||
return key + '=' + val
|
||||
}).filter(Boolean).join('&')
|
||||
}
|
||||
|
@ -1,29 +1,30 @@
|
||||
import _ from 'lodash'
|
||||
import chokidar from 'chokidar'
|
||||
import fs, { remove, readFile, writeFile, mkdirp, existsSync } from 'fs-extra'
|
||||
import hash from 'hash-sum'
|
||||
import pify from 'pify'
|
||||
import webpack from 'webpack'
|
||||
import serialize from 'serialize-javascript'
|
||||
import { join, resolve, basename, extname, dirname } from 'path'
|
||||
import MFS from 'memory-fs'
|
||||
import webpackDevMiddleware from 'webpack-dev-middleware'
|
||||
import webpackHotMiddleware from 'webpack-hot-middleware'
|
||||
import { r, wp, wChunk, createRoutes, sequence, relativeTo, isPureObject, waitFor } from 'utils'
|
||||
import Debug from 'debug'
|
||||
import Glob from 'glob'
|
||||
import clientWebpackConfig from './webpack/client.config.js'
|
||||
import serverWebpackConfig from './webpack/server.config.js'
|
||||
import dllWebpackConfig from './webpack/dll.config.js'
|
||||
import vueLoaderConfig from './webpack/vue-loader.config'
|
||||
import styleLoader from './webpack/style-loader'
|
||||
const { promisify } = require('util')
|
||||
const _ = require('lodash')
|
||||
const chokidar = require('chokidar')
|
||||
const { remove, readFile, writeFile, mkdirp, existsSync } = require('fs-extra')
|
||||
const hash = require('hash-sum')
|
||||
const webpack = require('webpack')
|
||||
const serialize = require('serialize-javascript')
|
||||
const { join, resolve, basename, extname, dirname } = require('path')
|
||||
const MFS = require('memory-fs')
|
||||
const webpackDevMiddleware = require('webpack-dev-middleware')
|
||||
const webpackHotMiddleware = require('webpack-hot-middleware')
|
||||
const { r, wp, wChunk, createRoutes, sequence, relativeTo, isPureObject, waitFor, rmCache } = require('../common/utils')
|
||||
const Debug = require('debug')
|
||||
const Glob = require('glob')
|
||||
const clientWebpackConfig = require('./webpack/client.config.js')
|
||||
const serverWebpackConfig = require('./webpack/server.config.js')
|
||||
const dllWebpackConfig = require('./webpack/dll.config.js')
|
||||
const vueLoaderConfig = require('./webpack/vue-loader.config')
|
||||
const styleLoader = require('./webpack/style-loader')
|
||||
const { Options } = require('../common')
|
||||
|
||||
const debug = Debug('nuxt:build')
|
||||
debug.color = 2 // Force green color
|
||||
|
||||
const glob = pify(Glob)
|
||||
const glob = promisify(Glob)
|
||||
|
||||
export default class Builder {
|
||||
module.exports = class Builder {
|
||||
constructor(nuxt) {
|
||||
this.nuxt = nuxt
|
||||
this.isStatic = false // Flag to know if the build is for a generated app
|
||||
@ -62,18 +63,21 @@ export default class Builder {
|
||||
// Stop watching on nuxt.close()
|
||||
if (this.options.dev) {
|
||||
this.nuxt.hook('close', () => this.unwatch())
|
||||
} else {
|
||||
this.nuxt.hook('build:done', () => this.generateConfig())
|
||||
}
|
||||
}
|
||||
|
||||
get plugins() {
|
||||
return this.options.plugins.map((p, i) => {
|
||||
return _.uniqBy(this.options.plugins.map((p, i) => {
|
||||
if (typeof p === 'string') p = { src: p }
|
||||
const pluginBaseName = basename(p.src, extname(p.src)).replace(/[^a-zA-Z?\d\s:]/g, '')
|
||||
return {
|
||||
src: this.nuxt.resolvePath(p.src),
|
||||
ssr: (p.ssr !== false),
|
||||
name: basename(p.src, extname(p.src)).replace(/[^a-zA-Z?\d\s:]/g, '') + '_plugin_' + hash(p.src)
|
||||
name: 'nuxt_plugin_' + pluginBaseName + '_' + hash(p.src)
|
||||
}
|
||||
})
|
||||
}), p => p.name)
|
||||
}
|
||||
|
||||
vendor() {
|
||||
@ -124,19 +128,6 @@ export default class Builder {
|
||||
// Call before hook
|
||||
await this.nuxt.callHook('build:before', this, this.options.build)
|
||||
|
||||
// Babel options
|
||||
this.babelOptions = _.defaults(this.options.build.babel, {
|
||||
babelrc: false,
|
||||
cacheDirectory: !!this.options.dev
|
||||
})
|
||||
if (!this.babelOptions.babelrc && !this.babelOptions.presets) {
|
||||
this.babelOptions.presets = [
|
||||
[require.resolve('babel-preset-vue-app'), {
|
||||
targets: { ie: 9, uglify: true }
|
||||
}]
|
||||
]
|
||||
}
|
||||
|
||||
// Map postcss plugins into instances on object mode once
|
||||
if (isPureObject(this.options.build.postcss)) {
|
||||
if (isPureObject(this.options.build.postcss.plugins)) {
|
||||
@ -154,9 +145,9 @@ export default class Builder {
|
||||
// Check if pages dir exists and warn if not
|
||||
this._nuxtPages = typeof this.options.build.createRoutes !== 'function'
|
||||
if (this._nuxtPages) {
|
||||
if (!fs.existsSync(join(this.options.srcDir, 'pages'))) {
|
||||
if (!existsSync(join(this.options.srcDir, 'pages'))) {
|
||||
let dir = this.options.srcDir
|
||||
if (fs.existsSync(join(this.options.srcDir, '..', 'pages'))) {
|
||||
if (existsSync(join(this.options.srcDir, '..', 'pages'))) {
|
||||
throw new Error(`No \`pages\` directory found in ${dir}. Did you mean to run \`nuxt\` in the parent (\`../\`) directory?`)
|
||||
} else {
|
||||
throw new Error(`Couldn't find a \`pages\` directory in ${dir}. Please create one under the project root`)
|
||||
@ -189,6 +180,42 @@ export default class Builder {
|
||||
return this
|
||||
}
|
||||
|
||||
getBabelOptions({ isServer }) {
|
||||
const options = _.defaults({}, {
|
||||
babelrc: false,
|
||||
cacheDirectory: !!this.options.dev
|
||||
}, this.options.build.babel)
|
||||
|
||||
if (typeof options.presets === 'function') {
|
||||
options.presets = options.presets({ isServer })
|
||||
}
|
||||
|
||||
if (!options.babelrc && !options.presets) {
|
||||
options.presets = [
|
||||
[
|
||||
require.resolve('babel-preset-vue-app'),
|
||||
{
|
||||
targets: isServer ? { node: '8.0.0' } : { ie: 9, uglify: true }
|
||||
}
|
||||
]
|
||||
]
|
||||
}
|
||||
|
||||
return options
|
||||
}
|
||||
|
||||
getFileName(name) {
|
||||
let fileName = this.options.build.filenames[name]
|
||||
|
||||
// Don't use hashes when watching
|
||||
// https://github.com/webpack/webpack/issues/1914#issuecomment-174171709
|
||||
if (this.options.dev) {
|
||||
fileName = fileName.replace(/\[(chunkhash|contenthash|hash)\]\./g, '')
|
||||
}
|
||||
|
||||
return fileName
|
||||
}
|
||||
|
||||
async generateRoutesAndFiles() {
|
||||
debug('Generating files...')
|
||||
// -- Templates --
|
||||
@ -220,7 +247,7 @@ export default class Builder {
|
||||
router: this.options.router,
|
||||
env: this.options.env,
|
||||
head: this.options.head,
|
||||
middleware: fs.existsSync(join(this.options.srcDir, 'middleware')),
|
||||
middleware: existsSync(join(this.options.srcDir, 'middleware')),
|
||||
store: this.options.store,
|
||||
css: this.options.css,
|
||||
plugins: this.plugins,
|
||||
@ -235,16 +262,18 @@ export default class Builder {
|
||||
}
|
||||
|
||||
// -- Layouts --
|
||||
if (fs.existsSync(resolve(this.options.srcDir, 'layouts'))) {
|
||||
const layoutsFiles = await glob('layouts/**/*.vue', { cwd: this.options.srcDir })
|
||||
if (existsSync(resolve(this.options.srcDir, 'layouts'))) {
|
||||
const layoutsFiles = await glob('layouts/**/*.{vue,js}', { cwd: this.options.srcDir })
|
||||
let hasErrorLayout = false
|
||||
layoutsFiles.forEach((file) => {
|
||||
let name = file.split('/').slice(1).join('/').replace(/\.vue$/, '')
|
||||
let name = file.split('/').slice(1).join('/').replace(/\.(vue|js)$/, '')
|
||||
if (name === 'error') {
|
||||
hasErrorLayout = true
|
||||
return
|
||||
}
|
||||
if (!templateVars.layouts[name] || /\.vue$/.test(file)) {
|
||||
templateVars.layouts[name] = this.relativeToBuild(this.options.srcDir, file)
|
||||
}
|
||||
})
|
||||
if (!templateVars.components.ErrorPage && hasErrorLayout) {
|
||||
templateVars.components.ErrorPage = this.relativeToBuild(this.options.srcDir, 'layouts/error.vue')
|
||||
@ -262,8 +291,14 @@ export default class Builder {
|
||||
// If user defined a custom method to create routes
|
||||
if (this._nuxtPages) {
|
||||
// Use nuxt.js createRoutes bases on pages/
|
||||
const files = await glob('pages/**/*.vue', { cwd: this.options.srcDir })
|
||||
templateVars.router.routes = createRoutes(files, this.options.srcDir)
|
||||
const files = {};
|
||||
(await glob('pages/**/*.{vue,js}', { cwd: this.options.srcDir })).forEach(f => {
|
||||
const key = f.replace(/\.(js|vue)$/, '')
|
||||
if (/\.vue$/.test(f) || !files[key]) {
|
||||
files[key] = f
|
||||
}
|
||||
})
|
||||
templateVars.router.routes = createRoutes(Object.values(files), this.options.srcDir)
|
||||
} else {
|
||||
templateVars.router.routes = this.options.build.createRoutes(this.options.srcDir)
|
||||
}
|
||||
@ -299,7 +334,7 @@ export default class Builder {
|
||||
}
|
||||
// Allow override templates using a file with same name in ${srcDir}/app
|
||||
const customPath = r(this.options.srcDir, 'app', file)
|
||||
const customFileExists = fs.existsSync(customPath)
|
||||
const customFileExists = existsSync(customPath)
|
||||
|
||||
return {
|
||||
src: customFileExists
|
||||
@ -436,7 +471,7 @@ export default class Builder {
|
||||
compiler.plugin('done', async (stats) => {
|
||||
await this.nuxt.callHook('build:compiled', { name, compiler, stats })
|
||||
// Reload renderer if available
|
||||
this.nuxt.renderer.loadResources(sharedFS || fs)
|
||||
this.nuxt.renderer.loadResources(sharedFS || require('fs'))
|
||||
// Resolve on next tick
|
||||
process.nextTick(resolve)
|
||||
})
|
||||
@ -459,6 +494,12 @@ export default class Builder {
|
||||
compiler.watch(this.options.watchers.webpack, (err) => {
|
||||
/* istanbul ignore if */
|
||||
if (err) return reject(err)
|
||||
// not keep modified or deleted items in Vue.prototype
|
||||
Object.keys(require.cache).forEach(key => {
|
||||
if (!/(node_modules\/postcss)|(\.node$)/.test(key)) {
|
||||
rmCache(key)
|
||||
}
|
||||
})
|
||||
})
|
||||
)
|
||||
return
|
||||
@ -486,7 +527,7 @@ export default class Builder {
|
||||
debug('Adding webpack middleware...')
|
||||
|
||||
// Create webpack dev middleware
|
||||
this.webpackDevMiddleware = pify(webpackDevMiddleware(compiler, Object.assign({
|
||||
this.webpackDevMiddleware = promisify(webpackDevMiddleware(compiler, Object.assign({
|
||||
publicPath: this.options.build.publicPath,
|
||||
stats: this.webpackStats,
|
||||
noInfo: true,
|
||||
@ -494,9 +535,9 @@ export default class Builder {
|
||||
watchOptions: this.options.watchers.webpack
|
||||
}, this.options.build.devMiddleware)))
|
||||
|
||||
this.webpackDevMiddleware.close = pify(this.webpackDevMiddleware.close)
|
||||
this.webpackDevMiddleware.close = promisify(this.webpackDevMiddleware.close)
|
||||
|
||||
this.webpackHotMiddleware = pify(webpackHotMiddleware(compiler, Object.assign({
|
||||
this.webpackHotMiddleware = promisify(webpackHotMiddleware(compiler, Object.assign({
|
||||
log: false,
|
||||
heartbeat: 10000
|
||||
}, this.options.build.hotMiddleware)))
|
||||
@ -517,14 +558,14 @@ export default class Builder {
|
||||
r(src, 'layouts'),
|
||||
r(src, 'store'),
|
||||
r(src, 'middleware'),
|
||||
r(src, 'layouts/*.vue'),
|
||||
r(src, 'layouts/**/*.vue')
|
||||
r(src, 'layouts/*.{vue,js}'),
|
||||
r(src, 'layouts/**/*.{vue,js}')
|
||||
]
|
||||
if (this._nuxtPages) {
|
||||
patterns.push(
|
||||
r(src, 'pages'),
|
||||
r(src, 'pages/*.vue'),
|
||||
r(src, 'pages/**/*.vue')
|
||||
r(src, 'pages/*.{vue,js}'),
|
||||
r(src, 'pages/**/*.{vue,js}')
|
||||
)
|
||||
}
|
||||
const options = Object.assign({}, this.options.watchers.chokidar, {
|
||||
@ -557,6 +598,12 @@ export default class Builder {
|
||||
// Stop webpack middleware
|
||||
await this.webpackDevMiddleware.close()
|
||||
}
|
||||
|
||||
async generateConfig() {
|
||||
const config = resolve(this.options.buildDir, 'build.config.js')
|
||||
const options = _.omit(this.options, Options.unsafeKeys)
|
||||
await writeFile(config, `module.exports = ${JSON.stringify(options, null, ' ')}`, 'utf8')
|
||||
}
|
||||
}
|
||||
|
||||
const STATUS = {
|
||||
|
@ -1,10 +1,10 @@
|
||||
import { copy, remove, writeFile, mkdirp, removeSync, existsSync } from 'fs-extra'
|
||||
import _ from 'lodash'
|
||||
import { resolve, join, dirname, sep } from 'path'
|
||||
import { minify } from 'html-minifier'
|
||||
import { isUrl, promisifyRoute, waitFor, flatRoutes } from 'utils'
|
||||
const { copy, remove, writeFile, mkdirp, removeSync, existsSync } = require('fs-extra')
|
||||
const _ = require('lodash')
|
||||
const { resolve, join, dirname, sep } = require('path')
|
||||
const { minify } = require('html-minifier')
|
||||
const { isUrl, promisifyRoute, waitFor, flatRoutes } = require('../common/utils')
|
||||
|
||||
export default class Generator {
|
||||
module.exports = class Generator {
|
||||
constructor(nuxt, builder) {
|
||||
this.nuxt = nuxt
|
||||
this.options = nuxt.options
|
||||
@ -38,11 +38,11 @@ export default class Generator {
|
||||
// Call before hook
|
||||
await this.nuxt.callHook('generate:before', this, this.options.generate)
|
||||
|
||||
if (build) {
|
||||
// Add flag to set process.static
|
||||
this.builder.forGenerate()
|
||||
|
||||
// Start build process
|
||||
if (build) {
|
||||
await this.builder.build()
|
||||
}
|
||||
|
||||
@ -52,18 +52,17 @@ export default class Generator {
|
||||
}
|
||||
}
|
||||
|
||||
async initRoutes() {
|
||||
async initRoutes(...args) {
|
||||
// Resolve config.generate.routes promises before generating the routes
|
||||
let generateRoutes = []
|
||||
if (this.options.router.mode !== 'hash') {
|
||||
try {
|
||||
generateRoutes = await promisifyRoute(this.options.generate.routes || [])
|
||||
generateRoutes = await promisifyRoute(this.options.generate.routes || [], ...args)
|
||||
} catch (e) {
|
||||
console.error('Could not resolve routes') // eslint-disable-line no-console
|
||||
throw e // eslint-disable-line no-unreachable
|
||||
}
|
||||
}
|
||||
|
||||
// Generate only index.html for router.mode = 'hash'
|
||||
let routes = (this.options.router.mode === 'hash') ? ['/'] : flatRoutes(this.options.router.routes)
|
||||
routes = this.decorateWithPayloads(routes, generateRoutes)
|
||||
|
@ -1,7 +1,7 @@
|
||||
import Builder from './builder'
|
||||
import Generator from './generator'
|
||||
const Builder = require('./builder')
|
||||
const Generator = require('./generator')
|
||||
|
||||
export {
|
||||
module.exports = {
|
||||
Builder,
|
||||
Generator
|
||||
}
|
||||
|
@ -1,9 +1,10 @@
|
||||
import ExtractTextPlugin from 'extract-text-webpack-plugin'
|
||||
import { cloneDeep } from 'lodash'
|
||||
import { join, resolve } from 'path'
|
||||
import webpack from 'webpack'
|
||||
import { isUrl, urlJoin } from 'utils'
|
||||
import TimeFixPlugin from './timefix-plugin'
|
||||
const ExtractTextPlugin = require('extract-text-webpack-plugin')
|
||||
const { cloneDeep } = require('lodash')
|
||||
const { join, resolve } = require('path')
|
||||
const webpack = require('webpack')
|
||||
const { isUrl, urlJoin } = require('../../common/utils')
|
||||
const TimeFixPlugin = require('./plugins/timefix')
|
||||
const WarnFixPlugin = require('./plugins/warnfix')
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
@ -13,19 +14,17 @@ import TimeFixPlugin from './timefix-plugin'
|
||||
| webpack config files
|
||||
|--------------------------------------------------------------------------
|
||||
*/
|
||||
export default function webpackBaseConfig(name) {
|
||||
const nodeModulesDir = join(__dirname, '..', 'node_modules')
|
||||
|
||||
module.exports = function webpackBaseConfig({ name, isServer }) {
|
||||
const config = {
|
||||
name,
|
||||
devtool: this.options.dev ? 'cheap-module-source-map' : 'nosources-source-map',
|
||||
devtool: this.options.dev ? 'cheap-module-eval-source-map' : false,
|
||||
entry: {
|
||||
app: null
|
||||
},
|
||||
output: {
|
||||
path: resolve(this.options.buildDir, 'dist'),
|
||||
filename: this.options.build.filenames.app,
|
||||
chunkFilename: this.options.build.filenames.chunk,
|
||||
filename: this.getFileName('app'),
|
||||
chunkFilename: this.getFileName('chunk'),
|
||||
publicPath: (isUrl(this.options.build.publicPath)
|
||||
? this.options.build.publicPath
|
||||
: urlJoin(this.options.router.base, this.options.build.publicPath))
|
||||
@ -47,16 +46,10 @@ export default function webpackBaseConfig(name) {
|
||||
'assets': join(this.options.srcDir, 'assets'),
|
||||
'static': join(this.options.srcDir, 'static')
|
||||
},
|
||||
modules: [
|
||||
...this.options.modulesDir,
|
||||
nodeModulesDir
|
||||
]
|
||||
modules: this.options.modulesDir
|
||||
},
|
||||
resolveLoader: {
|
||||
modules: [
|
||||
...this.options.modulesDir,
|
||||
nodeModulesDir
|
||||
]
|
||||
modules: this.options.modulesDir
|
||||
},
|
||||
module: {
|
||||
noParse: /es6-promise\.js$/, // Avoid webpack shimming process
|
||||
@ -64,13 +57,13 @@ export default function webpackBaseConfig(name) {
|
||||
{
|
||||
test: /\.vue$/,
|
||||
loader: 'vue-loader',
|
||||
options: this.vueLoader()
|
||||
options: this.vueLoader({ isServer })
|
||||
},
|
||||
{
|
||||
test: /\.js$/,
|
||||
loader: 'babel-loader',
|
||||
exclude: /node_modules/,
|
||||
options: Object.assign({}, this.babelOptions)
|
||||
options: this.getBabelOptions({ isServer })
|
||||
},
|
||||
{ test: /\.css$/, use: this.styleLoader('css') },
|
||||
{ test: /\.less$/, use: this.styleLoader('less', 'less-loader') },
|
||||
@ -106,32 +99,23 @@ export default function webpackBaseConfig(name) {
|
||||
}
|
||||
|
||||
// Add timefix-plugin before others plugins
|
||||
if (this.options.dev) {
|
||||
config.plugins.unshift(new TimeFixPlugin())
|
||||
}
|
||||
|
||||
// Hide warnings about plugins without a default export (#1179)
|
||||
config.plugins.push(new WarnFixPlugin())
|
||||
|
||||
// CSS extraction
|
||||
const extractCSS = this.options.build.extractCSS
|
||||
if (extractCSS) {
|
||||
const extractOptions = Object.assign(
|
||||
{ filename: this.options.build.filenames.css },
|
||||
{ filename: this.getFileName('css') },
|
||||
typeof extractCSS === 'object' ? extractCSS : {}
|
||||
)
|
||||
config.plugins.push(new ExtractTextPlugin(extractOptions))
|
||||
}
|
||||
|
||||
// Workaround for hiding Warnings about plugins without a default export (#1179)
|
||||
config.plugins.push({
|
||||
apply(compiler) {
|
||||
compiler.plugin('done', stats => {
|
||||
stats.compilation.warnings = stats.compilation.warnings.filter(warn => {
|
||||
if (warn.name === 'ModuleDependencyWarning' && warn.message.includes(`export 'default'`) && warn.message.includes('plugin')) {
|
||||
return false
|
||||
}
|
||||
return true
|
||||
})
|
||||
})
|
||||
}
|
||||
})
|
||||
|
||||
// --------------------------------------
|
||||
// Dev specific config
|
||||
// --------------------------------------
|
||||
|
@ -1,15 +1,17 @@
|
||||
import { each } from 'lodash'
|
||||
import webpack from 'webpack'
|
||||
import VueSSRClientPlugin from 'vue-server-renderer/client-plugin'
|
||||
import HTMLPlugin from 'html-webpack-plugin'
|
||||
import FriendlyErrorsWebpackPlugin from 'friendly-errors-webpack-plugin'
|
||||
import UglifyJSPlugin from 'uglifyjs-webpack-plugin'
|
||||
import ProgressBarPlugin from 'progress-bar-webpack-plugin'
|
||||
import { BundleAnalyzerPlugin } from 'webpack-bundle-analyzer'
|
||||
import { resolve } from 'path'
|
||||
import { existsSync } from 'fs'
|
||||
import Debug from 'debug'
|
||||
import base from './base.config.js'
|
||||
const { each } = require('lodash')
|
||||
const webpack = require('webpack')
|
||||
const VueSSRClientPlugin = require('vue-server-renderer/client-plugin')
|
||||
const HTMLPlugin = require('html-webpack-plugin')
|
||||
const FriendlyErrorsWebpackPlugin = require('friendly-errors-webpack-plugin')
|
||||
const UglifyJSPlugin = require('uglifyjs-webpack-plugin')
|
||||
const ProgressBarPlugin = require('progress-bar-webpack-plugin')
|
||||
const ProgressPlugin = require('webpack/lib/ProgressPlugin')
|
||||
const { BundleAnalyzerPlugin } = require('webpack-bundle-analyzer')
|
||||
const { resolve } = require('path')
|
||||
const { existsSync } = require('fs')
|
||||
const Debug = require('debug')
|
||||
const Chalk = require('chalk')
|
||||
const base = require('./base.config.js')
|
||||
|
||||
const debug = Debug('nuxt:build')
|
||||
debug.color = 2 // Force green color
|
||||
@ -24,8 +26,8 @@ debug.color = 2 // Force green color
|
||||
| In production, will generate public/dist/style.css
|
||||
|--------------------------------------------------------------------------
|
||||
*/
|
||||
export default function webpackClientConfig() {
|
||||
let config = base.call(this, 'client')
|
||||
module.exports = function webpackClientConfig() {
|
||||
let config = base.call(this, { name: 'client', isServer: false })
|
||||
|
||||
// Entry points
|
||||
config.entry.app = resolve(this.options.buildDir, 'client.js')
|
||||
@ -73,7 +75,7 @@ export default function webpackClientConfig() {
|
||||
new webpack.optimize.CommonsChunkPlugin({
|
||||
name: 'manifest',
|
||||
minChunks: Infinity,
|
||||
filename: this.options.build.filenames.manifest
|
||||
filename: this.getFileName('manifest')
|
||||
})
|
||||
)
|
||||
|
||||
@ -90,18 +92,26 @@ export default function webpackClientConfig() {
|
||||
}))
|
||||
)
|
||||
|
||||
// Add friendly error plugin
|
||||
config.plugins.push(new FriendlyErrorsWebpackPlugin())
|
||||
|
||||
// Build progress bar
|
||||
config.plugins.push(
|
||||
new ProgressBarPlugin()
|
||||
)
|
||||
if (this.options.build.profile) {
|
||||
config.plugins.push(new ProgressPlugin({
|
||||
profile: true
|
||||
}))
|
||||
} else {
|
||||
config.plugins.push(new ProgressBarPlugin({
|
||||
complete: Chalk.green('█'),
|
||||
incomplete: Chalk.white('█'),
|
||||
format: ' :bar ' + Chalk.green.bold(':percent') + ' :msg'
|
||||
}))
|
||||
}
|
||||
|
||||
// --------------------------------------
|
||||
// Dev specific config
|
||||
// --------------------------------------
|
||||
if (this.options.dev) {
|
||||
// Add friendly error plugin
|
||||
config.plugins.push(new FriendlyErrorsWebpackPlugin())
|
||||
|
||||
// https://webpack.js.org/plugins/named-modules-plugin
|
||||
config.plugins.push(new webpack.NamedModulesPlugin())
|
||||
|
||||
@ -139,7 +149,7 @@ export default function webpackClientConfig() {
|
||||
if (this.options.build.uglify !== false) {
|
||||
config.plugins.push(
|
||||
new UglifyJSPlugin(Object.assign({
|
||||
cache: true,
|
||||
// cache: true,
|
||||
sourceMap: true,
|
||||
parallel: true,
|
||||
extractComments: {
|
||||
@ -184,36 +194,18 @@ export default function webpackClientConfig() {
|
||||
// Adds Common Chunks Plugin
|
||||
// --------------------------------------------------------------------------
|
||||
function commonChunksPlugin(config) {
|
||||
const _this = this
|
||||
const totalPages = _this.routes ? _this.routes.length : 0
|
||||
|
||||
// This well-known vendor may exist as a dependency of other requests.
|
||||
const maybeVendor = [
|
||||
'/core-js/',
|
||||
'/regenerator-runtime/',
|
||||
'/es6-promise/',
|
||||
'/babel-runtime/',
|
||||
'/lodash/'
|
||||
]
|
||||
|
||||
// Create explicit vendor chunk
|
||||
config.plugins.unshift(
|
||||
new webpack.optimize.CommonsChunkPlugin({
|
||||
name: 'vendor',
|
||||
filename: this.options.build.filenames.vendor,
|
||||
filename: this.getFileName('vendor'),
|
||||
minChunks(module, count) {
|
||||
// Detect and externalize well-known vendor if detected
|
||||
if (module.context && maybeVendor.some(v => module.context.includes(v))) {
|
||||
return true
|
||||
}
|
||||
// A module is extracted into the vendor chunk when...
|
||||
return (
|
||||
// If it's inside node_modules
|
||||
/node_modules/.test(module.context) &&
|
||||
// Do not externalize if the request is a CSS file
|
||||
!/\.(css|less|scss|sass|styl|stylus)$/.test(module.request) &&
|
||||
// Used in at-least 1/2 of the total pages
|
||||
(totalPages <= 2 ? count >= totalPages : count >= totalPages * 0.5)
|
||||
!/\.(css|less|scss|sass|styl|stylus)$/.test(module.request)
|
||||
)
|
||||
}
|
||||
})
|
||||
|
@ -1,6 +1,6 @@
|
||||
import webpack from 'webpack'
|
||||
import { resolve } from 'path'
|
||||
import ClientConfig from './client.config'
|
||||
const webpack = require('webpack')
|
||||
const { resolve } = require('path')
|
||||
const ClientConfig = require('./client.config')
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
@ -8,7 +8,7 @@ import ClientConfig from './client.config'
|
||||
| https://github.com/webpack/webpack/tree/master/examples/dll
|
||||
|--------------------------------------------------------------------------
|
||||
*/
|
||||
export default function webpackDllConfig(_refConfig) {
|
||||
module.exports = function webpackDllConfig(_refConfig) {
|
||||
const refConfig = _refConfig || new ClientConfig()
|
||||
|
||||
const name = refConfig.name + '-dll'
|
||||
|
@ -1,6 +1,6 @@
|
||||
// Taken from https://github.com/egoist/poi/blob/3e93c88c520db2d20c25647415e6ae0d3de61145/packages/poi/lib/webpack/timefix-plugin.js#L1-L16
|
||||
// Thanks to @egoist
|
||||
export default class TimeFixPlugin {
|
||||
module.exports = class TimeFixPlugin {
|
||||
constructor(timefix = 11000) {
|
||||
this.timefix = timefix
|
||||
}
|
14
lib/builder/webpack/plugins/warnfix.js
Normal file
14
lib/builder/webpack/plugins/warnfix.js
Normal file
@ -0,0 +1,14 @@
|
||||
module.exports = class WarnFixPlugin {
|
||||
apply(compiler) /* istanbul ignore next */ {
|
||||
compiler.plugin('done', stats => {
|
||||
stats.compilation.warnings = stats.compilation.warnings.filter(warn => {
|
||||
if (warn.name === 'ModuleDependencyWarning' &&
|
||||
warn.message.includes(`export 'default'`) &&
|
||||
warn.message.includes('nuxt_plugin_')) {
|
||||
return false
|
||||
}
|
||||
return true
|
||||
})
|
||||
})
|
||||
}
|
||||
}
|
@ -1,18 +1,18 @@
|
||||
import webpack from 'webpack'
|
||||
import VueSSRServerPlugin from 'vue-server-renderer/server-plugin'
|
||||
import nodeExternals from 'webpack-node-externals'
|
||||
import { each } from 'lodash'
|
||||
import { resolve } from 'path'
|
||||
import { existsSync } from 'fs'
|
||||
import base from './base.config.js'
|
||||
const webpack = require('webpack')
|
||||
const VueSSRServerPlugin = require('vue-server-renderer/server-plugin')
|
||||
const nodeExternals = require('webpack-node-externals')
|
||||
const { each } = require('lodash')
|
||||
const { resolve } = require('path')
|
||||
const { existsSync } = require('fs')
|
||||
const base = require('./base.config.js')
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Webpack Server Config
|
||||
|--------------------------------------------------------------------------
|
||||
*/
|
||||
export default function webpackServerConfig() {
|
||||
let config = base.call(this, 'server')
|
||||
module.exports = function webpackServerConfig() {
|
||||
let config = base.call(this, { name: 'server', isServer: true })
|
||||
|
||||
// env object defined in nuxt.config.js
|
||||
let env = {}
|
||||
|
@ -1,7 +1,7 @@
|
||||
import ExtractTextPlugin from 'extract-text-webpack-plugin'
|
||||
import { join } from 'path'
|
||||
const ExtractTextPlugin = require('extract-text-webpack-plugin')
|
||||
const { join } = require('path')
|
||||
|
||||
export default function styleLoader(ext, loaders = [], isVueLoader = false) {
|
||||
module.exports = function styleLoader(ext, loaders = [], isVueLoader = false) {
|
||||
// Normalize loaders
|
||||
loaders = (Array.isArray(loaders) ? loaders : [loaders]).map(loader => {
|
||||
if (typeof loader === 'string') {
|
||||
|
@ -1,4 +1,4 @@
|
||||
export default function vueLoader() {
|
||||
module.exports = function vueLoader({ isServer }) {
|
||||
// https://vue-loader.vuejs.org/en
|
||||
const config = {
|
||||
postcss: this.options.build.postcss,
|
||||
@ -8,7 +8,7 @@ export default function vueLoader() {
|
||||
loaders: {
|
||||
'js': {
|
||||
loader: 'babel-loader',
|
||||
options: Object.assign({}, this.babelOptions)
|
||||
options: this.getBabelOptions({ isServer })
|
||||
},
|
||||
// Note: do not nest the `postcss` option under `loaders`
|
||||
'css': this.styleLoader('css', [], true),
|
||||
|
@ -8,10 +8,9 @@ pe.skipPackage('regenerator-runtime')
|
||||
pe.skipPackage('babel-runtime')
|
||||
pe.skipPackage('core-js')
|
||||
|
||||
// Skip dist artifacts and Node internals
|
||||
const skipFiles = [ 'nuxt.js', 'core.js' ]
|
||||
// Skip node internals
|
||||
pe.skip((traceLine, lineNumber) => {
|
||||
if (!traceLine.file || skipFiles.indexOf(traceLine.file) !== -1) {
|
||||
if (!traceLine.file) {
|
||||
return true
|
||||
}
|
||||
})
|
||||
|
@ -1,12 +1,7 @@
|
||||
import * as Utils from './utils'
|
||||
import Options from './options'
|
||||
const Utils = require('./utils')
|
||||
const Options = require('./options')
|
||||
|
||||
export default {
|
||||
Utils,
|
||||
Options
|
||||
}
|
||||
|
||||
export {
|
||||
module.exports = {
|
||||
Utils,
|
||||
Options
|
||||
}
|
||||
|
@ -1,15 +1,15 @@
|
||||
import _ from 'lodash'
|
||||
import Debug from 'debug'
|
||||
import { join, resolve } from 'path'
|
||||
import { existsSync } from 'fs'
|
||||
import { isUrl, isPureObject } from 'utils'
|
||||
const _ = require('lodash')
|
||||
const Debug = require('debug')
|
||||
const { join, resolve } = require('path')
|
||||
const { existsSync } = require('fs')
|
||||
const { isUrl, isPureObject } = require('../common/utils')
|
||||
|
||||
const debug = Debug('nuxt:build')
|
||||
debug.color = 2 // Force green color
|
||||
|
||||
const Options = {}
|
||||
|
||||
export default Options
|
||||
module.exports = Options
|
||||
|
||||
Options.from = function (_options) {
|
||||
// Clone options to prevent unwanted side-effects
|
||||
@ -32,26 +32,37 @@ Options.from = function (_options) {
|
||||
options.layoutTransition = { name: options.layoutTransition }
|
||||
}
|
||||
|
||||
const hasValue = v => typeof v === 'string' && v
|
||||
options.rootDir = hasValue(options.rootDir) ? options.rootDir : process.cwd()
|
||||
|
||||
// Apply defaults by ${buildDir}/dist/build.config.js
|
||||
const buildDir = options.buildDir || Options.defaults.buildDir
|
||||
const buildConfig = resolve(options.rootDir, buildDir, 'build.config.js')
|
||||
if (existsSync(buildConfig)) {
|
||||
_.defaultsDeep(options, require(buildConfig))
|
||||
}
|
||||
// Apply defaults
|
||||
_.defaultsDeep(options, Options.defaults)
|
||||
|
||||
// Resolve dirs
|
||||
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.buildDir = resolve(options.rootDir, options.buildDir)
|
||||
options.cacheDir = resolve(options.rootDir, options.cacheDir)
|
||||
|
||||
// Normalize modulesDir
|
||||
/* istanbul ignore if */
|
||||
if (!options.modulesDir) {
|
||||
options.modulesDir = ['node_modules']
|
||||
}
|
||||
if (!Array.isArray(options.modulesDir)) {
|
||||
options.modulesDir = [options.modulesDir]
|
||||
}
|
||||
/* istanbul ignore if */
|
||||
if (!options.modulesDir.length) {
|
||||
options.modulesDir = ['node_modules']
|
||||
}
|
||||
options.modulesDir = options.modulesDir.filter(dir => hasValue(dir)).map(dir => resolve(options.rootDir, dir))
|
||||
|
||||
// Always add nuxt to modulesDir array
|
||||
const nuxtModulesDir = join(options.nuxtDir, 'node_modules')
|
||||
options.modulesDir.push(nuxtModulesDir)
|
||||
|
||||
// If app.html is defined, set the template path to the user template
|
||||
options.appTemplatePath = resolve(options.buildDir, 'views/app.template.html')
|
||||
if (existsSync(join(options.srcDir, 'app.html'))) {
|
||||
@ -185,16 +196,22 @@ Options.modes = {
|
||||
}
|
||||
}
|
||||
|
||||
Options.unsafeKeys = [
|
||||
'rootDir', 'srcDir', 'buildDir', 'modulesDir', 'cacheDir', 'nuxtDir',
|
||||
'nuxtAppDir', 'build', 'generate', 'router.routes', 'appTemplatePath'
|
||||
]
|
||||
|
||||
Options.defaults = {
|
||||
mode: 'universal',
|
||||
dev: process.env.NODE_ENV !== 'production',
|
||||
debug: undefined, // Will be equal to dev if not provided
|
||||
buildDir: '.nuxt',
|
||||
cacheDir: '.cache',
|
||||
nuxtDir: resolve(__dirname, '..'), // Relative to dist
|
||||
nuxtAppDir: resolve(__dirname, '../lib/app/'), // Relative to dist
|
||||
nuxtDir: resolve(__dirname, '../..'),
|
||||
nuxtAppDir: resolve(__dirname, '../app'),
|
||||
build: {
|
||||
analyze: false,
|
||||
profile: process.argv.includes('--profile'),
|
||||
dll: false,
|
||||
scopeHoisting: false,
|
||||
extractCSS: false,
|
||||
@ -323,6 +340,7 @@ Options.defaults = {
|
||||
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.'
|
||||
client_error_details: 'An error occurred while rendering the page. Check developer tools console for details.',
|
||||
redirect: 'Redirecting to external page.'
|
||||
}
|
||||
}
|
||||
|
@ -1,15 +1,15 @@
|
||||
import { resolve, relative, sep } from 'path'
|
||||
import _ from 'lodash'
|
||||
const { resolve, relative, sep } = require('path')
|
||||
const _ = require('lodash')
|
||||
|
||||
export function encodeHtml(str) {
|
||||
exports.encodeHtml = function encodeHtml(str) {
|
||||
return str.replace(/</g, '<').replace(/>/g, '>')
|
||||
}
|
||||
|
||||
export function getContext(req, res) {
|
||||
exports.getContext = function getContext(req, res) {
|
||||
return { req, res }
|
||||
}
|
||||
|
||||
export function setAnsiColors(ansiHTML) {
|
||||
exports.setAnsiColors = function setAnsiColors(ansiHTML) {
|
||||
ansiHTML.setColors({
|
||||
reset: ['efefef', 'a6004c'],
|
||||
darkgrey: '5a012b',
|
||||
@ -22,50 +22,50 @@ export function setAnsiColors(ansiHTML) {
|
||||
})
|
||||
}
|
||||
|
||||
export async function waitFor(ms) {
|
||||
exports.waitFor = async function waitFor(ms) {
|
||||
return new Promise(resolve => setTimeout(resolve, (ms || 0)))
|
||||
}
|
||||
|
||||
export function urlJoin() {
|
||||
exports.urlJoin = function urlJoin() {
|
||||
return [].slice.call(arguments).join('/').replace(/\/+/g, '/').replace(':/', '://')
|
||||
}
|
||||
|
||||
export function isUrl(url) {
|
||||
exports.isUrl = function isUrl(url) {
|
||||
return (url.indexOf('http') === 0 || url.indexOf('//') === 0)
|
||||
}
|
||||
|
||||
export function promisifyRoute(fn) {
|
||||
exports.promisifyRoute = function promisifyRoute(fn, ...args) {
|
||||
// If routes is an array
|
||||
if (Array.isArray(fn)) {
|
||||
return Promise.resolve(fn)
|
||||
}
|
||||
// If routes is a function expecting a callback
|
||||
if (fn.length === 1) {
|
||||
if (fn.length === arguments.length) {
|
||||
return new Promise((resolve, reject) => {
|
||||
fn(function (err, routeParams) {
|
||||
fn((err, routeParams) => {
|
||||
if (err) {
|
||||
reject(err)
|
||||
}
|
||||
resolve(routeParams)
|
||||
})
|
||||
}, ...args)
|
||||
})
|
||||
}
|
||||
let promise = fn()
|
||||
let promise = fn(...args)
|
||||
if (!promise || (!(promise instanceof Promise) && (typeof promise.then !== 'function'))) {
|
||||
promise = Promise.resolve(promise)
|
||||
}
|
||||
return promise
|
||||
}
|
||||
|
||||
export function sequence(tasks, fn) {
|
||||
exports.sequence = function sequence(tasks, fn) {
|
||||
return tasks.reduce((promise, task) => promise.then(() => fn(task)), Promise.resolve())
|
||||
}
|
||||
|
||||
export function parallel(tasks, fn) {
|
||||
exports.parallel = function parallel(tasks, fn) {
|
||||
return Promise.all(tasks.map(task => fn(task)))
|
||||
}
|
||||
|
||||
export function chainFn(base, fn) {
|
||||
exports.chainFn = function chainFn(base, fn) {
|
||||
/* istanbul ignore if */
|
||||
if (!(fn instanceof Function)) {
|
||||
return
|
||||
@ -88,13 +88,13 @@ export function chainFn(base, fn) {
|
||||
}
|
||||
}
|
||||
|
||||
export function isPureObject(o) {
|
||||
exports.isPureObject = function isPureObject(o) {
|
||||
return !Array.isArray(o) && typeof o === 'object'
|
||||
}
|
||||
|
||||
export const isWindows = /^win/.test(process.platform)
|
||||
const isWindows = exports.isWindows = /^win/.test(process.platform)
|
||||
|
||||
export function wp(p = '') {
|
||||
const wp = exports.wp = function wp(p = '') {
|
||||
/* istanbul ignore if */
|
||||
if (isWindows) {
|
||||
return p.replace(/\\/g, '\\\\')
|
||||
@ -102,7 +102,7 @@ export function wp(p = '') {
|
||||
return p
|
||||
}
|
||||
|
||||
export function wChunk(p = '') {
|
||||
exports.wChunk = function wChunk(p = '') {
|
||||
/* istanbul ignore if */
|
||||
if (isWindows) {
|
||||
return p.replace(/\//g, '_')
|
||||
@ -114,18 +114,18 @@ const reqSep = /\//g
|
||||
const sysSep = _.escapeRegExp(sep)
|
||||
const normalize = string => string.replace(reqSep, sysSep)
|
||||
|
||||
export function r() {
|
||||
const r = exports.r = function r() {
|
||||
let args = Array.prototype.slice.apply(arguments)
|
||||
let lastArg = _.last(args)
|
||||
|
||||
if (lastArg.includes('@') || lastArg.includes('~')) {
|
||||
if (lastArg.indexOf('@') === 0 || lastArg.indexOf('~') === 0) {
|
||||
return wp(lastArg)
|
||||
}
|
||||
|
||||
return wp(resolve(...args.map(normalize)))
|
||||
}
|
||||
|
||||
export function relativeTo() {
|
||||
exports.relativeTo = function relativeTo() {
|
||||
let args = Array.prototype.slice.apply(arguments)
|
||||
let dir = args.shift()
|
||||
|
||||
@ -133,7 +133,7 @@ export function relativeTo() {
|
||||
let path = r(...args)
|
||||
|
||||
// Check if path is an alias
|
||||
if (path.includes('@') || path.includes('~')) {
|
||||
if (path.indexOf('@') === 0 || path.indexOf('~') === 0) {
|
||||
return path
|
||||
}
|
||||
|
||||
@ -145,13 +145,17 @@ export function relativeTo() {
|
||||
return wp(rp)
|
||||
}
|
||||
|
||||
export function flatRoutes(router, path = '', routes = []) {
|
||||
exports.flatRoutes = function flatRoutes(router, path = '', routes = []) {
|
||||
router.forEach((r) => {
|
||||
if (!r.path.includes(':') && !r.path.includes('*')) {
|
||||
/* istanbul ignore if */
|
||||
if (r.children) {
|
||||
if (path === '' && r.path === '/') {
|
||||
routes.push('/')
|
||||
}
|
||||
flatRoutes(r.children, path + r.path + '/', routes)
|
||||
} else {
|
||||
path = path.replace(/^\/+$/, '/')
|
||||
routes.push((r.path === '' && path[path.length - 1] === '/' ? path.slice(0, -1) : path) + r.path)
|
||||
}
|
||||
}
|
||||
@ -159,7 +163,7 @@ export function flatRoutes(router, path = '', routes = []) {
|
||||
return routes
|
||||
}
|
||||
|
||||
export function cleanChildrenRoutes(routes, isChild = false) {
|
||||
function cleanChildrenRoutes(routes, isChild = false) {
|
||||
let start = -1
|
||||
let routesIndex = []
|
||||
routes.forEach((route) => {
|
||||
@ -205,16 +209,16 @@ export function cleanChildrenRoutes(routes, isChild = false) {
|
||||
return routes
|
||||
}
|
||||
|
||||
export function createRoutes(files, srcDir) {
|
||||
exports.createRoutes = function createRoutes(files, srcDir) {
|
||||
let routes = []
|
||||
files.forEach((file) => {
|
||||
let keys = file.replace(/^pages/, '').replace(/\.vue$/, '').replace(/\/{2,}/g, '/').split('/').slice(1)
|
||||
let keys = file.replace(/^pages/, '').replace(/\.(vue|js)$/, '').replace(/\/{2,}/g, '/').split('/').slice(1)
|
||||
let route = { name: '', path: '', component: r(srcDir, file) }
|
||||
let parent = routes
|
||||
keys.forEach((key, i) => {
|
||||
route.name = route.name ? route.name + '-' + key.replace('_', '') : key.replace('_', '')
|
||||
route.name += (key === '_') ? 'all' : ''
|
||||
route.chunkName = file.replace(/\.vue$/, '')
|
||||
route.chunkName = file.replace(/\.(vue|js)$/, '')
|
||||
let child = _.find(parent, { name: route.name })
|
||||
if (child) {
|
||||
child.children = child.children || []
|
||||
@ -264,3 +268,16 @@ export function createRoutes(files, srcDir) {
|
||||
})
|
||||
return cleanChildrenRoutes(routes)
|
||||
}
|
||||
|
||||
exports.rmCache = function rmCache(path) {
|
||||
const mod = require.cache[path]
|
||||
delete require.cache[path]
|
||||
if (mod.parent && mod.parent.children) {
|
||||
for (let i = 0; i < mod.parent.children.length; i++) {
|
||||
if (mod.parent.children[i] === mod) {
|
||||
mod.parent.children.splice(i, 1)
|
||||
break
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -1,9 +1,9 @@
|
||||
import { Options, Utils } from 'common'
|
||||
import Module from './module'
|
||||
import Nuxt from './nuxt'
|
||||
import Renderer from './renderer'
|
||||
const { Options, Utils } = require('../common')
|
||||
const Module = require('./module')
|
||||
const Nuxt = require('./nuxt')
|
||||
const Renderer = require('./renderer')
|
||||
|
||||
export {
|
||||
module.exports = {
|
||||
Nuxt,
|
||||
Module,
|
||||
Renderer,
|
||||
|
@ -1,10 +1,10 @@
|
||||
|
||||
import Vue from 'vue'
|
||||
import VueMeta from 'vue-meta'
|
||||
import VueServerRenderer from 'vue-server-renderer'
|
||||
import LRU from 'lru-cache'
|
||||
const Vue = require('vue')
|
||||
const VueMeta = require('vue-meta')
|
||||
const VueServerRenderer = require('vue-server-renderer')
|
||||
const LRU = require('lru-cache')
|
||||
|
||||
export default class MetaRenderer {
|
||||
module.exports = class MetaRenderer {
|
||||
constructor(nuxt, renderer) {
|
||||
this.nuxt = nuxt
|
||||
this.renderer = renderer
|
||||
|
@ -1,13 +1,13 @@
|
||||
import path from 'path'
|
||||
import fs from 'fs'
|
||||
import { uniq } from 'lodash'
|
||||
import hash from 'hash-sum'
|
||||
import { chainFn, sequence } from 'utils'
|
||||
import Debug from 'debug'
|
||||
const path = require('path')
|
||||
const fs = require('fs')
|
||||
const { uniq } = require('lodash')
|
||||
const hash = require('hash-sum')
|
||||
const { chainFn, sequence } = require('../common/utils')
|
||||
const Debug = require('debug')
|
||||
|
||||
const debug = Debug('nuxt:module')
|
||||
|
||||
export default class ModuleContainer {
|
||||
module.exports = class ModuleContainer {
|
||||
constructor(nuxt) {
|
||||
this.nuxt = nuxt
|
||||
this.options = nuxt.options
|
||||
|
@ -1,18 +1,19 @@
|
||||
import chalk from 'chalk'
|
||||
import { Options } from 'common'
|
||||
import { sequence } from 'utils'
|
||||
import ModuleContainer from './module'
|
||||
import Renderer from './renderer'
|
||||
import Debug from 'debug'
|
||||
import enableDestroy from 'server-destroy'
|
||||
import Module from 'module'
|
||||
import { isPlainObject } from 'lodash'
|
||||
import { join, resolve } from 'path'
|
||||
const Debug = require('debug')
|
||||
const enableDestroy = require('server-destroy')
|
||||
const Module = require('module')
|
||||
const { isPlainObject } = require('lodash')
|
||||
const chalk = require('chalk')
|
||||
const { Options } = require('../common')
|
||||
const { sequence } = require('../common/utils')
|
||||
const { join, resolve } = require('path')
|
||||
const { version } = require('../../package.json')
|
||||
const ModuleContainer = require('./module')
|
||||
const Renderer = require('./renderer')
|
||||
|
||||
const debug = Debug('nuxt:')
|
||||
debug.color = 5
|
||||
|
||||
export default class Nuxt {
|
||||
module.exports = class Nuxt {
|
||||
constructor(options = {}) {
|
||||
this.options = Options.from(options)
|
||||
|
||||
@ -44,6 +45,10 @@ export default class Nuxt {
|
||||
this._ready = this.ready().catch(this.errorHandler)
|
||||
}
|
||||
|
||||
static get version() {
|
||||
return version
|
||||
}
|
||||
|
||||
async ready() {
|
||||
if (this._ready) {
|
||||
return this._ready
|
||||
|
@ -1,20 +1,20 @@
|
||||
import ansiHTML from 'ansi-html'
|
||||
import serialize from 'serialize-javascript'
|
||||
import generateETag from 'etag'
|
||||
import fresh from 'fresh'
|
||||
import serveStatic from 'serve-static'
|
||||
import compression from 'compression'
|
||||
import _ from 'lodash'
|
||||
import { join, resolve } from 'path'
|
||||
import fs from 'fs-extra'
|
||||
import { createBundleRenderer } from 'vue-server-renderer'
|
||||
import { getContext, setAnsiColors, isUrl, waitFor } from 'utils'
|
||||
import Debug from 'debug'
|
||||
import Youch from '@nuxtjs/youch'
|
||||
import { SourceMapConsumer } from 'source-map'
|
||||
import connect from 'connect'
|
||||
import { Options } from 'common'
|
||||
import MetaRenderer from './meta'
|
||||
const ansiHTML = require('ansi-html')
|
||||
const serialize = require('serialize-javascript')
|
||||
const generateETag = require('etag')
|
||||
const fresh = require('fresh')
|
||||
const serveStatic = require('serve-static')
|
||||
const compression = require('compression')
|
||||
const _ = require('lodash')
|
||||
const { join, resolve } = require('path')
|
||||
const fs = require('fs-extra')
|
||||
const { createBundleRenderer } = require('vue-server-renderer')
|
||||
const { getContext, setAnsiColors, isUrl, waitFor } = require('../common/utils')
|
||||
const Debug = require('debug')
|
||||
const Youch = require('@nuxtjs/youch')
|
||||
const { SourceMapConsumer } = require('source-map')
|
||||
const connect = require('connect')
|
||||
const { Options } = require('../common')
|
||||
const MetaRenderer = require('./meta')
|
||||
|
||||
const debug = Debug('nuxt:render')
|
||||
debug.color = 4 // Force blue color
|
||||
@ -23,7 +23,7 @@ setAnsiColors(ansiHTML)
|
||||
|
||||
let jsdom = null
|
||||
|
||||
export default class Renderer {
|
||||
module.exports = class Renderer {
|
||||
constructor(nuxt) {
|
||||
this.nuxt = nuxt
|
||||
this.options = nuxt.options
|
||||
@ -126,6 +126,7 @@ export default class Renderer {
|
||||
|
||||
get isResourcesAvailable() {
|
||||
// Required for both
|
||||
/* istanbul ignore if */
|
||||
if (!this.resources.clientManifest) {
|
||||
return false
|
||||
}
|
||||
@ -223,7 +224,7 @@ export default class Renderer {
|
||||
|
||||
// open in editor for debug mode only
|
||||
const _this = this
|
||||
if (this.options.debug) {
|
||||
if (this.options.debug && this.options.dev) {
|
||||
this.useMiddleware({
|
||||
path: '_open',
|
||||
handler(req, res) {
|
||||
@ -417,9 +418,11 @@ export default class Renderer {
|
||||
if (line) {
|
||||
frame.lineNumber = line
|
||||
}
|
||||
/* istanbul ignore if */
|
||||
if (column) {
|
||||
frame.columnNumber = column
|
||||
}
|
||||
/* istanbul ignore if */
|
||||
if (name) {
|
||||
frame.functionName = name
|
||||
}
|
||||
|
13
lib/index.js
13
lib/index.js
@ -1,4 +1,11 @@
|
||||
import * as core from './core'
|
||||
import * as builder from './builder'
|
||||
/*!
|
||||
* Nuxt.js
|
||||
* (c) 2016-2017 Chopin Brothers
|
||||
* Core maintainer: Pooya Parsa (@pi0)
|
||||
* Released under the MIT License.
|
||||
*/
|
||||
|
||||
export default Object.assign({}, core, builder)
|
||||
const core = require('./core')
|
||||
const builder = require('./builder')
|
||||
|
||||
module.exports = Object.assign({}, core, builder)
|
||||
|
76
package.json
76
package.json
@ -13,7 +13,7 @@
|
||||
"name": "Pooya Parsa (@pi0)"
|
||||
}
|
||||
],
|
||||
"main": "./index.js",
|
||||
"main": "./lib/index.js",
|
||||
"license": "MIT",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
@ -21,9 +21,7 @@
|
||||
},
|
||||
"files": [
|
||||
"bin",
|
||||
"dist",
|
||||
"lib",
|
||||
"index.js"
|
||||
"lib"
|
||||
],
|
||||
"keywords": [
|
||||
"nuxt",
|
||||
@ -47,30 +45,24 @@
|
||||
]
|
||||
},
|
||||
"scripts": {
|
||||
"test": "npm run lint && cross-env NODE_ENV=test npm run build:nuxt && nyc ava --verbose --serial test/ -- && nyc report --reporter=html",
|
||||
"test": "npm run lint && nyc ava --verbose --serial test/ -- && nyc report --reporter=html",
|
||||
"coverage": "nyc report --reporter=text-lcov > coverage.lcov && codecov",
|
||||
"lint": "eslint --ext .js,.vue bin/ lib/ test/ examples/",
|
||||
"build": "rimraf dist/ && npm run build:nuxt && npm run build:core",
|
||||
"build:nuxt": "rollup -c build/rollup.config.js --environment TARGET:nuxt",
|
||||
"build:core": "rollup -c build/rollup.config.js --environment TARGET:core",
|
||||
"watch": "npm run build:nuxt -- -w",
|
||||
"make-start": "node ./build/start.js",
|
||||
"lint": "eslint --ext .js,.vue bin/* build/ lib/ test/ examples/",
|
||||
"precommit": "npm run lint",
|
||||
"postinstall": "opencollective postinstall || exit 0",
|
||||
"release-next": "npm run build && node ./build/release-next && npm publish --tag next"
|
||||
"postinstall": "opencollective postinstall || exit 0"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">=6.11",
|
||||
"npm": ">=3.10.0"
|
||||
"node": ">=8.0.0",
|
||||
"npm": ">=5.0.0"
|
||||
},
|
||||
"dependencies": {
|
||||
"@nuxtjs/youch": "^3.1.0",
|
||||
"ansi-html": "^0.0.7",
|
||||
"autoprefixer": "^7.1.6",
|
||||
"autoprefixer": "^7.2.2",
|
||||
"babel-core": "^6.26.0",
|
||||
"babel-loader": "^7.1.2",
|
||||
"babel-preset-vue-app": "^1.3.1",
|
||||
"caniuse-lite": "^1.0.30000758",
|
||||
"babel-preset-vue-app": "^2.0.0",
|
||||
"caniuse-lite": "^1.0.30000782",
|
||||
"chalk": "^2.3.0",
|
||||
"chokidar": "^1.7.0",
|
||||
"clone": "^2.1.1",
|
||||
@ -84,10 +76,10 @@
|
||||
"file-loader": "^1.1.5",
|
||||
"fresh": "^0.5.2",
|
||||
"friendly-errors-webpack-plugin": "^1.6.1",
|
||||
"fs-extra": "^4.0.2",
|
||||
"fs-extra": "^5.0.0",
|
||||
"glob": "^7.1.2",
|
||||
"hash-sum": "^1.0.2",
|
||||
"html-minifier": "^3.5.6",
|
||||
"html-minifier": "3.5.7",
|
||||
"html-webpack-plugin": "^2.30.1",
|
||||
"lodash": "^4.17.4",
|
||||
"lru-cache": "^4.1.1",
|
||||
@ -95,70 +87,62 @@
|
||||
"minimist": "^1.2.0",
|
||||
"open-in-editor": "^2.2.0",
|
||||
"opencollective": "^1.0.3",
|
||||
"pify": "^3.0.0",
|
||||
"postcss": "^6.0.14",
|
||||
"postcss-cssnext": "^3.0.2",
|
||||
"postcss-import": "^11.0.0",
|
||||
"postcss-loader": "^2.0.8",
|
||||
"postcss-url": "^7.2.1",
|
||||
"postcss-url": "^7.3.0",
|
||||
"pretty-error": "^2.1.1",
|
||||
"progress-bar-webpack-plugin": "^1.10.0",
|
||||
"serialize-javascript": "^1.4.0",
|
||||
"serve-static": "^1.13.1",
|
||||
"server-destroy": "^1.0.1",
|
||||
"source-map": "^0.6.1",
|
||||
"source-map-support": "^0.5.0",
|
||||
"style-resources-loader": "^0.3.0",
|
||||
"uglifyjs-webpack-plugin": "^1.0.1",
|
||||
"style-resources-loader": "^1.0.0",
|
||||
"uglifyjs-webpack-plugin": "^1.1.2",
|
||||
"url-loader": "^0.6.2",
|
||||
"vue": "^2.5.6",
|
||||
"vue": "^2.5.9",
|
||||
"vue-loader": "^13.5.0",
|
||||
"vue-meta": "^1.3.1",
|
||||
"vue-meta": "^1.4.0",
|
||||
"vue-router": "^3.0.1",
|
||||
"vue-server-renderer": "^2.5.6",
|
||||
"vue-template-compiler": "^2.5.6",
|
||||
"vue-server-renderer": "^2.5.9",
|
||||
"vue-template-compiler": "^2.5.9",
|
||||
"vuex": "^3.0.1",
|
||||
"webpack": "^3.8.1",
|
||||
"webpack": "^3.10.0",
|
||||
"webpack-bundle-analyzer": "^2.9.0",
|
||||
"webpack-dev-middleware": "^1.12.0",
|
||||
"webpack-hot-middleware": "^2.20.0",
|
||||
"webpack-dev-middleware": "^1.12.2",
|
||||
"webpack-hot-middleware": "^2.21.0",
|
||||
"webpack-node-externals": "^1.6.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"ava": "^0.23.0",
|
||||
"babel-eslint": "^8.0.1",
|
||||
"ava": "^0.24.0",
|
||||
"babel-eslint": "^8.0.3",
|
||||
"babel-plugin-array-includes": "^2.0.3",
|
||||
"babel-plugin-external-helpers": "^6.22.0",
|
||||
"babel-plugin-istanbul": "^4.1.5",
|
||||
"codecov": "^3.0.0",
|
||||
"copy-webpack-plugin": "^4.2.0",
|
||||
"cross-env": "^5.1.1",
|
||||
"eslint": "^4.10.0",
|
||||
"eslint-config-standard": "^10.2.1",
|
||||
"eslint": "^4.13.1",
|
||||
"eslint-config-standard": "^11.0.0-beta.0",
|
||||
"eslint-config-standard-jsx": "^4.0.2",
|
||||
"eslint-plugin-html": "^4.0.1",
|
||||
"eslint-plugin-import": "^2.8.0",
|
||||
"eslint-plugin-node": "^5.2.1",
|
||||
"eslint-plugin-promise": "^3.6.0",
|
||||
"eslint-plugin-react": "^7.5.1",
|
||||
"eslint-plugin-standard": "^3.0.1",
|
||||
"express": "^4.16.2",
|
||||
"finalhandler": "^1.1.0",
|
||||
"jsdom": "^11.3.0",
|
||||
"jsdom": "^11.5.1",
|
||||
"json-loader": "^0.5.7",
|
||||
"nyc": "^11.3.0",
|
||||
"puppeteer": "^0.13.0",
|
||||
"request": "^2.83.0",
|
||||
"request-promise-native": "^1.0.5",
|
||||
"rimraf": "^2.6.2",
|
||||
"rollup": "^0.51.7",
|
||||
"rollup-plugin-alias": "^1.4.0",
|
||||
"rollup-plugin-babel": "^3.0.2",
|
||||
"rollup-plugin-commonjs": "^8.2.6",
|
||||
"rollup-plugin-node-resolve": "^3.0.0",
|
||||
"rollup-plugin-replace": "^2.0.0",
|
||||
"rollup-watch": "^4.3.1",
|
||||
"sinon": "^4.1.2",
|
||||
"std-mocks": "^1.0.1",
|
||||
"uglify-js": "^3.1.7"
|
||||
"uglify-js": "^3.2.2"
|
||||
},
|
||||
"collective": {
|
||||
"type": "opencollective",
|
||||
|
5
build/release-next.js → scripts/release-next
Normal file → Executable file
5
build/release-next.js → scripts/release-next
Normal file → Executable file
@ -1,4 +1,5 @@
|
||||
#!/usr/bin/env node
|
||||
|
||||
const { readFileSync, writeFileSync } = require('fs-extra')
|
||||
const { resolve } = require('path')
|
||||
const { spawnSync } = require('child_process')
|
||||
@ -16,12 +17,12 @@ const originalPackage = readFileSync(packagePath, 'utf-8')
|
||||
const p = JSON.parse(originalPackage)
|
||||
|
||||
// Change package name
|
||||
p.name = 'nuxt-next'
|
||||
// p.name = 'nuxt-next'
|
||||
|
||||
// Get latest git commit id
|
||||
const gitCommit = String(spawnSync('git', 'rev-parse --short HEAD'.split(' ')).stdout).trim()
|
||||
|
||||
// Version with git tag
|
||||
// Version with latest git commit id
|
||||
p.version = p.version.split('-')[0] + '-gh-' + gitCommit
|
||||
|
||||
// Write package.json
|
@ -3,7 +3,7 @@
|
||||
const now = Date.now()
|
||||
|
||||
const { readFileSync, readJSONSync, writeFileSync, copySync, removeSync } = require('fs-extra')
|
||||
const { resolve, relative } = require('path')
|
||||
const { resolve } = require('path')
|
||||
|
||||
// Dirs
|
||||
const rootDir = resolve(__dirname, '..')
|
||||
@ -42,6 +42,7 @@ requires = requires.filter(r => excludes.indexOf(r) === -1)
|
||||
let dependencies = {}
|
||||
requires.forEach(r => {
|
||||
if (!packageJSON.dependencies[r]) {
|
||||
// eslint-disable-next-line no-console
|
||||
console.warn('Cannot resolve dependency version for ' + r)
|
||||
return
|
||||
}
|
||||
@ -104,5 +105,5 @@ writeFileSync(startIndexjs, String(readFileSync(startIndexjs)).replace('./dist/n
|
||||
const binStart = resolve(startDir, 'bin/nuxt-start')
|
||||
writeFileSync(binStart, String(readFileSync(binStart)).replace(/nuxt start/g, 'nuxt-start'))
|
||||
|
||||
const ms = Date.now() - now
|
||||
console.log(`Generated ${packageJSON.name}@${packageJSON.version} in ${ms}ms`)
|
||||
// eslint-disable-next-line no-console
|
||||
console.log(`Generated ${packageJSON.name}@${packageJSON.version} in ${Date.now() - now}ms`)
|
14
test/basic.config.defaults.test.js
Normal file
14
test/basic.config.defaults.test.js
Normal file
@ -0,0 +1,14 @@
|
||||
import test from 'ava'
|
||||
import { resolve } from 'path'
|
||||
import { Nuxt, Options } from '..'
|
||||
import { version } from '../package.json'
|
||||
|
||||
test('Nuxt.version is same as package', t => {
|
||||
t.is(Nuxt.version, version)
|
||||
})
|
||||
|
||||
test('modulesDir uses /node_modules as default if not set', async t => {
|
||||
const options = Options.from({})
|
||||
const currentNodeModulesDir = resolve(__dirname, '..', 'node_modules')
|
||||
t.true(options.modulesDir.includes(currentNodeModulesDir))
|
||||
})
|
@ -1,6 +1,6 @@
|
||||
import test from 'ava'
|
||||
import { resolve } from 'path'
|
||||
import { Nuxt, Builder } from '../index'
|
||||
import { Nuxt, Builder } from '..'
|
||||
import * as browser from './helpers/browser'
|
||||
|
||||
const port = 4003
|
||||
@ -143,6 +143,15 @@ test('/redirect2', async t => {
|
||||
t.is(await page.$text('h1'), 'Index page')
|
||||
})
|
||||
|
||||
test('/redirect3', async t => {
|
||||
// New page for redirecting to external link.
|
||||
const page = await browser.page(url('/'))
|
||||
await page.nuxt.navigate('/redirect3', false)
|
||||
await page.waitForFunction(() => window.location.href === 'https://nuxtjs.org/')
|
||||
page.close()
|
||||
t.pass()
|
||||
})
|
||||
|
||||
test('/no-ssr', async t => {
|
||||
await page.nuxt.navigate('/no-ssr')
|
||||
|
||||
@ -170,6 +179,12 @@ test('/fn-midd?please=true', async t => {
|
||||
t.true(h1.includes('Date:'))
|
||||
})
|
||||
|
||||
test('/router-guard', async t => {
|
||||
await page.nuxt.navigate('/router-guard')
|
||||
|
||||
t.is(await page.$text('p'), 'Nuxt.js')
|
||||
})
|
||||
|
||||
// Close server and ask nuxt to stop listening to file changes
|
||||
test.after('Closing server and nuxt.js', t => {
|
||||
nuxt.close()
|
||||
|
@ -1,18 +1,26 @@
|
||||
import test from 'ava'
|
||||
import { resolve } from 'path'
|
||||
import stdMocks from 'std-mocks'
|
||||
// import rp from 'request-promise-native'
|
||||
import { Nuxt, Builder } from '../index.js'
|
||||
import { Nuxt, Builder, Utils } from '..'
|
||||
import { truncateSync, readFileSync, writeFileSync } from 'fs'
|
||||
|
||||
const port = 4001
|
||||
const url = (route) => 'http://localhost:' + port + route
|
||||
const rootDir = resolve(__dirname, 'fixtures/basic')
|
||||
const pluginPath = resolve(rootDir, 'plugins', 'watch.js')
|
||||
const pluginContent = readFileSync(pluginPath)
|
||||
|
||||
let nuxt = null
|
||||
|
||||
// Init nuxt.js and create server listening on localhost:4000
|
||||
test.before('Init Nuxt.js', async t => {
|
||||
const options = {
|
||||
rootDir: resolve(__dirname, 'fixtures/basic'),
|
||||
dev: true
|
||||
rootDir,
|
||||
dev: true,
|
||||
plugins: [
|
||||
'~/plugins/watch.js'
|
||||
]
|
||||
}
|
||||
nuxt = new Nuxt(options)
|
||||
await new Builder(nuxt).build()
|
||||
@ -20,6 +28,29 @@ test.before('Init Nuxt.js', async t => {
|
||||
await nuxt.listen(port, 'localhost')
|
||||
})
|
||||
|
||||
test('remove mixins in live reloading', async t => {
|
||||
stdMocks.use()
|
||||
await nuxt.renderRoute(url('/'))
|
||||
t.true(stdMocks.flush().stdout.some(v => v === 'I am mixin\n'))
|
||||
|
||||
truncateSync(pluginPath)
|
||||
await new Promise(async (resolve, reject) => {
|
||||
let waitTimes = 0
|
||||
while (!stdMocks.flush().stdout.some(v => ~v.indexOf('Compiled successfully'))) {
|
||||
await Utils.waitFor(100) && waitTimes++
|
||||
if (waitTimes === 20) {
|
||||
reject(Error('Dev server doesn\'t reload after 2000ms'))
|
||||
}
|
||||
}
|
||||
resolve()
|
||||
})
|
||||
|
||||
await nuxt.renderRoute(url('/'))
|
||||
t.false(stdMocks.flush().stdout.some(v => v === 'I am mixin\n'))
|
||||
|
||||
stdMocks.restore()
|
||||
})
|
||||
|
||||
test('/stateless', async t => {
|
||||
const window = await nuxt.renderAndGetWindow(url('/stateless'))
|
||||
const html = window.document.body.innerHTML
|
||||
@ -37,5 +68,6 @@ test('/stateless', async t => {
|
||||
|
||||
// Close server and ask nuxt to stop listening to file changes
|
||||
test.after('Closing server and nuxt.js', async t => {
|
||||
writeFileSync(pluginPath, pluginContent)
|
||||
await nuxt.close()
|
||||
})
|
||||
|
@ -1,6 +1,6 @@
|
||||
import test from 'ava'
|
||||
import { resolve } from 'path'
|
||||
import { Nuxt, Builder, Generator } from '../index.js'
|
||||
import { Nuxt, Builder, Generator } from '..'
|
||||
|
||||
test('Fail with routes() which throw an error', async t => {
|
||||
const options = {
|
||||
|
@ -5,7 +5,7 @@ import http from 'http'
|
||||
import serveStatic from 'serve-static'
|
||||
import finalhandler from 'finalhandler'
|
||||
import rp from 'request-promise-native'
|
||||
import { Nuxt, Builder, Generator } from '../index.js'
|
||||
import { Nuxt, Builder, Generator } from '..'
|
||||
|
||||
const port = 4002
|
||||
const url = (route) => 'http://localhost:' + port + route
|
||||
|
@ -5,7 +5,7 @@ import http from 'http'
|
||||
import serveStatic from 'serve-static'
|
||||
import finalhandler from 'finalhandler'
|
||||
import rp from 'request-promise-native'
|
||||
import { Nuxt, Builder, Generator } from '../index.js'
|
||||
import { Nuxt, Builder, Generator } from '..'
|
||||
|
||||
const port = 4002
|
||||
const url = (route) => 'http://localhost:' + port + route
|
||||
|
@ -1,7 +1,7 @@
|
||||
import test from 'ava'
|
||||
import { resolve } from 'path'
|
||||
import rp from 'request-promise-native'
|
||||
import { Nuxt, Builder } from '../index.js'
|
||||
import { Nuxt, Builder } from '..'
|
||||
import { interceptLog, interceptError } from './helpers/console'
|
||||
|
||||
const port = 4003
|
||||
@ -121,6 +121,19 @@ test('/redirect -> check redirected source', async t => {
|
||||
t.true(html.includes('<h1>Index page</h1>'))
|
||||
})
|
||||
|
||||
test('/redirect -> external link', async t => {
|
||||
const headers = {}
|
||||
const { html } = await nuxt.renderRoute('/redirect3', {
|
||||
res: {
|
||||
setHeader(k, v) {
|
||||
headers[k] = v
|
||||
}
|
||||
}
|
||||
})
|
||||
t.is(headers.Location, 'https://nuxtjs.org')
|
||||
t.true(html.includes('<div>Redirecting to external page.</div>'))
|
||||
})
|
||||
|
||||
test('/special-state -> check window.__NUXT__.test = true', async t => {
|
||||
const window = await nuxt.renderAndGetWindow(url('/special-state'))
|
||||
t.is(window.document.title, 'Nuxt.js')
|
||||
@ -228,6 +241,22 @@ test('/fn-midd?please=true', async t => {
|
||||
t.true(html.includes('<h1>Date:'))
|
||||
})
|
||||
|
||||
test('/router-guard', async t => {
|
||||
const { html } = await nuxt.renderRoute('/router-guard')
|
||||
t.true(html.includes('<p>Nuxt.js</p>'))
|
||||
t.false(html.includes('Router Guard'))
|
||||
})
|
||||
|
||||
test('/jsx', async t => {
|
||||
const { html } = await nuxt.renderRoute('/jsx')
|
||||
t.true(html.includes('<h1>JSX Page</h1>'))
|
||||
})
|
||||
|
||||
test('/js-link', async t => {
|
||||
const { html } = await nuxt.renderRoute('/js-link')
|
||||
t.true(html.includes('<h1>vue file is first-class</h1>'))
|
||||
})
|
||||
|
||||
// Close server and ask nuxt to stop listening to file changes
|
||||
test.after('Closing server and nuxt.js', async t => {
|
||||
await nuxt.close()
|
||||
|
@ -1,6 +1,6 @@
|
||||
import test from 'ava'
|
||||
import { resolve } from 'path'
|
||||
import { Nuxt, Builder, Utils } from '../index.js'
|
||||
import { Nuxt, Builder, Utils } from '..'
|
||||
import * as browser from './helpers/browser'
|
||||
|
||||
const port = 4005
|
||||
|
@ -1,6 +1,6 @@
|
||||
import test from 'ava'
|
||||
import { resolve } from 'path'
|
||||
import { Nuxt, Builder } from '../index.js'
|
||||
import { Nuxt, Builder } from '..'
|
||||
|
||||
const port = 4004
|
||||
// const url = (route) => 'http://localhost:' + port + route
|
||||
|
@ -1,11 +1,11 @@
|
||||
import { promisify } from 'util'
|
||||
import test from 'ava'
|
||||
import { resolve, sep } from 'path'
|
||||
import rp from 'request-promise-native'
|
||||
import { Utils } from '../index.js'
|
||||
import pify from 'pify'
|
||||
import { exec, spawn } from 'child_process'
|
||||
import { Utils } from '..'
|
||||
|
||||
const execify = pify(exec, { multiArgs: true })
|
||||
const execify = promisify(exec)
|
||||
const rootDir = resolve(__dirname, 'fixtures/basic')
|
||||
|
||||
const port = 4011
|
||||
@ -14,7 +14,7 @@ const url = (route) => 'http://localhost:' + port + route
|
||||
test('bin/nuxt-build', async t => {
|
||||
const binBuild = resolve(__dirname, '..', 'bin', 'nuxt-build')
|
||||
|
||||
const [ stdout, stderr ] = await execify(`node ${binBuild} ${rootDir}`)
|
||||
const { stdout, stderr } = await execify(`node ${binBuild} ${rootDir}`)
|
||||
|
||||
t.true(stdout.includes('server-bundle.json'))
|
||||
t.true(stderr.includes('Building done'))
|
||||
@ -82,7 +82,7 @@ test('bin/nuxt-start', async t => {
|
||||
test('bin/nuxt-generate', async t => {
|
||||
const binGenerate = resolve(__dirname, '..', 'bin', 'nuxt-generate')
|
||||
|
||||
const [ stdout, stderr ] = await execify(`node ${binGenerate} ${rootDir}`)
|
||||
const { stdout, stderr } = await execify(`node ${binGenerate} ${rootDir}`)
|
||||
|
||||
t.true(stdout.includes('server-bundle.json'))
|
||||
t.true(stderr.includes('Destination folder cleaned'))
|
||||
|
@ -1,7 +1,7 @@
|
||||
import test from 'ava'
|
||||
import { resolve } from 'path'
|
||||
import rp from 'request-promise-native'
|
||||
import { Nuxt, Builder } from '../index.js'
|
||||
import { Nuxt, Builder } from '..'
|
||||
|
||||
const port = 4009
|
||||
const url = (route) => 'http://localhost:' + port + route
|
||||
@ -13,7 +13,7 @@ test.before('Init Nuxt.js', async t => {
|
||||
const rootDir = resolve(__dirname, 'fixtures/debug')
|
||||
let config = require(resolve(rootDir, 'nuxt.config.js'))
|
||||
config.rootDir = rootDir
|
||||
config.dev = false
|
||||
config.dev = true // Needed for _open middleware
|
||||
nuxt = new Nuxt(config)
|
||||
await new Builder(nuxt).build()
|
||||
|
||||
@ -38,6 +38,30 @@ test('/test/error should return error stack trace (Youch)', async t => {
|
||||
t.true(error.includes('<div class="error-frames">'))
|
||||
})
|
||||
|
||||
test('/test/error no source-map (Youch)', async t => {
|
||||
const sourceMaps = nuxt.renderer.resources.serverBundle.maps
|
||||
nuxt.renderer.resources.serverBundle.maps = {}
|
||||
|
||||
const { response, error } = await t.throws(nuxt.renderAndGetWindow(url('/test/error')))
|
||||
t.is(response.statusCode, 500)
|
||||
t.is(response.statusMessage, 'NuxtServerError')
|
||||
t.true(error.includes('test youch !'))
|
||||
t.true(error.includes('<div class="error-frames">'))
|
||||
|
||||
nuxt.renderer.resources.serverBundle.maps = sourceMaps
|
||||
})
|
||||
|
||||
test('/test/error should return json format error (Youch)', async t => {
|
||||
const opts = {
|
||||
headers: {
|
||||
'accept': 'application/json'
|
||||
},
|
||||
resolveWithFullResponse: true
|
||||
}
|
||||
const { response: { headers } } = await t.throws(rp(url('/test/error'), opts))
|
||||
t.is(headers['content-type'], 'text/json; charset=utf-8')
|
||||
})
|
||||
|
||||
// Close server and ask nuxt to stop listening to file changes
|
||||
test.after('Closing server and nuxt.js', t => {
|
||||
nuxt.close()
|
||||
|
@ -2,7 +2,7 @@ import test from 'ava'
|
||||
import stdMocks from 'std-mocks'
|
||||
import { resolve } from 'path'
|
||||
import rp from 'request-promise-native'
|
||||
import { Nuxt, Builder } from '../index.js'
|
||||
import { Nuxt, Builder } from '..'
|
||||
|
||||
const port = 4010
|
||||
const url = (route) => 'http://localhost:' + port + route
|
||||
|
@ -1,11 +1,11 @@
|
||||
import { promisify } from 'util'
|
||||
import test from 'ava'
|
||||
import { resolve } from 'path'
|
||||
import fs from 'fs'
|
||||
import pify from 'pify'
|
||||
import stdMocks from 'std-mocks'
|
||||
import { Nuxt, Builder } from '../index.js'
|
||||
import { Nuxt, Builder } from '..'
|
||||
|
||||
const readFile = pify(fs.readFile)
|
||||
const readFile = promisify(fs.readFile)
|
||||
const rootDir = resolve(__dirname, './fixtures/dll')
|
||||
const dllDir = resolve(rootDir, '.cache/client-dll')
|
||||
|
||||
|
@ -1,10 +1,10 @@
|
||||
import test from 'ava'
|
||||
import { resolve } from 'path'
|
||||
import fs from 'fs'
|
||||
import pify from 'pify'
|
||||
import { Nuxt, Builder } from '../index.js'
|
||||
import { Nuxt, Builder } from '..'
|
||||
import { promisify } from 'util'
|
||||
|
||||
const readFile = pify(fs.readFile)
|
||||
const readFile = promisify(fs.readFile)
|
||||
|
||||
test.before('Init Nuxt.js', async t => {
|
||||
const nuxt = new Nuxt({
|
||||
|
@ -1,6 +1,7 @@
|
||||
import test from 'ava'
|
||||
import { resolve } from 'path'
|
||||
import { Nuxt, Builder } from '../index.js'
|
||||
import rp from 'request-promise-native'
|
||||
import { Nuxt, Builder } from '..'
|
||||
|
||||
const port = 4005
|
||||
const url = (route) => 'http://localhost:' + port + route
|
||||
@ -38,6 +39,17 @@ test('/ with renderAndGetWindow()', async t => {
|
||||
t.is(err.response.statusMessage, 'NuxtServerError')
|
||||
})
|
||||
|
||||
test('/ with text/json content', async t => {
|
||||
const opts = {
|
||||
headers: {
|
||||
'accept': 'application/json'
|
||||
},
|
||||
resolveWithFullResponse: true
|
||||
}
|
||||
const { response: { headers } } = await t.throws(rp(url('/'), opts))
|
||||
t.is(headers['content-type'], 'text/json; charset=utf-8')
|
||||
})
|
||||
|
||||
// Close server and ask nuxt to stop listening to file changes
|
||||
test.after('Closing server and nuxt.js', t => {
|
||||
nuxt.close()
|
||||
|
@ -1,6 +1,6 @@
|
||||
import test from 'ava'
|
||||
import { resolve } from 'path'
|
||||
import { Nuxt, Builder } from '../index.js'
|
||||
import { Nuxt, Builder } from '..'
|
||||
import express from 'express'
|
||||
import rp from 'request-promise-native'
|
||||
|
||||
|
1
test/fixtures/basic/nuxt.config.js
vendored
1
test/fixtures/basic/nuxt.config.js
vendored
@ -20,6 +20,7 @@ module.exports = {
|
||||
},
|
||||
transition: false,
|
||||
build: {
|
||||
scopeHoisting: true,
|
||||
postcss: [
|
||||
require('postcss-cssnext')()
|
||||
]
|
||||
|
2
test/fixtures/basic/pages/js-link.js
vendored
Normal file
2
test/fixtures/basic/pages/js-link.js
vendored
Normal file
@ -0,0 +1,2 @@
|
||||
export default {
|
||||
}
|
5
test/fixtures/basic/pages/js-link.vue
vendored
Normal file
5
test/fixtures/basic/pages/js-link.vue
vendored
Normal file
@ -0,0 +1,5 @@
|
||||
<template>
|
||||
<h1>vue file is first-class</h1>
|
||||
</template>
|
||||
|
||||
<script src="./js-link.js"></script>
|
7
test/fixtures/basic/pages/jsx.js
vendored
Normal file
7
test/fixtures/basic/pages/jsx.js
vendored
Normal file
@ -0,0 +1,7 @@
|
||||
export default {
|
||||
render() {
|
||||
return <div class='container'>
|
||||
<h1>JSX Page</h1>
|
||||
</div>
|
||||
}
|
||||
}
|
11
test/fixtures/basic/pages/redirect3.vue
vendored
Normal file
11
test/fixtures/basic/pages/redirect3.vue
vendored
Normal file
@ -0,0 +1,11 @@
|
||||
<template>
|
||||
<div>Redirecting...</div>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
export default {
|
||||
fetch({ redirect }) {
|
||||
return redirect('https://nuxtjs.org/')
|
||||
}
|
||||
}
|
||||
</script>
|
11
test/fixtures/basic/pages/router-guard.vue
vendored
Normal file
11
test/fixtures/basic/pages/router-guard.vue
vendored
Normal file
@ -0,0 +1,11 @@
|
||||
<template>
|
||||
<div>Router Guard</div>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
export default {
|
||||
beforeRouteEnter(to, from, next) {
|
||||
next({path: '/async-data'})
|
||||
}
|
||||
}
|
||||
</script>
|
12
test/fixtures/basic/plugins/watch.js
vendored
Normal file
12
test/fixtures/basic/plugins/watch.js
vendored
Normal file
@ -0,0 +1,12 @@
|
||||
import Vue from 'vue'
|
||||
|
||||
const Plugin = {
|
||||
install(Vue) {
|
||||
Vue.mixin({
|
||||
created() {
|
||||
console.log('I am mixin') // eslint-disable-line no-console
|
||||
}
|
||||
})
|
||||
}
|
||||
}
|
||||
Vue.use(Plugin)
|
3
test/fixtures/debug/nuxt.config.js
vendored
3
test/fixtures/debug/nuxt.config.js
vendored
@ -3,9 +3,6 @@ module.exports = {
|
||||
base: '/test/'
|
||||
},
|
||||
debug: true,
|
||||
build: {
|
||||
scopeHoisting: true
|
||||
},
|
||||
editor: {
|
||||
cmd: 'echo',
|
||||
pattern: ''
|
||||
|
3
test/fixtures/module/modules/middleware/use-middleware.js
vendored
Normal file
3
test/fixtures/module/modules/middleware/use-middleware.js
vendored
Normal file
@ -0,0 +1,3 @@
|
||||
module.exports = function (req, res, next) {
|
||||
res.end('Use external middleware')
|
||||
}
|
7
test/fixtures/module/nuxt.config.js
vendored
7
test/fixtures/module/nuxt.config.js
vendored
@ -21,5 +21,12 @@ module.exports = {
|
||||
hook('build:done', builder => {
|
||||
builder.__build_done__ = true
|
||||
})
|
||||
// Add hook for renderer
|
||||
hook('render:before', (renderer) => {
|
||||
renderer.useMiddleware({
|
||||
path: '/use-middleware',
|
||||
handler: '~/modules/middleware/use-middleware'
|
||||
})
|
||||
})
|
||||
}
|
||||
}
|
||||
|
11
test/fixtures/with-config/nuxt.config.js
vendored
11
test/fixtures/with-config/nuxt.config.js
vendored
@ -42,12 +42,21 @@ module.exports = {
|
||||
}
|
||||
},
|
||||
build: {
|
||||
// extractCSS: true,
|
||||
publicPath: '/orion/',
|
||||
analyze: {
|
||||
analyzerMode: 'disabled',
|
||||
generateStatsFile: true
|
||||
},
|
||||
styleResources: {
|
||||
patterns: [
|
||||
'~/assets/pre-process.scss'
|
||||
]
|
||||
},
|
||||
babel: {
|
||||
presets({ isServer }) {
|
||||
return null // Coverage: Return null, so defaults will be used.
|
||||
}
|
||||
},
|
||||
extend(config, options) {
|
||||
return Object.assign({}, config, {
|
||||
devtool: 'nosources-source-map'
|
||||
|
76
test/generator.test.js
Normal file
76
test/generator.test.js
Normal file
@ -0,0 +1,76 @@
|
||||
import test from 'ava'
|
||||
import { Nuxt, Generator } from '..'
|
||||
|
||||
test('initRoutes with routes (fn => array)', async t => {
|
||||
const array = ['/1', '/2', '/3', '/4']
|
||||
const config = {
|
||||
generate: {
|
||||
routes: array
|
||||
}
|
||||
}
|
||||
const nuxt = new Nuxt(config)
|
||||
const generator = new Generator(nuxt)
|
||||
const routes = await generator.initRoutes()
|
||||
|
||||
t.is(routes.length, array.length)
|
||||
routes.map((route, index) => {
|
||||
t.is(route.route, array[index])
|
||||
})
|
||||
})
|
||||
|
||||
test('initRoutes with routes (fn())', async t => {
|
||||
const array = ['/1', '/2', '/3', '/4']
|
||||
const config = {
|
||||
generate: {
|
||||
routes() {
|
||||
return array
|
||||
}
|
||||
}
|
||||
}
|
||||
const nuxt = new Nuxt(config)
|
||||
const generator = new Generator(nuxt)
|
||||
const routes = await generator.initRoutes()
|
||||
|
||||
t.is(routes.length, array.length)
|
||||
routes.map((route, index) => {
|
||||
t.is(route.route, array[index])
|
||||
})
|
||||
})
|
||||
|
||||
test('initRoutes with routes (fn(args))', async t => {
|
||||
const config = {
|
||||
generate: {
|
||||
routes(array) {
|
||||
return array
|
||||
}
|
||||
}
|
||||
}
|
||||
const nuxt = new Nuxt(config)
|
||||
const generator = new Generator(nuxt)
|
||||
const array = ['/1', '/2', '/3', '/4']
|
||||
const routes = await generator.initRoutes(array)
|
||||
|
||||
t.is(routes.length, array.length)
|
||||
routes.map((route, index) => {
|
||||
t.is(route.route, array[index])
|
||||
})
|
||||
})
|
||||
|
||||
test('initRoutes with routes (fn(cb, args))', async t => {
|
||||
const config = {
|
||||
generate: {
|
||||
routes(cb, arg1, arg2, arg3, arg4) {
|
||||
cb(null, [ arg1, arg2, arg3, arg4 ])
|
||||
}
|
||||
}
|
||||
}
|
||||
const nuxt = new Nuxt(config)
|
||||
const generator = new Generator(nuxt)
|
||||
const array = ['/1', '/2', '/3', '/4']
|
||||
const routes = await generator.initRoutes(...array)
|
||||
|
||||
t.is(routes.length, array.length)
|
||||
routes.map((route, index) => {
|
||||
t.is(route.route, array[index])
|
||||
})
|
||||
})
|
@ -1,6 +1,6 @@
|
||||
import test from 'ava'
|
||||
import { resolve } from 'path'
|
||||
import { Nuxt, Builder } from '../index.js'
|
||||
import { Nuxt, Builder } from '..'
|
||||
|
||||
test('Nuxt.js Class', t => {
|
||||
t.is(typeof Nuxt, 'function')
|
||||
|
@ -2,7 +2,7 @@ import test from 'ava'
|
||||
import stdMocks from 'std-mocks'
|
||||
import { resolve, normalize } from 'path'
|
||||
import rp from 'request-promise-native'
|
||||
import { Nuxt, Builder } from '../index.js'
|
||||
import { Nuxt, Builder } from '..'
|
||||
|
||||
const port = 4006
|
||||
const url = (route) => 'http://localhost:' + port + route
|
||||
@ -63,6 +63,11 @@ test('Hooks - Error', async t => {
|
||||
t.true(errors.length === 1)
|
||||
})
|
||||
|
||||
test('Hooks - Use external middleware before render', async t => {
|
||||
let response = await rp(url('/use-middleware'))
|
||||
t.is(response, 'Use external middleware')
|
||||
})
|
||||
|
||||
// Close server and ask nuxt to stop listening to file changes
|
||||
test.after('Closing server and nuxt.js', t => {
|
||||
nuxt.close()
|
||||
|
@ -1,6 +1,6 @@
|
||||
import test from 'ava'
|
||||
import stdMocks from 'std-mocks'
|
||||
import { Nuxt, Builder } from '../index.js'
|
||||
import { Nuxt, Builder } from '..'
|
||||
|
||||
let nuxt = null
|
||||
|
||||
@ -47,6 +47,12 @@ test('/custom (call mounted and created once)', async t => {
|
||||
t.true(mounts.length === 1)
|
||||
})
|
||||
|
||||
test('/_nuxt/ (access publicPath in spa mode)', async t => {
|
||||
const { response: { statusCode, statusMessage } } = await t.throws(renderRoute('/_nuxt/'))
|
||||
t.is(statusCode, 404)
|
||||
t.is(statusMessage, 'ResourceNotFound')
|
||||
})
|
||||
|
||||
// Close server and ask nuxt to stop listening to file changes
|
||||
test.after('Closing server and nuxt.js', t => {
|
||||
nuxt.close()
|
||||
|
@ -1,6 +1,6 @@
|
||||
import test from 'ava'
|
||||
import ansiHTML from 'ansi-html'
|
||||
import { Utils } from '../index.js'
|
||||
import { Utils } from '..'
|
||||
|
||||
test('encodeHtml', t => {
|
||||
const html = '<h1>Hello</h1>'
|
||||
@ -70,6 +70,21 @@ test('promisifyRoute (fn => promise)', t => {
|
||||
})
|
||||
})
|
||||
|
||||
test('promisifyRoute ((fn(args) => promise))', t => {
|
||||
const fn = function (array) {
|
||||
return new Promise((resolve) => {
|
||||
resolve(array)
|
||||
})
|
||||
}
|
||||
const array = [1, 2, 3]
|
||||
const promise = Utils.promisifyRoute(fn, array)
|
||||
t.is(typeof promise, 'object')
|
||||
return promise
|
||||
.then((res) => {
|
||||
t.is(res, array)
|
||||
})
|
||||
})
|
||||
|
||||
test('promisifyRoute (fn(cb) with error)', t => {
|
||||
const fn = function (cb) {
|
||||
cb(new Error('Error here'))
|
||||
@ -82,6 +97,19 @@ test('promisifyRoute (fn(cb) with error)', t => {
|
||||
})
|
||||
})
|
||||
|
||||
test('promisifyRoute (fn(cb, args) with error)', t => {
|
||||
const fn = function (cb, array) {
|
||||
cb(new Error('Error here: ' + array.join()))
|
||||
}
|
||||
const array = [1, 2, 3, 4]
|
||||
const promise = Utils.promisifyRoute(fn, array)
|
||||
t.is(typeof promise, 'object')
|
||||
return promise
|
||||
.catch((e) => {
|
||||
t.is(e.message, 'Error here: ' + array.join())
|
||||
})
|
||||
})
|
||||
|
||||
test('promisifyRoute (fn(cb) with result)', t => {
|
||||
const array = [1, 2, 3, 4]
|
||||
const fn = function (cb) {
|
||||
@ -95,6 +123,21 @@ test('promisifyRoute (fn(cb) with result)', t => {
|
||||
})
|
||||
})
|
||||
|
||||
test('promisifyRoute (fn(cb, args) with result)', t => {
|
||||
const fn = function (cb, array, object) {
|
||||
cb(null, { array, object })
|
||||
}
|
||||
const array = [1, 2, 3, 4]
|
||||
const object = { a: 1 }
|
||||
const promise = Utils.promisifyRoute(fn, array, object)
|
||||
t.is(typeof promise, 'object')
|
||||
return promise
|
||||
.then((res) => {
|
||||
t.is(res.array, array)
|
||||
t.is(res.object, object)
|
||||
})
|
||||
})
|
||||
|
||||
test('chainFn (mutate, mutate)', t => {
|
||||
// Pass more than one argument to test that they're actually taken into account
|
||||
const firstFn = function (obj, count) {
|
||||
|
@ -1,13 +1,14 @@
|
||||
import test from 'ava'
|
||||
import { resolve } from 'path'
|
||||
import rp from 'request-promise-native'
|
||||
import { Nuxt, Builder } from '../index.js'
|
||||
import { Nuxt, Builder } from '..'
|
||||
import { interceptLog, release } from './helpers/console'
|
||||
|
||||
const port = 4007
|
||||
const url = (route) => 'http://localhost:' + port + route
|
||||
|
||||
let nuxt = null
|
||||
let builder = null
|
||||
|
||||
// Init nuxt.js and create server listening on localhost:4000
|
||||
test.before('Init Nuxt.js', async t => {
|
||||
@ -16,11 +17,11 @@ test.before('Init Nuxt.js', async t => {
|
||||
config.rootDir = rootDir
|
||||
config.dev = false
|
||||
nuxt = new Nuxt(config)
|
||||
|
||||
builder = new Builder(nuxt)
|
||||
await interceptLog('building nuxt', async () => {
|
||||
await new Builder(nuxt).build()
|
||||
await nuxt.listen(port, 'localhost')
|
||||
await builder.build()
|
||||
})
|
||||
await nuxt.listen(port, 'localhost')
|
||||
})
|
||||
|
||||
test('/', async t => {
|
||||
@ -177,6 +178,17 @@ test('Check /test.txt should return 404', async t => {
|
||||
t.is(err.response.statusCode, 404)
|
||||
})
|
||||
|
||||
test('Check build.styleResources for style-resources-loader', async t => {
|
||||
const loaders = builder.styleLoader('scss')
|
||||
const loader = loaders.find(l => l.loader === 'style-resources-loader')
|
||||
t.is(typeof loader, 'object')
|
||||
t.deepEqual(loader.options, {
|
||||
patterns: [
|
||||
'~/assets/pre-process.scss'
|
||||
]
|
||||
})
|
||||
})
|
||||
|
||||
// Close server and ask nuxt to stop listening to file changes
|
||||
test.after('Closing server and nuxt.js', async t => {
|
||||
await nuxt.close()
|
||||
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user