replace jest with ava
This commit is contained in:
parent
27cc8b23fe
commit
0347b72305
11775 changed files with 84546 additions and 1440575 deletions
28
node_modules/xdg-basedir/index.js
generated
vendored
Normal file
28
node_modules/xdg-basedir/index.js
generated
vendored
Normal file
|
|
@ -0,0 +1,28 @@
|
|||
'use strict';
|
||||
const os = require('os');
|
||||
const path = require('path');
|
||||
|
||||
const homeDirectory = os.homedir();
|
||||
const {env} = process;
|
||||
|
||||
exports.data = env.XDG_DATA_HOME ||
|
||||
(homeDirectory ? path.join(homeDirectory, '.local', 'share') : undefined);
|
||||
|
||||
exports.config = env.XDG_CONFIG_HOME ||
|
||||
(homeDirectory ? path.join(homeDirectory, '.config') : undefined);
|
||||
|
||||
exports.cache = env.XDG_CACHE_HOME || (homeDirectory ? path.join(homeDirectory, '.cache') : undefined);
|
||||
|
||||
exports.runtime = env.XDG_RUNTIME_DIR || undefined;
|
||||
|
||||
exports.dataDirs = (env.XDG_DATA_DIRS || '/usr/local/share/:/usr/share/').split(':');
|
||||
|
||||
if (exports.data) {
|
||||
exports.dataDirs.unshift(exports.data);
|
||||
}
|
||||
|
||||
exports.configDirs = (env.XDG_CONFIG_DIRS || '/etc/xdg').split(':');
|
||||
|
||||
if (exports.config) {
|
||||
exports.configDirs.unshift(exports.config);
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue