-
-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #23 from fabrix-app/v1.5
[feat] archetype
- Loading branch information
Showing
8 changed files
with
416 additions
and
18 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
import * as pkg from '../package.json' | ||
import * as config from './config' | ||
import * as api from './api' | ||
import * as config from './config/index' | ||
import * as pkg from '../package.json' | ||
import * as api from './api/index' | ||
|
||
export { | ||
pkg, | ||
config, | ||
pkg, | ||
api | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,12 @@ | ||
/** | ||
* @module server | ||
* | ||
* Fabrix framework. | ||
*/ | ||
|
||
import { FabrixApp } from '@fabrix/fabrix' | ||
import * as App from '.' | ||
|
||
import * as app from '.' | ||
const server = new FabrixApp(app) | ||
const app = new FabrixApp(App) | ||
|
||
export default server.start() | ||
app.start().catch(app.stop) |
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
--reporter spec | ||
--recursive | ||
--full-trace | ||
--no-exit | ||
--check-leaks | ||
--globals app | ||
--timeout 5000 | ||
--timeout 1200000 | ||
--globals app,shopID,shopProducts,__core-js_shared__,__coverage__,$$bole | ||
|
||
test/setup.js | ||
test/**/*.test.js | ||
test/index.js test/**/*.test.js |
Oops, something went wrong.