@atproto/lex 0.1.3 → 0.1.4

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.
Files changed (2) hide show
  1. package/CHANGELOG.md +14 -0
  2. package/package.json +8 -8
package/CHANGELOG.md CHANGED
@@ -1,5 +1,19 @@
1
1
  # @atproto/lex
2
2
 
3
+ ## 0.1.4
4
+
5
+ ### Patch Changes
6
+
7
+ - [#4967](https://github.com/bluesky-social/atproto/pull/4967) [`9fc720c`](https://github.com/bluesky-social/atproto/commit/9fc720ce75f3ee88a5e48a9be919b07c7647f6f5) Thanks [@matthieusieben](https://github.com/matthieusieben)! - Use TypeScript 7 to build package
8
+
9
+ - Updated dependencies [[`9fc720c`](https://github.com/bluesky-social/atproto/commit/9fc720ce75f3ee88a5e48a9be919b07c7647f6f5)]:
10
+ - @atproto/lex-installer@0.1.1
11
+ - @atproto/lex-builder@0.1.3
12
+ - @atproto/lex-client@0.1.4
13
+ - @atproto/lex-schema@0.1.4
14
+ - @atproto/lex-data@0.1.2
15
+ - @atproto/lex-json@0.1.1
16
+
3
17
  ## 0.1.3
4
18
 
5
19
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atproto/lex",
3
- "version": "0.1.3",
3
+ "version": "0.1.4",
4
4
  "engines": {
5
5
  "node": ">=22"
6
6
  },
@@ -37,12 +37,12 @@
37
37
  "dependencies": {
38
38
  "tslib": "^2.8.1",
39
39
  "yargs": "^18.0.0",
40
- "@atproto/lex-builder": "^0.1.2",
41
- "@atproto/lex-client": "^0.1.3",
42
- "@atproto/lex-data": "^0.1.1",
43
- "@atproto/lex-json": "^0.1.0",
44
- "@atproto/lex-installer": "^0.1.0",
45
- "@atproto/lex-schema": "^0.1.2"
40
+ "@atproto/lex-builder": "^0.1.3",
41
+ "@atproto/lex-json": "^0.1.1",
42
+ "@atproto/lex-client": "^0.1.4",
43
+ "@atproto/lex-data": "^0.1.2",
44
+ "@atproto/lex-installer": "^0.1.1",
45
+ "@atproto/lex-schema": "^0.1.4"
46
46
  },
47
47
  "devDependencies": {
48
48
  "@types/yargs": "^17.0.33",
@@ -51,7 +51,7 @@
51
51
  "scripts": {
52
52
  "codegen": "./bin/lex build --override --indexFile --lexicons ./lexicons --out ./tests/lexicons --lib @atproto/lex-schema",
53
53
  "prebuild": "pnpm run codegen",
54
- "build": "tsc --build tsconfig.build.json",
54
+ "build": "tsgo --build tsconfig.build.json",
55
55
  "test": "vitest run"
56
56
  }
57
57
  }