Skip to content

Commit

Permalink
lint: Lint files
Browse files Browse the repository at this point in the history
  • Loading branch information
Atinux committed Oct 31, 2017
1 parent 8e9f17c commit d93eb06
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 10 deletions.
4 changes: 2 additions & 2 deletions bin/nuxt-build
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
#!/usr/bin/env node
/* eslint-disable no-console */

// Show logs
process.env.DEBUG = process.env.DEBUG || 'nuxt:*'
Expand Down Expand Up @@ -75,7 +76,7 @@ if (options.mode !== 'spa') {
builder.build()
.then(() => debug('Building done'))
.catch((err) => {
console.error(err) // eslint-disable-line no-console
console.error(err)
process.exit(1)
})
} else {
Expand All @@ -84,7 +85,6 @@ if (options.mode !== 'spa') {
// Generate on spa mode
new Generator(nuxt, builder).generate({ build: true }).then(() => {
if (!nuxt.options.dev) {
// eslint-disable-next-line no-console
console.log(`✓ You can now directly upload ${nuxt.options.generate.dir}/ or start server using "nuxt start"`)
}
})
Expand Down
7 changes: 4 additions & 3 deletions bin/nuxt-dev
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
#!/usr/bin/env node
/* eslint-disable no-console */

// Show logs
process.env.DEBUG = process.env.DEBUG || 'nuxt:*'
Expand All @@ -12,7 +13,7 @@ const { Nuxt, Builder } = require('../')
const chokidar = require('chokidar')
const path = require('path')
const resolve = path.resolve
const pkg = require(path.join('..','package.json'))
const pkg = require(path.join('..', 'package.json'))

const argv = parseArgs(process.argv.slice(2), {
alias: {
Expand Down Expand Up @@ -78,7 +79,7 @@ chokidar
dev = dev.then(startDev)
}), 2500)

function startDev (oldNuxt) {
function startDev(oldNuxt) {
// Get latest environment variables
const port = argv.port || process.env.PORT || process.env.npm_package_config_nuxt_port
const host = argv.hostname || process.env.HOST || process.env.npm_package_config_nuxt_host
Expand All @@ -103,7 +104,7 @@ function startDev (oldNuxt) {
.then(() => nuxt) // 4- Pass new nuxt to watch chain
}

function loadNuxtConfig () {
function loadNuxtConfig() {
let options = {}

if (fs.existsSync(nuxtConfigFile)) {
Expand Down
3 changes: 2 additions & 1 deletion bin/nuxt-generate
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
#!/usr/bin/env node
/* eslint-disable no-console */

// Show logs
process.env.DEBUG = process.env.DEBUG || 'nuxt:*'
Expand Down Expand Up @@ -76,6 +77,6 @@ generator.generate(generateOptions)
process.exit(0)
})
.catch((err) => {
console.error(err) // eslint-disable-line no-console
console.error(err)
process.exit(1)
})
6 changes: 3 additions & 3 deletions bin/nuxt-start
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
#!/usr/bin/env node
/* eslint-disable no-console */

const fs = require('fs')
const parseArgs = require('minimist')
const { Nuxt } = require('../')
const { join, resolve } = require('path')
const { resolve } = require('path')

const argv = parseArgs(process.argv.slice(2), {
alias: {
Expand Down Expand Up @@ -71,15 +72,14 @@ const nuxt = new Nuxt(options)
// Check if project is built for production
const distDir = resolve(nuxt.options.rootDir, nuxt.options.buildDir || '.nuxt', 'dist')
if (!fs.existsSync(distDir)) {
console.error('> No build files found, please run `nuxt build` before launching `nuxt start`') // eslint-disable-line no-console
console.error('> No build files found, please run `nuxt build` before launching `nuxt start`')
process.exit(1)
}

// Check if SSR Bundle is required
if (nuxt.options.render.ssr === true) {
const ssrBundlePath = resolve(distDir, 'server-bundle.json')
if (!fs.existsSync(ssrBundlePath)) {
// eslint-disable-next-line no-console
console.error('> No SSR build! Please start with `nuxt start --spa` or build using `nuxt build --universal`')
process.exit(1)
}
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@
"scripts": {
"test": "npm run lint && cross-env NODE_ENV=test npm run build:nuxt && 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 pages test/*.js --ignore-pattern app",
"lint": "eslint --ext .js,.vue bin/** lib/** test/*.js --ignore-pattern app",
"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",
Expand Down

0 comments on commit d93eb06

Please sign in to comment.