Skip to content

Commit b3eeb2e

Browse files
committed
[feat] archetype
1 parent 2a1dd69 commit b3eeb2e

37 files changed

+12
-39
lines changed

.npmignore

+2
Original file line numberDiff line numberDiff line change
@@ -7,3 +7,5 @@ test-performance/
77
.istanbul.yml
88
.travis.yml
99
appveyor.yml
10+
.circleci
11+
.idea
File renamed without changes.

lib/archetype/package.json archetype/package.json

-3
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,6 @@
1414
},
1515
"main": "dist/index.js",
1616
"typings": "dist/index.d.ts",
17-
"files": [
18-
"dist"
19-
],
2017
"dependencies": {
2118
"@fabrix/fabrix": "^1.5",
2219
"@fabrix/spool-router": "^1.5"
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
export {}
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

lib/archetype/src/server.ts archetype/src/server.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
*/
66

77
import { FabrixApp } from '@fabrix/fabrix'
8-
import * as App from '.'
8+
import * as App from './'
99

1010
const app = new FabrixApp(App)
1111

File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

lib/archetype/src/config/env/production/index.ts

-1
This file was deleted.

lib/archetype/src/config/env/production/log.ts

-25
This file was deleted.

lib/tsconfig.json

+1-4
Original file line numberDiff line numberDiff line change
@@ -24,11 +24,8 @@
2424
"**/*.ts",
2525
"index.ts"
2626
],
27-
"exclude": [
28-
"archetype/**/*.ts"
29-
],
3027
"paths": {
3128
"@fabrix/*": ["./*"],
32-
"@fabrix/fabrix": ["./Farbix"]
29+
"@fabrix/fabrix": ["./index"]
3330
}
3431
}

package-lock.json

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+6-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@fabrix/fabrix",
3-
"version": "1.5.5",
3+
"version": "1.5.7",
44
"description": "Strongly Typed Modern Web Application Framework for Node.js",
55
"keywords": [
66
"framework",
@@ -20,6 +20,8 @@
2020
"fabrix.ts",
2121
"typescript",
2222
"server",
23+
"cqrs",
24+
"event-sourcing",
2325
"graphql"
2426
],
2527
"scripts": {
@@ -29,15 +31,15 @@
2931
"test": "npm run clean && npm run lint && npm run build && nyc mocha",
3032
"test-performance": "mocha test-performance",
3133
"prepublishOnly": "npm run compile",
32-
"compile": "npm run clean && npm run archetype && npm run build",
34+
"compile": "npm run clean && npm run build",
3335
"clean": "rm -rf dist",
34-
"archetype": "copyfiles -u 1 -a ./lib/archetype/* -a ./lib/archetype/**/* -a ./lib/archetype/**/**/* -a ./lib/archetype/**/**/**/* ./dist/",
3536
"ci": "cd .. && ci"
3637
},
3738
"main": "dist/index",
3839
"typings": "dist/index",
3940
"files": [
40-
"dist"
41+
"dist",
42+
"archetype"
4143
],
4244
"pre-commit": [
4345
"test"

0 commit comments

Comments
 (0)