create-remix-game 1.0.2 → 1.0.3

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/dist/scaffold.js CHANGED
@@ -46,7 +46,7 @@ async function processTemplates(targetPath, config) {
46
46
  .replace(/\{\{PACKAGE_MANAGER\}\}/g, config.packageManager);
47
47
  // If using local deps and this is package.json, replace version with workspace:*
48
48
  if (config.useLocalDeps && templateFile === 'package.json.template') {
49
- processed = processed.replace('"@insidethesim/remix-dev": "^0.1.0"', '"@insidethesim/remix-dev": "workspace:*"');
49
+ processed = processed.replace('"@insidethesim/remix-dev": "^1.0.2"', '"@insidethesim/remix-dev": "workspace:*"');
50
50
  }
51
51
  // Write to actual file (remove .template)
52
52
  const outputPath = filePath.replace('.template', '');
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-remix-game",
3
- "version": "1.0.2",
3
+ "version": "1.0.3",
4
4
  "description": "CLI for scaffolding Remix games",
5
5
  "license": "SEE LICENSE IN LICENSE",
6
6
  "type": "module",
@@ -14,15 +14,6 @@
14
14
  "README.md",
15
15
  "LICENSE"
16
16
  ],
17
- "scripts": {
18
- "dev": "tsc --watch",
19
- "build": "tsc",
20
- "clean": "rm -rf dist",
21
- "typecheck": "tsc --noEmit",
22
- "test": "vitest",
23
- "test:run": "vitest run",
24
- "test:coverage": "vitest run --coverage"
25
- },
26
17
  "repository": {
27
18
  "type": "git",
28
19
  "url": "https://github.com/InsideTheSim/remix-dev"
@@ -40,5 +31,14 @@
40
31
  "@types/node": "^22.18.6",
41
32
  "@types/prompts": "^2.4.9",
42
33
  "typescript": "^5.9.2"
34
+ },
35
+ "scripts": {
36
+ "dev": "tsc --watch",
37
+ "build": "tsc",
38
+ "clean": "rm -rf dist",
39
+ "typecheck": "tsc --noEmit",
40
+ "test": "vitest",
41
+ "test:run": "vitest run",
42
+ "test:coverage": "vitest run --coverage"
43
43
  }
44
- }
44
+ }
@@ -18,7 +18,7 @@
18
18
  "license": "ISC",
19
19
  "devDependencies": {
20
20
  "@farcade/game-sdk": "^0.2",
21
- "@insidethesim/remix-dev": "^0.1.0",
21
+ "@insidethesim/remix-dev": "^1.0.2",
22
22
  "react": "19.2.0",
23
23
  "react-dom": "19.2.0",
24
24
  "typescript": "^5.9.2",