File tree Expand file tree Collapse file tree 3 files changed +11
-7
lines changed
Expand file tree Collapse file tree 3 files changed +11
-7
lines changed Original file line number Diff line number Diff line change 1313 },
1414 "version" : " 0.0.0-development" ,
1515 "main" : " dist/create-exposed-app.js" ,
16+ "bin" : {
17+ "create-exposed-app" : " dist/bin/create-exposed-app.js"
18+ },
1619 "scripts" : {
1720 "pre-commit" : " lint-staged && npm run build" ,
1821 "build" : " run-p --print-label build:src build:dts" ,
Original file line number Diff line number Diff line change 1+ #!/usr/bin/env node
2+
3+ import { createApp } from "../create-app/create-app"
4+ import { setupProcess } from "../utils/process"
5+
6+ setupProcess ( )
7+ createApp ( )
Original file line number Diff line number Diff line change 1- #!/usr/bin/env node
2-
3- import { createApp } from "./create-app/create-app"
4- import { setupProcess } from "./utils/process"
5-
6- setupProcess ( )
7- createApp ( )
1+ export { createApp } from "./create-app/create-app"
You can’t perform that action at this time.
0 commit comments