UNPKG
create-magner
Version:
latest (0.5.0)
0.5.0
0.4.3
0.4.2
CLI for bootstrapping Magner projects
github.com/code-pilots/magner
code-pilots/magner
create-magner
/
app
/
src
/
main.ts
14 lines
(8 loc)
•
277 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import
{ initMagner }
from
'magner'
;
import
project
from
'configs/index'
;
import
'element-plus/dist/index.css'
;
import
'magner/style'
;
import
'features/all.css'
;
import
{
ENVIRONMENT
}
from
'~/constants'
;
console
.
warn
(
'Environment is:'
,
ENVIRONMENT
);
initMagner
(project);