@bsky.app/sift 0.3.7 → 0.3.9

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,17 @@
1
1
  # @bsky.app/sift
2
2
 
3
+ ## 0.3.9
4
+
5
+ ### Patch Changes
6
+
7
+ - [#53](https://github.com/bluesky-social/toolbox/pull/53) [`bc83ab8`](https://github.com/bluesky-social/toolbox/commit/bc83ab8a5e761302eff0b75bb17518ce9b5aa638) Thanks [@estrattonbailey](https://github.com/estrattonbailey)! - Update npmignore to prune some files
8
+
9
+ ## 0.3.8
10
+
11
+ ### Patch Changes
12
+
13
+ - [`585597d`](https://github.com/bluesky-social/toolbox/commit/585597d1d9c14bee8b074e6fd7fed5ed1f277294) Thanks [@mozzius](https://github.com/mozzius)! - Enable provenance via env
14
+
3
15
  ## 0.3.7
4
16
 
5
17
  ### Patch Changes
package/package.json CHANGED
@@ -1,9 +1,12 @@
1
1
  {
2
2
  "name": "@bsky.app/sift",
3
- "version": "0.3.7",
3
+ "version": "0.3.9",
4
4
  "license": "MIT",
5
5
  "description": "A little React Native library for building autocompletes.",
6
- "repository": "https://github.com/bluesky-social/toolbox",
6
+ "repository": {
7
+ "type": "git",
8
+ "url": "https://github.com/bluesky-social/toolbox"
9
+ },
7
10
  "author": "Eric Bailey <git@esb.lol> (https://github.com/estrattonbailey)",
8
11
  "homepage": "https://github.com/bluesky-social/toolbox/tree/main/packages/sift",
9
12
  "main": "build/index.js",
package/eslint.config.js DELETED
@@ -1,4 +0,0 @@
1
- // @generated by expo-module-scripts
2
- const {defineConfig} = require('eslint/config')
3
- const baseConfig = require('expo-module-scripts/eslint.config.base')
4
- module.exports = defineConfig([baseConfig])
package/tsconfig.json DELETED
@@ -1,11 +0,0 @@
1
- // @generated by expo-module-scripts
2
- {
3
- "extends": "expo-module-scripts/tsconfig.base",
4
- "compilerOptions": {
5
- "rootDir": "./src",
6
- "outDir": "./build",
7
- "jsx": "react-jsx"
8
- },
9
- "include": ["./src"],
10
- "exclude": ["**/__mocks__/*", "**/__tests__/*", "**/__rsc_tests__/*"]
11
- }
package/vitest.config.ts DELETED
@@ -1,13 +0,0 @@
1
- import {defineConfig} from 'vitest/config'
2
-
3
- export default defineConfig({
4
- test: {
5
- include: ['src/__tests__/**/*.test.ts'],
6
- alias: {
7
- 'react-native': new URL(
8
- 'src/__tests__/__mocks__/react-native.ts',
9
- import.meta.url,
10
- ).pathname,
11
- },
12
- },
13
- })