Fix lint style

This commit is contained in:
Sébastien Chopin 2017-04-15 13:19:41 +02:00
parent f89722e7c8
commit ec8291ea4c
3 changed files with 572 additions and 548 deletions

View File

@ -205,7 +205,7 @@ function * generateRoutesAndFiles () {
if (typeof p === 'string') {
return { src: r(this.srcDir, p), ssr: true }
}
return { src: r(this.srcDir, p.src), ssr: (p.ssr === false ? false : true), injectAs: (p.injectAs || false) }
return { src: r(this.srcDir, p.src), ssr: (p.ssr !== false), injectAs: (p.injectAs || false) }
}),
appPath: './App.vue',
layouts: layouts,

View File

@ -16,15 +16,15 @@ import pify from 'pify'
const rename = pify(fs.rename)
// offline plugin copy generated assets to static directory
function OfflinePluginCopyAssetsPlugin(assets, toDir) {
function OfflinePluginCopyAssetsPlugin (assets, toDir) {
this.assets = assets
this.toDir = toDir
}
OfflinePluginCopyAssetsPlugin.prototype.apply = function(compiler) {
compiler.plugin('after-emit', function(compilation, callback) {
OfflinePluginCopyAssetsPlugin.prototype.apply = function (compiler) {
compiler.plugin('after-emit', function (compilation, callback) {
const assets = this.assets.length > 0 ? this.assets : []
if (!fs.existsSync(this.toDir)){
if (!fs.existsSync(this.toDir)) {
fs.mkdirSync(this.toDir)
fs.mkdirSync(`${this.toDir}/appcache`)
}
@ -36,12 +36,12 @@ OfflinePluginCopyAssetsPlugin.prototype.apply = function(compiler) {
Promise.all(renamePromises)
.then(() => {
console.log('\noffline content to static directory...')
console.log('\nOffline content to static directory...') // eslint-disable-line no-console
})
.catch((error) => {
console.error('\noffline-plugin copy error', error)
});
}.bind(this));
console.error('\nOffline-plugin copy error', error) // eslint-disable-line no-console
})
}.bind(this))
}
/*
@ -150,8 +150,9 @@ export default function () {
config.plugins.push(
new OfflinePlugin(offlineOpts),
new OfflinePluginCopyAssetsPlugin(
['sw.js', 'appcache/manifest.appcache', 'appcache/manifest.html'
], 'static')
['sw.js', 'appcache/manifest.appcache', 'appcache/manifest.html'],
'static'
)
)
}
// Webpack Bundle Analyzer

1097
yarn.lock

File diff suppressed because it is too large Load Diff