2018-02-04 18:39:56 +00:00
|
|
|
require('require-yaml');
|
2018-02-03 19:14:44 +00:00
|
|
|
const gulp = require('gulp');
|
|
|
|
const exec = require('child_process').exec;
|
2018-02-09 07:40:23 +00:00
|
|
|
const PluginError = require('plugin-error');
|
|
|
|
const argv = require('minimist')(process.argv.slice(2));
|
|
|
|
const log = require('fancy-log');
|
2017-10-18 04:41:17 +00:00
|
|
|
|
2017-01-31 13:13:06 +00:00
|
|
|
// Configuration
|
2018-01-29 11:37:54 +00:00
|
|
|
|
2018-02-13 21:40:02 +00:00
|
|
|
let isWindows = /^win/.test(process.platform);
|
2018-02-07 14:33:43 +00:00
|
|
|
|
2018-02-09 07:40:23 +00:00
|
|
|
if (argv.NODE_ENV)
|
|
|
|
process.env.NODE_ENV = argv.NODE_ENV;
|
2018-02-07 14:33:43 +00:00
|
|
|
|
2018-02-13 21:40:02 +00:00
|
|
|
let langs = ['es', 'en'];
|
2018-12-22 10:59:26 +00:00
|
|
|
let srcDir = './front';
|
2018-12-27 11:54:16 +00:00
|
|
|
let modulesDir = './modules';
|
2019-01-25 22:02:29 +00:00
|
|
|
let buildDir = 'dist';
|
2018-02-03 21:53:02 +00:00
|
|
|
|
2019-01-26 01:30:46 +00:00
|
|
|
|
2018-02-03 19:14:44 +00:00
|
|
|
// Development
|
2017-05-16 10:37:48 +00:00
|
|
|
|
2019-01-09 09:02:56 +00:00
|
|
|
const localesRoutes = gulp.parallel(locales, routes);
|
|
|
|
localesRoutes.description = `Builds locales and routes`;
|
2017-01-31 13:13:06 +00:00
|
|
|
|
2019-01-26 01:30:46 +00:00
|
|
|
const front = gulp.series(clean, gulp.parallel(localesRoutes, watch, webpackDevServer));
|
2019-01-09 09:02:56 +00:00
|
|
|
front.description = `Starts frontend service`;
|
2018-01-31 11:17:17 +00:00
|
|
|
|
2019-01-25 22:02:29 +00:00
|
|
|
const back = gulp.series(dockerStart, backOnly);
|
2019-01-09 09:02:56 +00:00
|
|
|
back.description = `Starts backend and database service`;
|
|
|
|
|
|
|
|
const defaultTask = gulp.parallel(front, back);
|
|
|
|
defaultTask.description = `Starts all application services`;
|
|
|
|
|
|
|
|
function backOnly(done) {
|
2018-12-27 11:54:16 +00:00
|
|
|
let app = require(`./loopback/server/server`);
|
2019-01-25 22:02:29 +00:00
|
|
|
app.start();
|
2019-01-09 09:02:56 +00:00
|
|
|
app.on('started', done);
|
|
|
|
}
|
|
|
|
backOnly.description = `Starts backend service`;
|
|
|
|
|
2019-01-21 16:01:01 +00:00
|
|
|
// backend tests
|
|
|
|
|
2019-01-24 11:01:35 +00:00
|
|
|
function backendUnitTest() {
|
2019-01-09 09:02:56 +00:00
|
|
|
let app = require(`./loopback/server/server`);
|
|
|
|
|
|
|
|
let specFiles = [
|
2019-01-24 11:01:35 +00:00
|
|
|
'back/**/*.spec.js',
|
|
|
|
'loopback/**/*.spec.js',
|
|
|
|
'modules/*/back/**/*.spec.js'
|
2019-01-09 09:02:56 +00:00
|
|
|
];
|
2018-01-11 07:12:21 +00:00
|
|
|
|
2019-01-09 09:02:56 +00:00
|
|
|
const jasmine = require('gulp-jasmine');
|
2019-01-21 16:01:01 +00:00
|
|
|
let options = {errorOnFail: false};
|
|
|
|
|
2019-01-24 11:29:10 +00:00
|
|
|
if (argv.junit || argv.j) {
|
|
|
|
const reporters = require('jasmine-reporters');
|
2019-01-21 16:01:01 +00:00
|
|
|
options.reporter = new reporters.JUnitXmlReporter();
|
2019-01-24 11:29:10 +00:00
|
|
|
}
|
2019-01-21 16:01:01 +00:00
|
|
|
|
2019-01-09 09:02:56 +00:00
|
|
|
return gulp.src(specFiles)
|
2019-01-21 16:01:01 +00:00
|
|
|
.pipe(jasmine(options))
|
2019-01-09 09:02:56 +00:00
|
|
|
.on('jasmineDone', function() {
|
|
|
|
app.disconnect();
|
|
|
|
});
|
|
|
|
}
|
2019-01-24 11:01:35 +00:00
|
|
|
backendUnitTest.description = `Runs the backend tests only, can receive args --junit or -j to save reports on a xml file`;
|
2019-01-21 16:01:01 +00:00
|
|
|
|
2019-01-24 11:01:35 +00:00
|
|
|
const dockerAndBackTest = gulp.series(docker, backendUnitTest);
|
|
|
|
dockerAndBackTest.description = `Restarts database and runs the backend tests`;
|
2019-01-21 16:01:01 +00:00
|
|
|
|
2019-01-24 11:01:35 +00:00
|
|
|
function backTest(done) {
|
|
|
|
const nodemon = require('gulp-nodemon');
|
2019-01-25 15:26:07 +00:00
|
|
|
let gulpBin = isWindows
|
|
|
|
? 'node_modules/.bin/gulp.cmd'
|
|
|
|
: 'node_modules/.bin/gulp';
|
2019-01-24 11:01:35 +00:00
|
|
|
|
|
|
|
nodemon({
|
2019-01-25 15:26:07 +00:00
|
|
|
exec: gulpBin,
|
2019-01-24 11:01:35 +00:00
|
|
|
args: ['dockerAndBackTest'],
|
|
|
|
watch: ['loopback', 'modules/*/back/**', 'back'],
|
|
|
|
done: done
|
|
|
|
});
|
|
|
|
}
|
|
|
|
backTest.description = `Watches for changes in modules to execute backTest task`;
|
2019-01-09 09:02:56 +00:00
|
|
|
|
2019-01-21 16:01:01 +00:00
|
|
|
// end to end tests
|
2019-01-09 09:02:56 +00:00
|
|
|
|
|
|
|
function e2eOnly() {
|
2018-02-03 19:14:44 +00:00
|
|
|
const jasmine = require('gulp-jasmine');
|
2018-09-05 11:01:21 +00:00
|
|
|
|
|
|
|
if (argv.show || argv.s)
|
|
|
|
process.env.E2E_SHOW = true;
|
|
|
|
|
2019-01-04 14:51:03 +00:00
|
|
|
return gulp.src('./e2e/tests.js')
|
2018-11-02 09:48:15 +00:00
|
|
|
.pipe(jasmine({reporter: 'none'}));
|
2019-01-09 09:02:56 +00:00
|
|
|
}
|
|
|
|
e2eOnly.description = `Runs the e2e tests only`;
|
2018-02-01 07:48:54 +00:00
|
|
|
|
2019-01-09 09:02:56 +00:00
|
|
|
e2e = gulp.series(docker, e2eOnly);
|
|
|
|
e2e.description = `Restarts database and runs the e2e tests`;
|
|
|
|
|
|
|
|
function smokesOnly() {
|
2018-03-09 19:04:03 +00:00
|
|
|
const jasmine = require('gulp-jasmine');
|
2019-01-04 14:51:03 +00:00
|
|
|
return gulp.src('./e2e/smokes-tests.js')
|
2018-11-02 09:48:15 +00:00
|
|
|
.pipe(jasmine({reporter: 'none'}));
|
2019-01-09 09:02:56 +00:00
|
|
|
}
|
|
|
|
smokesOnly.description = `Runs the smokes tests only`;
|
2018-03-09 19:04:03 +00:00
|
|
|
|
2019-01-09 09:02:56 +00:00
|
|
|
smokes = gulp.series(docker, smokesOnly);
|
|
|
|
smokes.description = `Restarts database and runs the smokes tests`;
|
2018-01-29 11:37:54 +00:00
|
|
|
|
2019-01-09 09:02:56 +00:00
|
|
|
function install() {
|
2018-02-03 19:14:44 +00:00
|
|
|
const install = require('gulp-install');
|
2018-02-09 07:40:23 +00:00
|
|
|
const print = require('gulp-print');
|
|
|
|
|
2019-01-22 10:16:14 +00:00
|
|
|
let packageFiles = ['front/package.json', 'print/package.json'];
|
2018-02-09 07:40:23 +00:00
|
|
|
return gulp.src(packageFiles)
|
2018-01-29 11:37:54 +00:00
|
|
|
.pipe(print(filepath => {
|
|
|
|
return `Installing packages in ${filepath}`;
|
|
|
|
}))
|
|
|
|
.pipe(install({
|
|
|
|
npm: ['--no-package-lock']
|
|
|
|
}));
|
2019-01-09 09:02:56 +00:00
|
|
|
}
|
|
|
|
install.description = `Installs node dependencies in all directories`;
|
2018-06-12 09:24:43 +00:00
|
|
|
|
2019-01-09 09:02:56 +00:00
|
|
|
const i = gulp.series(install);
|
|
|
|
i.description = `Alias for the 'install' task`;
|
2018-02-03 19:14:44 +00:00
|
|
|
|
2019-01-09 09:02:56 +00:00
|
|
|
// Deployment
|
2018-06-12 09:24:43 +00:00
|
|
|
|
2019-01-25 22:02:29 +00:00
|
|
|
const build = gulp.series(clean, gulp.parallel(localesRoutes, webpack));
|
2019-01-09 09:02:56 +00:00
|
|
|
build.description = `Generates binaries and configuration files`;
|
2018-01-08 14:06:20 +00:00
|
|
|
|
2019-01-26 01:30:46 +00:00
|
|
|
function clean() {
|
2018-02-09 07:40:23 +00:00
|
|
|
const del = require('del');
|
|
|
|
const files = [
|
2018-12-27 15:10:55 +00:00
|
|
|
`${buildDir}/*`
|
2018-02-09 07:40:23 +00:00
|
|
|
];
|
|
|
|
return del(files, {force: true});
|
|
|
|
}
|
2019-01-26 01:30:46 +00:00
|
|
|
clean.description = `Cleans all files generated by the 'build' task`;
|
2018-02-09 07:40:23 +00:00
|
|
|
|
2017-01-31 13:13:06 +00:00
|
|
|
// Webpack
|
|
|
|
|
2019-01-09 09:02:56 +00:00
|
|
|
function webpack(done) {
|
|
|
|
const webpackCompile = require('webpack');
|
2018-12-20 13:37:29 +00:00
|
|
|
const merge = require('webpack-merge');
|
|
|
|
|
|
|
|
let wpConfig = require('./webpack.config.js');
|
|
|
|
wpConfig = merge(wpConfig, {});
|
2018-02-09 07:40:23 +00:00
|
|
|
|
2019-01-09 09:02:56 +00:00
|
|
|
let compiler = webpackCompile(wpConfig);
|
2017-01-31 13:13:06 +00:00
|
|
|
|
|
|
|
compiler.run(function(err, stats) {
|
2018-02-09 07:40:23 +00:00
|
|
|
if (err) throw new PluginError('webpack', err);
|
2018-12-20 13:37:29 +00:00
|
|
|
log('[webpack]', stats.toString(wpConfig.stats));
|
2019-01-09 09:02:56 +00:00
|
|
|
done();
|
2017-01-31 13:13:06 +00:00
|
|
|
});
|
2019-01-09 09:02:56 +00:00
|
|
|
}
|
|
|
|
webpack.description = `Transpiles application into files`;
|
2017-01-31 13:13:06 +00:00
|
|
|
|
2019-01-09 09:02:56 +00:00
|
|
|
function webpackDevServer(done) {
|
2018-02-09 07:40:23 +00:00
|
|
|
const webpack = require('webpack');
|
2018-12-20 13:37:29 +00:00
|
|
|
const merge = require('webpack-merge');
|
|
|
|
const WebpackDevServer = require('webpack-dev-server');
|
2018-02-09 07:40:23 +00:00
|
|
|
|
2018-12-20 13:37:29 +00:00
|
|
|
let wpConfig = require('./webpack.config.js');
|
|
|
|
wpConfig = merge(wpConfig, {});
|
|
|
|
|
|
|
|
let devServer = wpConfig.devServer;
|
|
|
|
|
|
|
|
for (let entryName in wpConfig.entry) {
|
|
|
|
let entry = wpConfig.entry[entryName];
|
|
|
|
let wdsAssets = [`webpack-dev-server/client?http://127.0.0.1:${devServer.port}/`];
|
|
|
|
if (Array.isArray(entry))
|
|
|
|
wdsAssets = wdsAssets.concat(entry);
|
|
|
|
else
|
|
|
|
wdsAssets.push(entry);
|
|
|
|
wpConfig.entry[entryName] = wdsAssets;
|
|
|
|
}
|
|
|
|
|
|
|
|
let compiler = webpack(wpConfig);
|
|
|
|
new WebpackDevServer(compiler, wpConfig.devServer)
|
|
|
|
.listen(devServer.port, devServer.host, function(err) {
|
|
|
|
if (err) throw new PluginError('webpack-dev-server', err);
|
|
|
|
// TODO: Keep the server alive or continue?
|
2019-01-09 09:02:56 +00:00
|
|
|
done();
|
2018-12-20 13:37:29 +00:00
|
|
|
});
|
2019-01-09 09:02:56 +00:00
|
|
|
}
|
|
|
|
webpackDevServer.description = `Transpiles application into memory`;
|
2017-01-31 13:13:06 +00:00
|
|
|
|
|
|
|
// Locale
|
|
|
|
|
2018-12-27 11:54:16 +00:00
|
|
|
let localeFiles = [
|
|
|
|
`${srcDir}/**/locale/*.yml`,
|
|
|
|
`${modulesDir}/*/front/**/locale/*.yml`
|
|
|
|
];
|
2017-01-31 13:13:06 +00:00
|
|
|
|
2018-02-13 21:40:02 +00:00
|
|
|
/**
|
|
|
|
* Mixes all locale files into one JSON file per module and language. It looks
|
|
|
|
* recursively in all project directories for locale folders with per language
|
|
|
|
* yaml translation files.
|
2019-01-09 09:02:56 +00:00
|
|
|
*
|
|
|
|
* @return {Stream} The merged gulp streams
|
2018-02-13 21:40:02 +00:00
|
|
|
*/
|
2019-01-09 09:02:56 +00:00
|
|
|
function locales() {
|
|
|
|
const mergeJson = require('gulp-merge-json');
|
2018-02-04 14:46:46 +00:00
|
|
|
const yaml = require('gulp-yaml');
|
2018-02-05 18:34:04 +00:00
|
|
|
const merge = require('merge-stream');
|
|
|
|
|
2018-02-03 19:14:44 +00:00
|
|
|
let streams = [];
|
2018-12-27 11:54:16 +00:00
|
|
|
let localePaths = [];
|
2017-01-31 13:13:06 +00:00
|
|
|
|
2019-01-26 01:30:46 +00:00
|
|
|
let modules = fs.readdirSync(modulesDir);
|
|
|
|
for (let mod of modules)
|
2018-12-27 11:54:16 +00:00
|
|
|
localePaths[mod] = `${modulesDir}/${mod}`;
|
|
|
|
|
2019-01-25 22:02:29 +00:00
|
|
|
let baseMods = ['core', 'salix'];
|
2018-12-27 11:54:16 +00:00
|
|
|
for (let mod of baseMods)
|
|
|
|
localePaths[mod] = `${srcDir}/${mod}`;
|
|
|
|
|
|
|
|
for (let mod in localePaths) {
|
|
|
|
let path = localePaths[mod];
|
2018-02-03 19:14:44 +00:00
|
|
|
for (let lang of langs) {
|
2018-12-27 11:54:16 +00:00
|
|
|
let localeFiles = `${path}/**/locale/${lang}.yml`;
|
2017-03-01 08:55:17 +00:00
|
|
|
streams.push(gulp.src(localeFiles)
|
2018-02-04 14:46:46 +00:00
|
|
|
.pipe(yaml())
|
2019-01-09 09:02:56 +00:00
|
|
|
.pipe(mergeJson({fileName: `${lang}.json`}))
|
2017-03-01 08:55:17 +00:00
|
|
|
.pipe(gulp.dest(`${buildDir}/locale/${mod}`)));
|
|
|
|
}
|
2018-12-20 13:37:29 +00:00
|
|
|
}
|
2017-01-31 13:13:06 +00:00
|
|
|
|
|
|
|
return merge(streams);
|
2019-01-09 09:02:56 +00:00
|
|
|
}
|
|
|
|
locales.description = `Generates client locale files`;
|
2017-01-31 13:13:06 +00:00
|
|
|
|
|
|
|
// Routes
|
|
|
|
|
2018-12-27 11:54:16 +00:00
|
|
|
let routeFiles = `${modulesDir}/*/front/routes.json`;
|
2017-01-31 13:13:06 +00:00
|
|
|
|
2019-01-09 09:02:56 +00:00
|
|
|
function routes() {
|
2018-02-05 18:34:04 +00:00
|
|
|
const concat = require('gulp-concat');
|
|
|
|
const wrap = require('gulp-wrap');
|
|
|
|
|
2017-01-31 13:13:06 +00:00
|
|
|
return gulp.src(routeFiles)
|
2017-10-24 06:56:18 +00:00
|
|
|
.pipe(concat('routes.js', {newLine: ','}))
|
|
|
|
.pipe(wrap('var routes = [<%=contents%>\n];'))
|
|
|
|
.pipe(gulp.dest(buildDir));
|
2019-01-09 09:02:56 +00:00
|
|
|
}
|
|
|
|
routes.description = 'Merges all module routes file into one file';
|
2017-01-31 13:13:06 +00:00
|
|
|
|
|
|
|
// Watch
|
2018-01-29 11:37:54 +00:00
|
|
|
|
2019-01-09 09:02:56 +00:00
|
|
|
function watch(done) {
|
|
|
|
gulp.watch(routeFiles, gulp.series(routes));
|
|
|
|
gulp.watch(localeFiles, gulp.series(locales));
|
|
|
|
done();
|
|
|
|
}
|
|
|
|
watch.description = `Watches for changes in routes and locale files`;
|
2017-10-18 04:41:17 +00:00
|
|
|
|
2018-02-01 15:01:49 +00:00
|
|
|
// Docker
|
2018-01-29 11:37:54 +00:00
|
|
|
|
2018-02-13 21:40:02 +00:00
|
|
|
/**
|
2019-01-09 09:02:56 +00:00
|
|
|
* Builds the database image and runs a container. It only rebuilds the
|
|
|
|
* image when fixtures have been modified or when the day on which the
|
|
|
|
* image was built is different to today. Some workarounds have been used
|
|
|
|
* to avoid a bug with OverlayFS driver on MacOS.
|
2018-02-13 21:40:02 +00:00
|
|
|
*/
|
2019-01-09 09:02:56 +00:00
|
|
|
async function docker() {
|
2018-02-09 07:40:23 +00:00
|
|
|
try {
|
2019-01-04 12:32:04 +00:00
|
|
|
await execP('docker rm -fv salix-db');
|
2018-02-09 07:40:23 +00:00
|
|
|
} catch (e) {}
|
|
|
|
|
2019-01-09 09:02:56 +00:00
|
|
|
let d = new Date();
|
|
|
|
let pad = v => v < 10 ? '0' + v : v;
|
|
|
|
let stamp = `${d.getFullYear()}-${pad(d.getMonth() + 1)}-${pad(d.getDate())}`;
|
|
|
|
await execP(`docker build --build-arg STAMP=${stamp} -t salix-db ./services/db`);
|
|
|
|
|
2019-01-09 12:04:49 +00:00
|
|
|
let runChown = process.platform != 'linux';
|
2019-01-09 09:02:56 +00:00
|
|
|
await execP(`docker run --env RUN_CHOWN=${runChown} -d --name salix-db -p 3306:3306 salix-db`);
|
|
|
|
if (runChown) await dockerWait();
|
|
|
|
}
|
|
|
|
docker.description = `Builds the database image and runs a container`;
|
2018-02-09 07:40:23 +00:00
|
|
|
|
2018-02-13 21:40:02 +00:00
|
|
|
/**
|
2019-01-09 09:02:56 +00:00
|
|
|
* Does the minium effort to start the database container, if it doesn't exists
|
|
|
|
* calls the 'docker' task, if it is started does nothing. Keep in mind that when
|
2018-02-13 21:40:02 +00:00
|
|
|
* you do not rebuild the docker you may be using an outdated version of it.
|
2018-03-12 08:19:50 +00:00
|
|
|
* See the 'docker' task for more info.
|
2018-02-13 21:40:02 +00:00
|
|
|
*/
|
2019-01-09 09:02:56 +00:00
|
|
|
async function dockerStart() {
|
2018-02-13 21:40:02 +00:00
|
|
|
let state;
|
2018-02-09 07:40:23 +00:00
|
|
|
try {
|
2019-01-04 12:32:04 +00:00
|
|
|
let result = await execP('docker container inspect -f "{{json .State}}" salix-db');
|
2018-02-13 21:40:02 +00:00
|
|
|
state = JSON.parse(result.stdout);
|
2018-02-09 07:40:23 +00:00
|
|
|
} catch (err) {
|
2019-01-09 09:02:56 +00:00
|
|
|
return await docker();
|
2018-02-09 07:40:23 +00:00
|
|
|
}
|
|
|
|
|
2018-02-13 21:40:02 +00:00
|
|
|
switch (state.Status) {
|
2018-02-09 07:40:23 +00:00
|
|
|
case 'running':
|
|
|
|
return;
|
|
|
|
case 'exited':
|
2019-01-04 12:32:04 +00:00
|
|
|
await execP('docker start salix-db');
|
2019-01-09 09:02:56 +00:00
|
|
|
await dockerWait();
|
2019-01-04 12:32:04 +00:00
|
|
|
return;
|
2018-02-09 07:40:23 +00:00
|
|
|
default:
|
2019-01-07 07:41:54 +00:00
|
|
|
throw new Error(`Unknown docker status: ${state.Status}`);
|
2018-02-09 07:40:23 +00:00
|
|
|
}
|
2019-01-09 09:02:56 +00:00
|
|
|
}
|
|
|
|
dockerStart.description = `Starts the database container`;
|
|
|
|
|
|
|
|
function dockerWait() {
|
|
|
|
return new Promise((resolve, reject) => {
|
|
|
|
const mysql = require('mysql2');
|
|
|
|
|
|
|
|
let interval = 100;
|
|
|
|
let elapsedTime = 0;
|
|
|
|
let maxInterval = 30 * 60 * 1000;
|
|
|
|
|
|
|
|
log('Waiting for MySQL init process...');
|
|
|
|
checker();
|
|
|
|
|
|
|
|
async function checker() {
|
|
|
|
elapsedTime += interval;
|
|
|
|
let state;
|
|
|
|
|
|
|
|
try {
|
|
|
|
let result = await execP('docker container inspect -f "{{json .State}}" salix-db');
|
|
|
|
state = JSON.parse(result.stdout);
|
|
|
|
} catch (err) {
|
|
|
|
return reject(new Error(err.message));
|
|
|
|
}
|
|
|
|
|
|
|
|
if (state.Status === 'exited')
|
|
|
|
return reject(new Error('Docker exited, please see the docker logs for more info'));
|
|
|
|
|
|
|
|
let conn = mysql.createConnection({
|
|
|
|
host: 'localhost',
|
|
|
|
user: 'root',
|
|
|
|
password: 'root'
|
|
|
|
});
|
|
|
|
conn.on('error', () => {});
|
|
|
|
conn.connect(err => {
|
|
|
|
conn.destroy();
|
|
|
|
if (!err) return resolve();
|
|
|
|
|
|
|
|
if (elapsedTime >= maxInterval)
|
|
|
|
reject(new Error(`MySQL not initialized whithin ${elapsedTime} secs`));
|
|
|
|
else
|
|
|
|
setTimeout(checker, interval);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
dockerWait.description = `Waits until database service is ready`;
|
|
|
|
|
2018-02-09 07:40:23 +00:00
|
|
|
// Helpers
|
2018-02-01 11:52:58 +00:00
|
|
|
|
2018-02-13 21:40:02 +00:00
|
|
|
/**
|
|
|
|
* Promisified version of exec().
|
|
|
|
*
|
|
|
|
* @param {String} command The exec command
|
|
|
|
* @return {Promise} The promise
|
|
|
|
*/
|
2018-02-09 07:40:23 +00:00
|
|
|
function execP(command) {
|
|
|
|
return new Promise((resolve, reject) => {
|
|
|
|
exec(command, (err, stdout, stderr) => {
|
|
|
|
if (err)
|
|
|
|
reject(err);
|
2018-12-20 13:37:29 +00:00
|
|
|
else {
|
2018-02-09 07:40:23 +00:00
|
|
|
resolve({
|
|
|
|
stdout: stdout,
|
|
|
|
stderr: stderr
|
|
|
|
});
|
2018-12-20 13:37:29 +00:00
|
|
|
}
|
2018-02-09 07:40:23 +00:00
|
|
|
});
|
2018-02-01 11:52:58 +00:00
|
|
|
});
|
2018-02-09 07:40:23 +00:00
|
|
|
}
|
2018-02-01 11:52:58 +00:00
|
|
|
|
2019-01-09 09:02:56 +00:00
|
|
|
module.exports = {
|
|
|
|
default: defaultTask,
|
|
|
|
front,
|
|
|
|
back,
|
|
|
|
backOnly,
|
2019-01-24 11:01:35 +00:00
|
|
|
backendUnitTest,
|
|
|
|
dockerAndBackTest,
|
2019-01-21 16:01:01 +00:00
|
|
|
backTest,
|
2019-01-09 09:02:56 +00:00
|
|
|
e2eOnly,
|
|
|
|
e2e,
|
|
|
|
smokesOnly,
|
|
|
|
smokes,
|
2019-01-09 09:05:18 +00:00
|
|
|
install,
|
2019-01-09 14:41:15 +00:00
|
|
|
i,
|
2019-01-09 09:02:56 +00:00
|
|
|
build,
|
2019-01-26 01:30:46 +00:00
|
|
|
clean,
|
2019-01-09 09:02:56 +00:00
|
|
|
webpack,
|
|
|
|
webpackDevServer,
|
|
|
|
locales,
|
|
|
|
routes,
|
|
|
|
localesRoutes,
|
|
|
|
watch,
|
|
|
|
docker,
|
|
|
|
dockerStart,
|
|
|
|
dockerWait
|
|
|
|
};
|