chore: update temp change

This commit is contained in:
ChiragAgg5k
2025-04-17 12:50:57 +05:30
parent 0963ae161a
commit 5323e2e672
3 changed files with 12 additions and 9 deletions

8
pnpm-lock.yaml generated
View File

@@ -35,7 +35,7 @@ importers:
version: 0.26.0 version: 0.26.0
'@appwrite.io/repo': '@appwrite.io/repo':
specifier: github:appwrite/appwrite#feat-group specifier: github:appwrite/appwrite#feat-group
version: https://codeload.github.com/appwrite/appwrite/tar.gz/3ed87a8ab9227f9e13724b41b116d8a70a7adb31 version: https://codeload.github.com/appwrite/appwrite/tar.gz/0f8e1db0447480735d083f2da2494141a99ce10b
'@eslint/compat': '@eslint/compat':
specifier: ^1.2.7 specifier: ^1.2.7
version: 1.2.7(eslint@9.22.0(jiti@2.4.2)) version: 1.2.7(eslint@9.22.0(jiti@2.4.2))
@@ -260,8 +260,8 @@ packages:
'@appwrite.io/pink@0.26.0': '@appwrite.io/pink@0.26.0':
resolution: {integrity: sha512-iPeGE56pauzxuIXt15ZswjKCErwp3QdF3XOlJZfyYY7J2nirra85JNTL+3lWuFIf8yYWL7NbvCjhf8ig79TgwA==} resolution: {integrity: sha512-iPeGE56pauzxuIXt15ZswjKCErwp3QdF3XOlJZfyYY7J2nirra85JNTL+3lWuFIf8yYWL7NbvCjhf8ig79TgwA==}
'@appwrite.io/repo@https://codeload.github.com/appwrite/appwrite/tar.gz/3ed87a8ab9227f9e13724b41b116d8a70a7adb31': '@appwrite.io/repo@https://codeload.github.com/appwrite/appwrite/tar.gz/0f8e1db0447480735d083f2da2494141a99ce10b':
resolution: {tarball: https://codeload.github.com/appwrite/appwrite/tar.gz/3ed87a8ab9227f9e13724b41b116d8a70a7adb31} resolution: {tarball: https://codeload.github.com/appwrite/appwrite/tar.gz/0f8e1db0447480735d083f2da2494141a99ce10b}
version: 0.0.0 version: 0.0.0
'@babel/runtime@7.26.10': '@babel/runtime@7.26.10':
@@ -3931,7 +3931,7 @@ snapshots:
normalize.css: 8.0.1 normalize.css: 8.0.1
the-new-css-reset: 1.11.3 the-new-css-reset: 1.11.3
'@appwrite.io/repo@https://codeload.github.com/appwrite/appwrite/tar.gz/3ed87a8ab9227f9e13724b41b116d8a70a7adb31': {} '@appwrite.io/repo@https://codeload.github.com/appwrite/appwrite/tar.gz/0f8e1db0447480735d083f2da2494141a99ce10b': {}
'@babel/runtime@7.26.10': '@babel/runtime@7.26.10':
dependencies: dependencies:

View File

@@ -263,7 +263,7 @@ export async function getService(
platform === Platform.ClientAndroidKotlin || platform === Platform.ServerKotlin; platform === Platform.ClientAndroidKotlin || platform === Platform.ServerKotlin;
const isAndroid = isAndroidJava || isAndroidKotlin; const isAndroid = isAndroidJava || isAndroidKotlin;
const isAndroidServer = platform === Platform.ServerJava || platform === Platform.ServerKotlin; const isAndroidServer = platform === Platform.ServerJava || platform === Platform.ServerKotlin;
const api = await getApi('latest', platform); const api = await getApi(version, platform);
const data: Awaited<ReturnType<typeof getService>> = { const data: Awaited<ReturnType<typeof getService>> = {
service: { service: {

View File

@@ -1,9 +1,9 @@
import dynamicImport from 'vite-plugin-dynamic-import';
import { sveltekit } from '@sveltejs/kit/vite';
import { defineConfig } from 'vitest/config';
import { ViteImageOptimizer } from 'vite-plugin-image-optimizer';
import { enhancedImages } from '@sveltejs/enhanced-img'; import { enhancedImages } from '@sveltejs/enhanced-img';
import { sveltekit } from '@sveltejs/kit/vite';
import dynamicImport from 'vite-plugin-dynamic-import';
import { ViteImageOptimizer } from 'vite-plugin-image-optimizer';
import manifestSRI from 'vite-plugin-manifest-sri'; import manifestSRI from 'vite-plugin-manifest-sri';
import { defineConfig } from 'vitest/config';
export default defineConfig({ export default defineConfig({
plugins: [ plugins: [
@@ -40,5 +40,8 @@ export default defineConfig({
}, },
test: { test: {
include: ['src/**/*.{test,spec}.{js,ts}'] include: ['src/**/*.{test,spec}.{js,ts}']
},
server: {
allowedHosts: ['c009-223-233-66-244.ngrok-free.app']
} }
}); });