From 3db7d3f910cb5bd0958534c53f006b85b99acd99 Mon Sep 17 00:00:00 2001 From: Edwin Betancourt Date: Thu, 3 Sep 2020 14:31:14 -0400 Subject: [PATCH 1/2] feat: Update and replace runjs with taskfile. --- build/index.js | 16 +++++++--------- package.json | 2 +- 2 files changed, 8 insertions(+), 10 deletions(-) diff --git a/build/index.js b/build/index.js index 0c57de2a..5dfe88d0 100644 --- a/build/index.js +++ b/build/index.js @@ -1,15 +1,12 @@ -const { run } = require('runjs') +const { sh } = require('tasksfile') const chalk = require('chalk') const config = require('../vue.config.js') const rawArgv = process.argv.slice(2) const args = rawArgv.join(' ') +sh(`vue-cli-service build ${args}`) + if (process.env.npm_config_preview || rawArgv.includes('--preview')) { - const report = rawArgv.includes('--report') - - run(`vue-cli-service build ${args}`) - - const port = 9526 const publicPath = config.publicPath var connect = require('connect') @@ -23,13 +20,14 @@ if (process.env.npm_config_preview || rawArgv.includes('--preview')) { }) ) + const port = 9526 app.listen(port, function () { console.log(chalk.green(`> Preview at http://localhost:${port}${publicPath}`)) - if (report) { + + const isWithReport = rawArgv.includes('--report') + if (isWithReport) { console.log(chalk.green(`> Report at http://localhost:${port}${publicPath}report.html`)) } }) -} else { - run(`vue-cli-service build ${args}`) } diff --git a/package.json b/package.json index 02f68e23..34a9f6ae 100644 --- a/package.json +++ b/package.json @@ -63,13 +63,13 @@ "lint-staged": "8.1.5", "mockjs": "1.0.1-beta3", "plop": "2.3.0", - "runjs": "4.3.2", "sass": "1.26.2", "sass-loader": "8.0.2", "script-ext-html-webpack-plugin": "2.1.3", "serve-static": "1.13.2", "svg-sprite-loader": "4.1.3", "svgo": "1.2.0", + "tasksfile": "5.1.1", "vue-template-compiler": "2.6.10" }, "browserslist": [ From 2b09c7bf2a11ffdbafb0766d58bbc83e84d04408 Mon Sep 17 00:00:00 2001 From: Edwin Betancourt Date: Sat, 14 Nov 2020 22:32:37 -0400 Subject: [PATCH 2/2] Update index.js --- build/index.js | 14 ++++++-------- 1 file changed, 6 insertions(+), 8 deletions(-) diff --git a/build/index.js b/build/index.js index 5dfe88d0..7484e62d 100644 --- a/build/index.js +++ b/build/index.js @@ -1,16 +1,15 @@ const { sh } = require('tasksfile') -const chalk = require('chalk') -const config = require('../vue.config.js') const rawArgv = process.argv.slice(2) const args = rawArgv.join(' ') sh(`vue-cli-service build ${args}`) if (process.env.npm_config_preview || rawArgv.includes('--preview')) { + const config = require('../vue.config.js') const publicPath = config.publicPath - var connect = require('connect') - var serveStatic = require('serve-static') + const connect = require('connect') + const serveStatic = require('serve-static') const app = connect() app.use( @@ -21,13 +20,12 @@ if (process.env.npm_config_preview || rawArgv.includes('--preview')) { ) const port = 9526 - app.listen(port, function () { + app.listen(port, function() { + const chalk = require('chalk') console.log(chalk.green(`> Preview at http://localhost:${port}${publicPath}`)) - const isWithReport = rawArgv.includes('--report') - if (isWithReport) { + if (rawArgv.includes('--report')) { console.log(chalk.green(`> Report at http://localhost:${port}${publicPath}report.html`)) } - }) }