@fedify/postgres 0.4.0-dev.30 → 0.4.0-dev.31

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.
@@ -75,6 +75,7 @@ jobs:
75
75
  --arg commit "${GITHUB_SHA::8}" \
76
76
  '.version = .version + "-dev." + $build + "+" + $commit' \
77
77
  deno.json > deno.json.tmp
78
+ mv deno.json.tmp deno.json
78
79
  jq \
79
80
  --arg build "$GITHUB_RUN_NUMBER" \
80
81
  '.version = .version + "-dev." + $build' \
package/deno.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fedify/postgres",
3
- "version": "0.4.0",
3
+ "version": "0.4.0-dev.31+c73d0d82",
4
4
  "license": "MIT",
5
5
  "exports": {
6
6
  ".": "./mod.ts",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fedify/postgres",
3
- "version": "0.4.0-dev.30",
3
+ "version": "0.4.0-dev.31",
4
4
  "description": "PostgreSQL drivers for Fedify",
5
5
  "keywords": [
6
6
  "fedify",
package/deno.json.tmp DELETED
@@ -1,34 +0,0 @@
1
- {
2
- "name": "@fedify/postgres",
3
- "version": "0.4.0-dev.30+5c54214c",
4
- "license": "MIT",
5
- "exports": {
6
- ".": "./mod.ts",
7
- "./kv": "./src/kv.ts",
8
- "./mq": "./src/mq.ts"
9
- },
10
- "imports": {
11
- "@deno/dnt": "jsr:@deno/dnt@^0.41.3",
12
- "@fedify/fedify": "jsr:@fedify/fedify@1.7.2",
13
- "@logtape/logtape": "jsr:@logtape/logtape@^1.0.0",
14
- "@std/assert": "jsr:@std/assert@^1.0.4",
15
- "@std/async": "jsr:@std/async@^1.0.5",
16
- "postgres": "npm:postgres@^3.4.7",
17
- "tsdown": "npm:tsdown@^0.12.9"
18
- },
19
- "nodeModulesDir": "none",
20
- "unstable": [
21
- "temporal"
22
- ],
23
- "exclude": [
24
- ".github",
25
- ".test-report.xml",
26
- "npm",
27
- "pnpm-lock.yaml"
28
- ],
29
- "tasks": {
30
- "check": "deno fmt --check && deno lint && deno check */*.ts",
31
- "test": "deno test --allow-net --allow-env",
32
- "dnt": "deno run -A dnt.ts"
33
- }
34
- }