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') { if (typeof p === 'string') {
return { src: r(this.srcDir, p), ssr: true } 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', appPath: './App.vue',
layouts: layouts, layouts: layouts,

View File

@ -36,12 +36,12 @@ OfflinePluginCopyAssetsPlugin.prototype.apply = function(compiler) {
Promise.all(renamePromises) Promise.all(renamePromises)
.then(() => { .then(() => {
console.log('\noffline content to static directory...') console.log('\nOffline content to static directory...') // eslint-disable-line no-console
}) })
.catch((error) => { .catch((error) => {
console.error('\noffline-plugin copy error', error) console.error('\nOffline-plugin copy error', error) // eslint-disable-line no-console
}); })
}.bind(this)); }.bind(this))
} }
/* /*
@ -150,8 +150,9 @@ export default function () {
config.plugins.push( config.plugins.push(
new OfflinePlugin(offlineOpts), new OfflinePlugin(offlineOpts),
new OfflinePluginCopyAssetsPlugin( new OfflinePluginCopyAssetsPlugin(
['sw.js', 'appcache/manifest.appcache', 'appcache/manifest.html' ['sw.js', 'appcache/manifest.appcache', 'appcache/manifest.html'],
], 'static') 'static'
)
) )
} }
// Webpack Bundle Analyzer // Webpack Bundle Analyzer

1097
yarn.lock

File diff suppressed because it is too large Load Diff