create-presolve 0.1.0-alpha.7 → 0.1.0-alpha.8

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.
@@ -50,13 +50,14 @@ function template(name) {
50
50
  deploy: "presolve deploy cloudflare",
51
51
  "deploy:prepare": "presolve deploy cloudflare --prepare",
52
52
  },
53
- dependencies: { "@presolve/core": "0.1.0-alpha.7" },
53
+ dependencies: { "@presolve/core": "0.1.0-alpha.8" },
54
54
  devDependencies: {
55
- "@presolve/cli": "0.1.0-alpha.7",
55
+ "@presolve/cli": "0.1.0-alpha.8",
56
56
  "typescript": "npm:typescript@^7.0.2",
57
57
  "wrangler": "^4.0.0",
58
58
  },
59
59
  }, null, 2)}\n`,
60
+ "pnpm-workspace.yaml": "allowBuilds:\n esbuild: true\n workerd: true\n",
60
61
  ".gitignore": "node_modules/\ndist/\n.presolve/\n.dev.vars\n.env*\n",
61
62
  "README.md": `# ${name}\n\nA Presolve application.\n\n## Development\n\n\`pnpm dev\` builds and serves compiler-published routes.\n\n\`pnpm build\` emits immutable artifacts in \`dist/\`.\n\n\`pnpm deploy:prepare\` validates a Cloudflare Workers Static Assets deployment without uploading.\n\n\`pnpm deploy\` deploys the prepared compiler artifact inventory through Wrangler.\n\nVS Code will use the TypeScript configuration in this project. Install the **Presolve** extension for compiler-language tooling as it becomes available during the alpha.\n`,
62
63
  "tsconfig.json": `${JSON.stringify({
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-presolve",
3
- "version": "0.1.0-alpha.7",
3
+ "version": "0.1.0-alpha.8",
4
4
  "description": "Create a Presolve application.",
5
5
  "license": "MIT OR Apache-2.0",
6
6
  "repository": {