ras-stack 0.40.0 → 0.41.1

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
@@ -90,10 +90,10 @@ Start with the narrowest public entrypoint that owns the repeated mechanic:
90
90
  To start from the production reference instead of assembling entrypoints individually:
91
91
 
92
92
  ```sh
93
- pnpm dlx ras-stack create my-app
93
+ pnpm create ras-app my-app
94
94
  ```
95
95
 
96
- The scaffold includes Better Auth, checked-in migrations, durable uploads, SMTP flows, a transactional realtime outbox, production health/lifecycle behavior, and its tests. It remains ordinary application code rather than a second framework API.
96
+ The `create-ras-app` command delegates to the same scaffold implementation available through `pnpm dlx ras-stack create my-app`. The scaffold includes Better Auth, checked-in migrations, durable uploads, SMTP flows, a transactional realtime outbox, production health/lifecycle behavior, and its tests. It remains ordinary application code rather than a second framework API.
97
97
 
98
98
  ## Dokploy previews 🚀
99
99
 
package/dist/cli.js CHANGED
File without changes
@@ -7,6 +7,7 @@ allowBuilds:
7
7
  protobufjs: true
8
8
  minimumReleaseAge: 10080
9
9
  minimumReleaseAgeExclude:
10
+ - create-ras-app
10
11
  - ras-stack
11
12
  - better-auth
12
13
  - '@better-auth/*'
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ras-stack",
3
- "version": "0.40.0",
3
+ "version": "0.41.1",
4
4
  "description": "Composable full-stack primitives shared across Richard Solomou's applications.",
5
5
  "keywords": [
6
6
  "authentication",
@@ -63,6 +63,10 @@
63
63
  "types": "./dist/conformance/index.d.ts",
64
64
  "default": "./dist/conformance/index.js"
65
65
  },
66
+ "./create": {
67
+ "types": "./dist/create/index.d.ts",
68
+ "default": "./dist/create/index.js"
69
+ },
66
70
  "./policy": {
67
71
  "types": "./dist/policy/index.d.ts",
68
72
  "default": "./dist/policy/index.js"
@@ -144,19 +148,6 @@
144
148
  "publishConfig": {
145
149
  "access": "public"
146
150
  },
147
- "scripts": {
148
- "build": "rm -rf dist && tsc -p tsconfig.build.json",
149
- "config:check": "tsc -p test/config-consumer/tsconfig.json && tsc -p test/config-consumer/tsconfig-bundler.json && tsc -p test/config-consumer/tsconfig-node-bundler.json && tsc -p test/config-consumer/tsconfig-library.json && oxlint --config config/oxlint/application.json --print-config > /dev/null && oxlint --config config/oxlint/tanstack.json --print-config > /dev/null",
150
- "typecheck": "tsc --noEmit",
151
- "lint": "oxlint --type-aware --deny-warnings .",
152
- "format": "oxfmt --write .",
153
- "format:check": "oxfmt --check .",
154
- "test": "vitest run --config vitest.config.ts",
155
- "package:check": "node scripts/checkPackedPackage.mjs",
156
- "peer:floor": "node scripts/checkPeerFloor.mjs",
157
- "check": "pnpm format:check && pnpm lint && pnpm config:check && pnpm typecheck && pnpm test && pnpm build && pnpm package:check && pnpm --filter @ras-stack/example-full-stack check && node dist/cli.js policy check",
158
- "version-packages": "changeset version"
159
- },
160
151
  "dependencies": {
161
152
  "@inquirer/confirm": "^6.1.1",
162
153
  "@inquirer/select": "^5.2.1",
@@ -266,5 +257,17 @@
266
257
  "engines": {
267
258
  "node": ">=24 <25"
268
259
  },
269
- "packageManager": "pnpm@11.15.0"
270
- }
260
+ "scripts": {
261
+ "build": "rm -rf dist && tsc -p tsconfig.build.json",
262
+ "config:check": "tsc -p test/config-consumer/tsconfig.json && tsc -p test/config-consumer/tsconfig-bundler.json && tsc -p test/config-consumer/tsconfig-node-bundler.json && tsc -p test/config-consumer/tsconfig-library.json && oxlint --config config/oxlint/application.json --print-config > /dev/null && oxlint --config config/oxlint/tanstack.json --print-config > /dev/null",
263
+ "typecheck": "tsc --noEmit",
264
+ "lint": "oxlint --type-aware --deny-warnings .",
265
+ "format": "oxfmt --write .",
266
+ "format:check": "oxfmt --check .",
267
+ "test": "vitest run --config vitest.config.ts",
268
+ "package:check": "node scripts/checkPackedPackage.mjs",
269
+ "peer:floor": "node scripts/checkPeerFloor.mjs",
270
+ "check": "pnpm format:check && pnpm lint && pnpm config:check && pnpm typecheck && pnpm test && pnpm build && pnpm package:check && pnpm --filter @ras-stack/example-full-stack check && node dist/cli.js policy check",
271
+ "version-packages": "changeset version"
272
+ }
273
+ }