create-lithia 1.0.0-canary.10 → 1.0.0-canary.12

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/CHANGELOG.md CHANGED
@@ -1,5 +1,17 @@
1
1
  # create-lithia
2
2
 
3
+ ## 1.0.0-canary.12
4
+
5
+ ### Patch Changes
6
+
7
+ - 059a95a: Fixed middleware `next` function call
8
+
9
+ ## 1.0.0-canary.11
10
+
11
+ ### Patch Changes
12
+
13
+ - 01467e0: Fixed index from `create-lithia` CLI
14
+
3
15
  ## 1.0.0-canary.10
4
16
 
5
17
  ### Patch Changes
package/dist/index.mjs CHANGED
File without changes
package/package.json CHANGED
@@ -1,10 +1,10 @@
1
1
  {
2
2
  "name": "create-lithia",
3
- "version": "1.0.0-canary.10",
3
+ "version": "1.0.0-canary.12",
4
4
  "private": false,
5
5
  "type": "module",
6
6
  "bin": {
7
- "create-lithia": "dist/index.mts"
7
+ "create-lithia": "dist/index.mjs"
8
8
  },
9
9
  "author": "Lucas Arch <luketsx@icloud.com>",
10
10
  "homepage": "https://lithiajs.com",
@@ -32,7 +32,6 @@
32
32
  "url": "https://github.com/lithia-framework/lithia/issues"
33
33
  },
34
34
  "scripts": {
35
- "build": "tsc -p tsconfig.build.json",
36
- "cli": "tsx ./src/index.mts"
35
+ "build": "tsc -p tsconfig.build.json"
37
36
  }
38
37
  }