UNPKG
@bemedev/core
Version:
latest (0.1.2)
0.1.2
0.1.1
0.1.0
0.0.4
0.0.2
0.0.1
The core library of @bemedev
github.com/chlbri/core
chlbri/core
@bemedev/core
/
lib
/
scripts
/
constants.cjs
14 lines
(11 loc)
•
281 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
'use strict'
;
const
DEFAULT_ROOT
=
'.bemedev'
;
const
JSON
_PATH =
'.bemedev.json'
;
const
config = {
json
:
JSON
_PATH,
root
:
DEFAULT_ROOT
, };
exports
.
DEFAULT_ROOT
=
DEFAULT_ROOT
;
exports
.
JSON_PATH
=
JSON
_PATH;
exports
.
config
= config;
//# sourceMappingURL=constants.cjs.map