@bsky.app/sift 0.3.4 → 0.3.7

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
  # @bsky.app/sift
2
2
 
3
+ ## 0.3.7
4
+
5
+ ### Patch Changes
6
+
7
+ - [`818b97d`](https://github.com/bluesky-social/toolbox/commit/818b97d984bdfccfcf05db2e252b3789c1fa8487) Thanks [@mozzius](https://github.com/mozzius)! - Add --provenance flag to publish
8
+
9
+ ## 0.3.6
10
+
11
+ ### Patch Changes
12
+
13
+ - [#45](https://github.com/bluesky-social/toolbox/pull/45) [`3edc0b3`](https://github.com/bluesky-social/toolbox/commit/3edc0b369f8a563763a240ba829fae20e0cf54e5) Thanks [@mozzius](https://github.com/mozzius)! - Fix trusted publishing
14
+
15
+ ## 0.3.5
16
+
17
+ ### Patch Changes
18
+
19
+ - [#43](https://github.com/bluesky-social/toolbox/pull/43) [`a5feb85`](https://github.com/bluesky-social/toolbox/commit/a5feb85c7eef69385d459d2b0d26a474548ea6db) Thanks [@mozzius](https://github.com/mozzius)! - Enable trusted publishing
20
+
3
21
  ## 0.3.4
4
22
 
5
23
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bsky.app/sift",
3
- "version": "0.3.4",
3
+ "version": "0.3.7",
4
4
  "license": "MIT",
5
5
  "description": "A little React Native library for building autocompletes.",
6
6
  "repository": "https://github.com/bluesky-social/toolbox",
@@ -14,9 +14,8 @@
14
14
  "sift",
15
15
  "Tapper"
16
16
  ],
17
- "dependencies": {},
18
17
  "devDependencies": {
19
- "@types/react": "~19.1.1",
18
+ "@types/react": "~19.2.15",
20
19
  "expo": "^55.0.8",
21
20
  "expo-module-scripts": "^55.0.2",
22
21
  "react-native": "0.82.1",
package/tsconfig.json CHANGED
@@ -2,6 +2,7 @@
2
2
  {
3
3
  "extends": "expo-module-scripts/tsconfig.base",
4
4
  "compilerOptions": {
5
+ "rootDir": "./src",
5
6
  "outDir": "./build",
6
7
  "jsx": "react-jsx"
7
8
  },