jeasx 0.0.4 → 0.0.6

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.
package/README.md CHANGED
@@ -1,4 +1,4 @@
1
- # Jeasx - server side rendering with the ease of JSX
1
+ # jeasx - server side rendering with the ease of JSX
2
2
 
3
3
  This is the `jeasx` core repository.
4
4
 
package/package.json CHANGED
@@ -1,10 +1,11 @@
1
1
  {
2
2
  "name": "jeasx",
3
- "version": "0.0.4",
4
- "description": "Jeasx - server side rendering with the ease of JSX",
3
+ "version": "0.0.6",
4
+ "description": "jeasx - the power of server side rendering with the ease of jsx",
5
5
  "keywords": [
6
6
  "jsx",
7
- "ssr"
7
+ "ssr",
8
+ "node"
8
9
  ],
9
10
  "license": "MIT",
10
11
  "repository": {
@@ -23,7 +24,7 @@
23
24
  "@fastify/accepts": "4.3.0",
24
25
  "@fastify/cookie": "9.2.0",
25
26
  "@fastify/formbody": "7.4.0",
26
- "@fastify/multipart": "8.0.0",
27
+ "@fastify/multipart": "8.1.0",
27
28
  "@fastify/request-context": "5.0.0",
28
29
  "@fastify/static": "6.12.0",
29
30
  "@fastify/url-data": "5.4.0",
@@ -31,7 +32,7 @@
31
32
  "dotenv": "16.3.1",
32
33
  "esbuild": "0.19.11",
33
34
  "fastify": "4.25.2",
34
- "jsx-async-runtime": "0.1.2",
35
+ "jsx-async-runtime": "0.1.3",
35
36
  "pm2": "5.3.0"
36
37
  },
37
38
  "scripts": {
package/tsconfig.json CHANGED
@@ -12,5 +12,6 @@
12
12
  "esModuleInterop": true,
13
13
  "isolatedModules": true,
14
14
  "resolveJsonModule": true
15
- }
15
+ },
16
+ "exclude": ["dist"]
16
17
  }