Merge branch 'dev' into missing-chunk-reload

This commit is contained in:
Dmitry Molotkov 2018-09-29 15:48:44 +03:00 committed by GitHub
commit 984031438c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
6 changed files with 15 additions and 6 deletions

View File

@ -1,7 +1,9 @@
<!--
IMPORTANT: Please use the following link to create a new issue:
🚨 IMPORTANT 🚨
https://cmty.app/nuxt/issues/new?repo=nuxt.js
Please use the following link to create a new issue:
👉 https://cmty.app/nuxt/issues/new?repo=nuxt.js
If your issue was not created using the app above, it will be closed immediately.
-->

View File

@ -2,8 +2,8 @@
## Types of changes
<!--- What types of changes does your code introduce? Put an `x` in all the boxes that apply: -->
- [ ] Bug fix (non-breaking change which fixes an issue)
- [ ] New feature (non-breaking change which adds functionality)
- [ ] Bug fix (a non-breaking change which fixes an issue)
- [ ] New feature (a non-breaking change which adds functionality)
- [ ] Breaking change (fix or feature that would cause existing functionality to change)
@ -13,7 +13,6 @@
<!--- If it resolves an open issue, please link to the issue here. For example "Resolves: #1337" -->
## Checklist:
<!--- Put an `x` in all the boxes that apply. -->
<!--- If your change requires a documentation PR, please link it appropriately -->
@ -21,5 +20,5 @@
- [ ] My change requires a change to the documentation.
- [ ] I have updated the documentation accordingly. (PR: #)
- [ ] I have added tests to cover my changes (if not applicable, please state why)
- [ ] All new and existing tests passed.
- [ ] All new and existing tests are passing.

View File

@ -1,4 +1,6 @@
#!/usr/bin/env node
process.env.NODE_ENV = process.env.NODE_ENV || 'production'
const parseArgs = require('minimist')
const consola = require('consola')
const { Nuxt, Builder, Generator } = require('..')

View File

@ -1,4 +1,6 @@
#!/usr/bin/env node
process.env.NODE_ENV = process.env.NODE_ENV || 'development'
const parseArgs = require('minimist')
const consola = require('consola')
const { version } = require('../package.json')

View File

@ -1,4 +1,6 @@
#!/usr/bin/env node
process.env.NODE_ENV = process.env.NODE_ENV || 'production'
const parseArgs = require('minimist')
const consola = require('consola')
const { Nuxt, Builder, Generator } = require('..')

View File

@ -1,4 +1,6 @@
#!/usr/bin/env node
process.env.NODE_ENV = process.env.NODE_ENV || 'production'
const fs = require('fs')
const { resolve } = require('path')
const parseArgs = require('minimist')