StackGenVis: Alignment of Data, Algorithms, and Models for Stacking Ensemble Learning Using Performance Metrics https://doi.org/10.1109/TVCG.2020.3030352
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
StackGenVis/frontend/node_modules/base-cli-process/lib/fields/cwd.js

32 lines
633 B

'use strict';
var path = require('path');
var debug = require('../debug');
var utils = require('../utils');
/**
* Set the `--cwd` to use in the current project.
*
* ```sh
* $ app --cwd=foo
* ```
* @name cwd
* @api public
*/
module.exports = function(app) {
var cwds = [app.cwd || process.cwd()];
return function(val, key, config, next) {
debug.field(key, val);
val = path.resolve(val);
if (cwds[cwds.length - 1] !== val) {
app.cwd = val;
var dir = utils.magenta('~/' + utils.homeRelative(val));
utils.timestamp('changing cwd to ' + dir);
cwds.push(val);
}
next();
};
};