Skip to content

Commit

Permalink
feat: lift ok
Browse files Browse the repository at this point in the history
  • Loading branch information
刘江虹 committed Sep 29, 2021
1 parent 2e84319 commit ab2a430
Show file tree
Hide file tree
Showing 23 changed files with 7,220 additions and 64 deletions.
11 changes: 0 additions & 11 deletions diudiu/.gitignore

This file was deleted.

12 changes: 0 additions & 12 deletions diudiu/CHANGELOG.md

This file was deleted.

2 changes: 0 additions & 2 deletions diudiu/README.md

This file was deleted.

Empty file removed diudiu/core/index.ts
Empty file.
11 changes: 0 additions & 11 deletions diudiu/package.json

This file was deleted.

5 changes: 5 additions & 0 deletions example/app.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
import Diudiu from 'diudiu-core/core';

const app = Diudiu({appPath: __dirname});


6 changes: 6 additions & 0 deletions example/config/config.base.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
export default app => {
return {
router: 'koa-router',

}
}
8 changes: 8 additions & 0 deletions example/config/config.development.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
export default app => {
return {
router: 'file',
devServer: {
port: 8888
}
}
}
5 changes: 5 additions & 0 deletions example/config/config.production.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
export default app => {
return {
router: 'koa-router'
}
}
5 changes: 5 additions & 0 deletions example/config/config.test.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
export default app => {
return {
router: 'koa-router'
}
}
Loading

0 comments on commit ab2a430

Please sign in to comment.