@lytical/app 1.0.12 → 1.0.13

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +6 -6
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -20,6 +20,7 @@ after installing, configure your `tsconfig.json` file to enable decorators.
20
20
 
21
21
  ```json
22
22
  // tsconfig.json
23
+
23
24
  {
24
25
  "compilerOptions": {
25
26
  "experimentalDecorators": true
@@ -30,16 +31,15 @@ after installing, configure your `tsconfig.json` file to enable decorators.
30
31
  if this is a new project, we recommended the following project structure:
31
32
 
32
33
  ```
33
- project
34
- |- dist
35
- |- src
36
- | |- middleware
34
+ project\
35
+ |- src\
36
+ | |- middleware\
37
37
  | | |- my-middleware.ts
38
38
  | | |- ...
39
- | |- routes
39
+ | |- routes\
40
40
  | | |- my-route.ts
41
41
  | | |- ...
42
- | |- services
42
+ | |- services\
43
43
  | | |- my-service.ts
44
44
  | | |- ...
45
45
  | |- index.ts
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lytical/app",
3
- "version": "1.0.12",
3
+ "version": "1.0.13",
4
4
  "description": "a typescript api server library built for your express project, with dependency injection support and auto router registration",
5
5
  "main": "index.js",
6
6
  "private": false,
@@ -33,7 +33,7 @@
33
33
  },
34
34
  "license": "ISC",
35
35
  "peerDependencies": {
36
- "@lytical/ioc": "^1.0.5",
36
+ "@lytical/ioc": "^1.0.6",
37
37
  "express": "^5.2.1"
38
38
  },
39
39
  "devDependencies": {