-
Notifications
You must be signed in to change notification settings - Fork 4
fix: CI check passes #279
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
fix: CI check passes #279
Changes from 5 commits
Commits
Show all changes
18 commits
Select commit
Hold shift + click to select a range
fa2b321
chore: removed paraglide.
Sahil2004 c814a45
chore: updated pnpm lock file.
Sahil2004 cf6e719
chore: formatting in control panel.
Sahil2004 ca607eb
chore: formatting in blabsy.
Sahil2004 b73f510
chore: formatting in pictique.
Sahil2004 8ad350b
chore: fix checks of pictique.
Sahil2004 54a0508
chore: formatting of pictique.
Sahil2004 85fdf99
fix: chat window useEffect hook
sosweetham 0c63a5e
merge: main
sosweetham ac993ac
fix: update lockfile
sosweetham 3810775
fix: blabsy format
sosweetham cf22525
fix: web3-adapter format
sosweetham a58a257
fix: pictique types
sosweetham 6fe8d70
fix: w3-adapter types
sosweetham 774554e
fix: update control panel css for tailwind 4
sosweetham 15dd224
fix: remove biome from approved builds
sosweetham 2708c9e
fix: fixed pictique's codebase.
Sahil2004 137980b
chore: formatting.
Sahil2004 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,25 +1,20 @@ | ||
import type { StorybookConfig } from '@storybook/sveltekit'; | ||
|
||
import { join, dirname } from "path" | ||
import { join, dirname } from 'path'; | ||
|
||
/** | ||
* This function is used to resolve the absolute path of a package. | ||
* It is needed in projects that use Yarn PnP or are set up within a monorepo. | ||
*/ | ||
* This function is used to resolve the absolute path of a package. | ||
* It is needed in projects that use Yarn PnP or are set up within a monorepo. | ||
*/ | ||
function getAbsolutePath(value: string): any { | ||
return dirname(require.resolve(join(value, 'package.json'))) | ||
return dirname(require.resolve(join(value, 'package.json'))); | ||
} | ||
const config: StorybookConfig = { | ||
"stories": [ | ||
"../src/**/*.mdx", | ||
"../src/**/*.stories.@(js|ts|svelte)" | ||
], | ||
"addons": [ | ||
getAbsolutePath('@storybook/addon-svelte-csf') | ||
], | ||
"framework": { | ||
"name": getAbsolutePath('@storybook/sveltekit'), | ||
"options": {} | ||
} | ||
stories: ['../src/**/*.mdx', '../src/**/*.stories.@(js|ts|svelte)'], | ||
addons: [getAbsolutePath('@storybook/addon-svelte-csf')], | ||
framework: { | ||
name: getAbsolutePath('@storybook/sveltekit'), | ||
options: {} | ||
} | ||
}; | ||
export default config; | ||
export default config; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,15 @@ | ||
import type { Preview } from '@storybook/sveltekit' | ||
import "../src/app.css"; | ||
import type { Preview } from '@storybook/sveltekit'; | ||
import '../src/app.css'; | ||
|
||
const preview: Preview = { | ||
parameters: { | ||
controls: { | ||
matchers: { | ||
color: /(background|color)$/i, | ||
date: /Date$/i, | ||
}, | ||
}, | ||
}, | ||
parameters: { | ||
controls: { | ||
matchers: { | ||
color: /(background|color)$/i, | ||
date: /Date$/i | ||
} | ||
} | ||
} | ||
}; | ||
|
||
export default preview; | ||
export default preview; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,36 +1,35 @@ | ||
@import 'tailwindcss'; | ||
|
||
|
||
@theme { | ||
/* Custom theme */ | ||
--color-primary: #8e52ff; | ||
--color-primary-100: #e8dcff; | ||
--color-primary-200: #d2baff; | ||
--color-primary-300: #bb97ff; | ||
--color-primary-400: #a575ff; | ||
--color-primary-500: #8e52ff; | ||
/* Custom theme */ | ||
--color-primary: #8e52ff; | ||
--color-primary-100: #e8dcff; | ||
--color-primary-200: #d2baff; | ||
--color-primary-300: #bb97ff; | ||
--color-primary-400: #a575ff; | ||
--color-primary-500: #8e52ff; | ||
|
||
--color-secondary: #73efd5; | ||
--color-secondary-100: #e3fcf7; | ||
--color-secondary-200: #c7f9ee; | ||
--color-secondary-300: #abf6e6; | ||
--color-secondary-400: #8ff2dd; | ||
--color-secondary-500: #73efd5; | ||
--color-secondary: #73efd5; | ||
--color-secondary-100: #e3fcf7; | ||
--color-secondary-200: #c7f9ee; | ||
--color-secondary-300: #abf6e6; | ||
--color-secondary-400: #8ff2dd; | ||
--color-secondary-500: #73efd5; | ||
|
||
--color-white: #ffffff; | ||
--color-gray: #f5f5f5; | ||
--color-white: #ffffff; | ||
--color-gray: #f5f5f5; | ||
|
||
--color-black: #1f1f1f; | ||
--color-black-100: #d2d2d2; | ||
--color-black-300: #a5a5a5; | ||
--color-black-500: #797979; | ||
--color-black-700: #4c4c4c; | ||
--color-black-900: #1f1f1f; | ||
--color-black: #1f1f1f; | ||
--color-black-100: #d2d2d2; | ||
--color-black-300: #a5a5a5; | ||
--color-black-500: #797979; | ||
--color-black-700: #4c4c4c; | ||
--color-black-900: #1f1f1f; | ||
|
||
--color-danger: #ff5255; | ||
--color-danger-100: #ffdcdd; | ||
--color-danger-200: #ffb1a7; | ||
--color-danger-300: #ff968e; | ||
--color-danger-400: #ff7b77; | ||
--color-danger-500: #ff5255; | ||
} | ||
--color-danger: #ff5255; | ||
--color-danger-100: #ffdcdd; | ||
--color-danger-200: #ffb1a7; | ||
--color-danger-300: #ff968e; | ||
--color-danger-400: #ff7b77; | ||
--color-danger-500: #ff5255; | ||
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
18 changes: 0 additions & 18 deletions
18
infrastructure/control-panel/src/routes/demo/paraglide/+page.svelte
This file was deleted.
Oops, something went wrong.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,7 @@ | ||
import { paraglideVitePlugin } from '@inlang/paraglide-js'; | ||
import tailwindcss from '@tailwindcss/vite'; | ||
import { sveltekit } from '@sveltejs/kit/vite'; | ||
import tailwindcss from '@tailwindcss/vite'; | ||
import { defineConfig } from 'vite'; | ||
|
||
export default defineConfig({ | ||
plugins: [ | ||
tailwindcss(), | ||
sveltekit(), | ||
paraglideVitePlugin({ | ||
project: './project.inlang', | ||
outdir: './src/lib/paraglide' | ||
}) | ||
] | ||
plugins: [tailwindcss(), sveltekit()] | ||
}); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -77,4 +77,4 @@ export type GroupInfo = { | |
id: string; | ||
name: string; | ||
avatar: string; | ||
}; | ||
}; |
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.