@atproto/dev-env 0.5.6 → 0.5.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.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,23 @@
1
1
  # @atproto/dev-env
2
2
 
3
+ ## 0.5.8
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [[`0d62d5b`](https://github.com/bluesky-social/atproto/commit/0d62d5b4c6086189793d3a1e0c51ecd764df6a83), [`77a3861`](https://github.com/bluesky-social/atproto/commit/77a3861561691ea51a94f96de86069c7875772da), [`16c8a94`](https://github.com/bluesky-social/atproto/commit/16c8a948b71d473568917f33f4d43dbd85b2a599), [`4280e58`](https://github.com/bluesky-social/atproto/commit/4280e585b63b1e53704fee8c68a8347224f74253)]:
8
+ - @atproto/bsky@0.0.239
9
+ - @atproto/api@0.20.10
10
+ - @atproto/pds@0.5.2
11
+
12
+ ## 0.5.7
13
+
14
+ ### Patch Changes
15
+
16
+ - Updated dependencies [[`7b8ca6e`](https://github.com/bluesky-social/atproto/commit/7b8ca6e0aace79cca38e880429317fde8268ba50), [`41a561e`](https://github.com/bluesky-social/atproto/commit/41a561e80a6c906e9a6ec8e29f8ea970ce9fe2e9), [`6c63f7d`](https://github.com/bluesky-social/atproto/commit/6c63f7dca6d37c22a8dd5d579ad6a72e532fc372)]:
17
+ - @atproto/bsky@0.0.238
18
+ - @atproto/pds@0.5.2
19
+ - @atproto/api@0.20.9
20
+
3
21
  ## 0.5.6
4
22
 
5
23
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atproto/dev-env",
3
- "version": "0.5.6",
3
+ "version": "0.5.8",
4
4
  "license": "MIT",
5
5
  "description": "Local development environment helper for atproto development",
6
6
  "keywords": [
@@ -25,18 +25,18 @@
25
25
  "multiformats": "^13.0.0",
26
26
  "uint8arrays": "^5.0.0",
27
27
  "undici": "^6.14.1",
28
- "@atproto/api": "^0.20.8",
29
- "@atproto/bsync": "^0.0.27",
30
- "@atproto/crypto": "^0.5.0",
31
- "@atproto/bsky": "^0.0.237",
28
+ "@atproto/api": "^0.20.10",
32
29
  "@atproto/common-web": "^0.5.0",
30
+ "@atproto/bsky": "^0.0.239",
31
+ "@atproto/bsync": "^0.0.27",
33
32
  "@atproto/identity": "^0.5.0",
33
+ "@atproto/crypto": "^0.5.0",
34
34
  "@atproto/lex": "^0.1.3",
35
+ "@atproto/ozone": "^0.2.1",
35
36
  "@atproto/lexicon": "^0.7.1",
36
- "@atproto/pds": "^0.5.1",
37
37
  "@atproto/sync": "^0.3.1",
38
+ "@atproto/pds": "^0.5.2",
38
39
  "@atproto/syntax": "^0.6.1",
39
- "@atproto/ozone": "^0.2.1",
40
40
  "@atproto/xrpc-server": "^0.11.1"
41
41
  },
42
42
  "devDependencies": {
@@ -2,7 +2,7 @@
2
2
  "extends": "../../tsconfig/node.json",
3
3
  "compilerOptions": {
4
4
  "rootDir": "./src",
5
- "outDir": "./dist"
5
+ "outDir": "./dist",
6
6
  },
7
- "include": ["./src"]
7
+ "include": ["./src"],
8
8
  }
package/tsconfig.json CHANGED
@@ -1,4 +1,4 @@
1
1
  {
2
2
  "include": [],
3
- "references": [{ "path": "./tsconfig.build.json" }]
3
+ "references": [{ "path": "./tsconfig.build.json" }],
4
4
  }