@bsky.app/sift 0.3.8 → 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 +6 -0
- package/package.json +5 -2
- package/eslint.config.js +0 -4
- package/tsconfig.json +0 -11
- package/vitest.config.ts +0 -13
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,11 @@
|
|
|
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
|
+
|
|
3
9
|
## 0.3.8
|
|
4
10
|
|
|
5
11
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -1,9 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@bsky.app/sift",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.9",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"description": "A little React Native library for building autocompletes.",
|
|
6
|
-
"repository":
|
|
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
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
|
-
})
|