Compare commits

..

4 Commits

Author SHA1 Message Date
Guido D'Orsi
225280d37a fix: fix type error and tsconfig 2025-01-12 23:45:40 +01:00
Guido D'Orsi
c735ab6b95 Merge pull request #1195 from garden-co/changeset-release/main
Version Packages
2025-01-12 23:37:50 +01:00
github-actions[bot]
d47e59783f Version Packages 2025-01-12 22:32:21 +00:00
Guido D'Orsi
8a390d255d fix: fix account type registration using the sources for the TS definitions 2025-01-12 23:31:15 +01:00
11 changed files with 40 additions and 13 deletions

View File

@@ -1,5 +1,13 @@
# chat-rn-clerk
## 1.0.48
### Patch Changes
- Updated dependencies [8a390d2]
- jazz-react-native@0.9.6
- jazz-react-native-auth-clerk@0.9.6
## 1.0.47
### Patch Changes

View File

@@ -1,7 +1,7 @@
{
"name": "chat-rn-clerk",
"main": "index.js",
"version": "1.0.47",
"version": "1.0.48",
"scripts": {
"build": "expo export -p ios",
"start": "expo start",

View File

@@ -1,5 +1,12 @@
# chat-rn
## 1.0.45
### Patch Changes
- Updated dependencies [8a390d2]
- jazz-react-native@0.9.6
## 1.0.44
### Patch Changes

View File

@@ -1,6 +1,6 @@
{
"name": "chat-rn",
"version": "1.0.44",
"version": "1.0.45",
"main": "index.js",
"scripts": {
"build": "expo export -p ios",

View File

@@ -1,5 +1,12 @@
# jazz-react-native-auth-clerk
## 0.9.6
### Patch Changes
- Updated dependencies [8a390d2]
- jazz-react-native@0.9.6
## 0.9.5
### Patch Changes

View File

@@ -1,6 +1,6 @@
{
"name": "jazz-react-native-auth-clerk",
"version": "0.9.5",
"version": "0.9.6",
"type": "module",
"main": "dist/index.js",
"types": "src/index.ts",

View File

@@ -1,13 +1,13 @@
{
"compilerOptions": {
"lib": ["ESNext", "DOM"],
"lib": ["ESNext"],
"module": "esnext",
"target": "ES2020",
"target": "ESNext",
"moduleResolution": "bundler",
"moduleDetection": "force",
"strict": true,
"skipLibCheck": true,
"jsx": "react",
"jsx": "react-native",
"forceConsistentCasingInFileNames": true,
"noUncheckedIndexedAccess": true,
"esModuleInterop": true

View File

@@ -1,5 +1,11 @@
# jazz-browser
## 0.9.6
### Patch Changes
- 8a390d2: Fix the account type registration using the sources for the typescript definitions
## 0.9.5
### Patch Changes

View File

@@ -1,6 +1,6 @@
{
"name": "jazz-react-native",
"version": "0.9.5",
"version": "0.9.6",
"type": "module",
"main": "./dist/index.js",
"module": "./dist/index.js",
@@ -9,17 +9,17 @@
"exports": {
".": {
"react-native": "./dist/index.js",
"types": "./dist/index.d.ts",
"types": "./src/index.ts",
"default": "./dist/index.js"
},
"./crypto": {
"react-native": "./dist/crypto/index.js",
"types": "./dist/crypto/index.d.ts",
"types": "./src/crypto/index.ts",
"default": "./dist/crypto/index.js"
},
"./testing": {
"react-native": "./dist/testing.js",
"types": "./dist/testing.d.ts",
"types": "./src/testing.ts",
"default": "./dist/testing.js"
}
},

View File

@@ -1,6 +1,6 @@
import { JazzContext, JazzContextType } from "jazz-react-core";
import { Account, AccountClass, AuthMethod } from "jazz-tools";
import { useState } from "react";
import React, { useState } from "react";
import { useEffect, useRef } from "react";
import {
BaseReactNativeContextOptions,

View File

@@ -10,8 +10,7 @@
"jsx": "react-native",
"forceConsistentCasingInFileNames": true,
"noUncheckedIndexedAccess": true,
"esModuleInterop": true,
"declaration": true
"esModuleInterop": true
},
"include": ["./src/**/*"]
}