UNPKG
packsuit
Version:
latest (1.0.2-beta)
1.0.2-beta
1.0.1-beta
1.0.0
web pack
github.com/packsuit/packsuit
packsuit/packsuit
packsuit
/
lib
/
dir.js
13 lines
(10 loc)
•
260 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
const
path =
require
(
'path'
);
const
DIRS
= {
'cache'
:
'.cache'
,
'build-config'
:
'buildconfig.json'
,
'asset-cache'
:
'.asset_cache.json'
, }
function
getDir
(
root, name
) {
return
path.
resolve
(root,
DIRS
[name]); }
module
.
exports
= { getDir };