Skip to content

Commit

Permalink
deployment
Browse files Browse the repository at this point in the history
  • Loading branch information
ryanatkn committed Nov 10, 2023
1 parent bfea6bd commit 0106eef
Show file tree
Hide file tree
Showing 16 changed files with 64 additions and 38 deletions.
12 changes: 10 additions & 2 deletions .well-known/src.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,20 @@
"path": "example.ts",
"declarations": [
{
"name": "example_a",
"name": "example_variable",
"kind": "variable"
},
{
"name": "example_b",
"name": "example_function",
"kind": "function"
},
{
"name": "Example_Class",
"kind": "class"
},
{
"name": "Example_Type",
"kind": "type"
}
]
},
Expand Down
1 change: 1 addition & 0 deletions .well-known/src/lib/Example.svelte
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
example Svelte file at $lib/Example.svelte
11 changes: 9 additions & 2 deletions .well-known/src/lib/example.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,13 @@
* @see https://github.com/grogarden/gro/blob/main/src/lib/docs/publish.md
* @see https://kit.svelte.dev/docs/packaging
*/
export const example_a = 5;
export const example_variable = 5;

export const example_b = (): boolean => true;
export const example_function = (): boolean => true;

export class Example_Class {
a = example_variable;
b = example_function;
}

export type Example_Type = 'example_type_1' | 'example_type_2';
6 changes: 4 additions & 2 deletions .well-known/src/lib/package.ts
Original file line number Diff line number Diff line change
Expand Up @@ -67,8 +67,10 @@ export const src_json = {
'./example.js': {
path: 'example.ts',
declarations: [
{name: 'example_a', kind: 'variable'},
{name: 'example_b', kind: 'function'},
{name: 'example_variable', kind: 'variable'},
{name: 'example_function', kind: 'function'},
{name: 'Example_Class', kind: 'class'},
{name: 'Example_Type', kind: 'type'},
],
},
'./package.gen.js': {path: 'package.gen.ts', declarations: []},
Expand Down
1 change: 1 addition & 0 deletions _app/immutable/chunks/paths.536ee58d.js
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
var s;const a=((s=globalThis.__sveltekit_1fqtd84)==null?void 0:s.base)??"";var t;const e=((t=globalThis.__sveltekit_1fqtd84)==null?void 0:t.assets)??a;export{e as a,a as b};
1 change: 0 additions & 1 deletion _app/immutable/chunks/paths.d4d571ae.js

This file was deleted.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Large diffs are not rendered by default.

Loading

0 comments on commit 0106eef

Please sign in to comment.