create-moost 0.6.3 → 0.6.4

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-moost",
3
- "version": "0.6.3",
3
+ "version": "0.6.4",
4
4
  "description": "create-moost",
5
5
  "keywords": [
6
6
  "composables",
@@ -46,14 +46,14 @@
46
46
  "@prostojs/rewrite": "^0.2.3",
47
47
  "@wooksjs/event-cli": "^0.7.7",
48
48
  "prompts": "^2.4.2",
49
- "@moostjs/event-cli": "^0.6.3",
50
- "moost": "^0.6.3"
49
+ "@moostjs/event-cli": "^0.6.4",
50
+ "moost": "^0.6.4"
51
51
  },
52
52
  "devDependencies": {
53
53
  "@types/prompts": "^2.4.9",
54
54
  "vite": "^8.0.0",
55
55
  "vitest": "3.2.4",
56
- "@moostjs/vite": "^0.6.3"
56
+ "@moostjs/vite": "^0.6.4"
57
57
  },
58
58
  "scripts": {
59
59
  "pub": "pnpm publish --access public",
@@ -4,10 +4,10 @@
4
4
  "description": "",
5
5
  "type": "module",
6
6
  "scripts": {
7
- "dev": "tsx server.ts",
7
+ "dev": "vite",
8
8
  "build": "vite build",
9
- "start": "node dist/server.js",
10
- "preview": "node dist/server.js",
9
+ "start": "node dist/server/server.js",
10
+ "preview": "node dist/server/server.js",
11
11
  //=IF (oxc)
12
12
  "lint": "oxlint",
13
13
  "format": "oxfmt .",
@@ -33,7 +33,6 @@
33
33
  "oxlint": "^1.49.0",
34
34
  "oxfmt": "^0.34.0",
35
35
  //=END IF
36
- "tsx": "^4.19.0",
37
36
  "typescript": "^5.7.2",
38
37
  "vite": "^8.0.0"
39
38
  }
@@ -3,7 +3,6 @@ import vue from '@vitejs/plugin-vue'
3
3
  import { moostVite } from '@moostjs/vite'
4
4
 
5
5
  export default defineConfig({
6
- appType: 'custom',
7
6
  server: { port: 3000 },
8
7
  plugins: [
9
8
  vue(),
@@ -1,4 +0,0 @@
1
- import { createSSRServer } from '@moostjs/vite/server'
2
-
3
- const app = await createSSRServer()
4
- await app.listen()