@distilled.cloud/planetscale 0.5.0 → 0.5.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 +1 -0
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -12,6 +12,7 @@ npm install @distilled.cloud/planetscale effect
|
|
|
12
12
|
|
|
13
13
|
```typescript
|
|
14
14
|
import { Effect, Layer } from "effect";
|
|
15
|
+
import * as Stream from "effect/Stream";
|
|
15
16
|
import * as FetchHttpClient from "effect/unstable/http/FetchHttpClient";
|
|
16
17
|
import { listDatabases } from "@distilled.cloud/planetscale/Operations";
|
|
17
18
|
import { CredentialsFromEnv, Credentials } from "@distilled.cloud/planetscale";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@distilled.cloud/planetscale",
|
|
3
|
-
"version": "0.5.
|
|
3
|
+
"version": "0.5.1",
|
|
4
4
|
"repository": {
|
|
5
5
|
"type": "git",
|
|
6
6
|
"url": "https://github.com/alchemy-run/distilled",
|
|
@@ -69,11 +69,11 @@
|
|
|
69
69
|
"test": "bunx vitest run test",
|
|
70
70
|
"publish:npm": "bun run build && bun publish --access public",
|
|
71
71
|
"generate": "bun run scripts/generate.ts && oxlint --fix src && oxfmt --write src && oxfmt --write src",
|
|
72
|
-
"specs:fetch": "git submodule update --force --init --recursive specs/distilled-spec-planetscale && git -C specs/distilled-spec-planetscale checkout -- .",
|
|
72
|
+
"specs:fetch": "git submodule update --force --init --recursive --depth=1 specs/distilled-spec-planetscale && git -C specs/distilled-spec-planetscale checkout -- .",
|
|
73
73
|
"specs:update": "git -C specs/distilled-spec-planetscale fetch && git -C specs/distilled-spec-planetscale checkout main && git -C specs/distilled-spec-planetscale pull"
|
|
74
74
|
},
|
|
75
75
|
"dependencies": {
|
|
76
|
-
"@distilled.cloud/core": "0.5.
|
|
76
|
+
"@distilled.cloud/core": "0.5.1",
|
|
77
77
|
"effect": "4.0.0-beta.30"
|
|
78
78
|
},
|
|
79
79
|
"devDependencies": {
|