create-cloesce 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,3 +1,7 @@
1
1
  # Create Cloesce App
2
2
 
3
- Creates a Cloesce application from a template.
3
+ Creates a Cloesce application from a basic template.
4
+
5
+ ## Cloesce
6
+
7
+ https://cloesce.pages.dev
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "create-cloesce",
3
3
  "description": "Create Cloesce App",
4
- "version": "0.0.4",
4
+ "version": "0.0.6",
5
5
  "author": "Ben Schreiber <bpschreiber2003@gmail.com>",
6
6
  "repository": {
7
7
  "url": "https://github.com/bens-schreiber/create-cloesce-app"
@@ -26,5 +26,5 @@
26
26
  "keywords": [],
27
27
  "author": "",
28
28
  "license": "ISC",
29
- "type": "commonjs"
29
+ "type": "module"
30
30
  }
@@ -0,0 +1,6 @@
1
+ import { defineConfig } from "vitest/config";
2
+ import tsconfigPaths from "vite-tsconfig-paths";
3
+
4
+ export default defineConfig({
5
+ plugins: [tsconfigPaths()]
6
+ });