-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
668 changed files
with
3,993 additions
and
64,921 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains 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 |
---|---|---|
@@ -0,0 +1,23 @@ | ||
import { encode } from '@devprotocol/clubs-core' | ||
|
||
export default () => | ||
Check warning on line 3 in .preview/config.ts GitHub Actions / build (20.x)
|
||
encode({ | ||
name: 'Debug', | ||
twitterHandle: '@debug', | ||
description: '', | ||
url: '', | ||
propertyAddress: '', | ||
chainId: 137, | ||
rpcUrl: 'https://polygon-rpc.com/', | ||
adminRolePoints: 50, | ||
plugins: [ | ||
{ | ||
id: 'example-theme', | ||
options: [], | ||
}, | ||
{ | ||
id: 'devprotocol:clubs:plugin:clubs-payments', | ||
options: [], | ||
}, | ||
], | ||
}) |
This file contains 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 |
---|---|---|
@@ -0,0 +1,4 @@ | ||
import theme from './theme' | ||
import thisPlugin from '../src/index' | ||
|
||
export default [theme, thisPlugin] |
This file contains 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 |
---|---|---|
@@ -0,0 +1,13 @@ | ||
import { defineConfig } from 'astro/config' | ||
import clubs from '@devprotocol/clubs-core' | ||
import vue from '@astrojs/vue' | ||
import svelte from '@astrojs/svelte' | ||
import tailwind from '@astrojs/tailwind' | ||
import { config } from 'dotenv' | ||
|
||
config({ path: './.env' }) | ||
|
||
export default defineConfig({ | ||
output: 'server', | ||
integrations: [clubs(), vue(), svelte(), tailwind()], | ||
}) |
This file contains 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 |
---|---|---|
@@ -0,0 +1,6 @@ | ||
/// <reference types="astro/client" /> | ||
|
||
declare module '*.astro' { | ||
import type { AstroComponentFactory } from 'astro/dist/runtime/server' | ||
export default InstanceType<AstroComponentFactory> | ||
} |
Oops, something went wrong.