Gitiles
Code Review
Sign In
git.clicks.codes
/
Clicks
/
Nucleus
/
7e9a54ca07a1a075e5655b5d81f47efec1079045
/
.
/
Installer.js
blob: 3faefefbe03e21b22290afe03385926284e7381e [
file
] [
log
] [
blame
]
let format
;
try
{
format
=
(
await
import
(
"./dist/config/format.js"
)).
default
;
}
catch
(
e
)
{
console
.
log
(
"Please run `yarn` and `yarn build` first."
);
process
.
exit
(
1
);
}
await format
(
true
);
process
.
exit
(
0
);
export
{};