Skip to content

Commit c2b6b19

Browse files
committed
add turbo
1 parent 4ac164d commit c2b6b19

File tree

540 files changed

+30106
-51
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

540 files changed

+30106
-51
lines changed
Lines changed: 32 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -1,47 +1,60 @@
1-
name: Deploy to GitHub Pages
1+
name: Deploy Docs to GitHub Pages
22

33
on:
44
push:
55
branches:
66
- main
7-
7+
paths:
8+
- 'apps/docs/**'
9+
- 'packages/svelte-google-maps-api/**'
10+
- '.github/workflows/deploy-docs.yml'
11+
- 'pnpm-lock.yaml'
12+
- 'package.json'
13+
- 'turbo.json'
14+
workflow_dispatch:
815
permissions:
916
contents: read
1017
pages: write
1118
id-token: write
19+
concurrency:
20+
group: 'pages'
21+
cancel-in-progress: false
1222

1323
jobs:
14-
build:
24+
deploy:
25+
environment:
26+
name: github-pages
27+
url: ${{ steps.deployment.outputs.page_url }}
1528
runs-on: ubuntu-latest
1629
steps:
1730
- name: Checkout
1831
uses: actions/checkout@v4
19-
- name: Setup Node.js
20-
uses: actions/setup-node@v4
21-
with:
22-
node-version: "20"
32+
2333
- name: Setup pnpm
2434
uses: pnpm/action-setup@v3
2535
with:
26-
version: 9
36+
version: 10
37+
38+
- name: Setup Node
39+
uses: actions/setup-node@v4
40+
with:
41+
node-version: '20'
42+
cache: 'pnpm'
43+
2744
- name: Install dependencies
2845
run: pnpm install
29-
- name: Build
30-
run: pnpm build
46+
47+
- name: Build Docs
48+
run: pnpm build --filter=docs
49+
3150
- name: Setup Pages
32-
uses: actions/configure-pages@v5
51+
uses: actions/configure-pages@v4
52+
3353
- name: Upload artifact
3454
uses: actions/upload-pages-artifact@v3
3555
with:
36-
path: ./dist
56+
path: 'apps/docs/build'
3757

38-
deploy:
39-
needs: build
40-
runs-on: ubuntu-latest
41-
environment:
42-
name: github-pages
43-
url: ${{ steps.deployment.outputs.page_url }}
44-
steps:
4558
- name: Deploy to GitHub Pages
4659
id: deployment
4760
uses: actions/deploy-pages@v4
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
{"hash":"1065b9b9018fd116","duration":9918}

.turbo/cache/1065b9b9018fd116.tar.zst

24.8 KB
Binary file not shown.
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
{"hash":"371563ce43ee026e","duration":2038}

.turbo/cache/371563ce43ee026e.tar.zst

24.8 KB
Binary file not shown.
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
{"hash":"8a40cf3318ea46cc","duration":35781}

.turbo/cache/8a40cf3318ea46cc.tar.zst

637 KB
Binary file not shown.
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
{"hash":"92bb523d760da17b","duration":7738}

.turbo/cache/92bb523d760da17b.tar.zst

24.8 KB
Binary file not shown.
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
{"hash":"d8e05cc802f066fc","duration":9155}

.turbo/cache/d8e05cc802f066fc.tar.zst

634 KB
Binary file not shown.

.turbo/cookies/1.cookie

Whitespace-only changes.

.turbo/cookies/10.cookie

Whitespace-only changes.

.turbo/cookies/11.cookie

Whitespace-only changes.

.turbo/cookies/12.cookie

Whitespace-only changes.

.turbo/cookies/13.cookie

Whitespace-only changes.

.turbo/cookies/14.cookie

Whitespace-only changes.

.turbo/cookies/15.cookie

Whitespace-only changes.

.turbo/cookies/16.cookie

Whitespace-only changes.

.turbo/cookies/2.cookie

Whitespace-only changes.

.turbo/cookies/3.cookie

Whitespace-only changes.

.turbo/cookies/4.cookie

Whitespace-only changes.

.turbo/cookies/5.cookie

Whitespace-only changes.

.turbo/cookies/6.cookie

Whitespace-only changes.

.turbo/cookies/7.cookie

Whitespace-only changes.

.turbo/cookies/8.cookie

Whitespace-only changes.

.turbo/cookies/9.cookie

Whitespace-only changes.

.turbo/daemon/a317e09093807f32-turbo.log.2025-05-05

Whitespace-only changes.

apps/docs/.svelte-kit/ambient.d.ts

Lines changed: 157 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,157 @@
1+
2+
// this file is generated — do not edit it
3+
4+
5+
/// <reference types="@sveltejs/kit" />
6+
7+
/**
8+
* Environment variables [loaded by Vite](https://vitejs.dev/guide/env-and-mode.html#env-files) from `.env` files and `process.env`. Like [`$env/dynamic/private`](https://svelte.dev/docs/kit/$env-dynamic-private), this module cannot be imported into client-side code. This module only includes variables that _do not_ begin with [`config.kit.env.publicPrefix`](https://svelte.dev/docs/kit/configuration#env) _and do_ start with [`config.kit.env.privatePrefix`](https://svelte.dev/docs/kit/configuration#env) (if configured).
9+
*
10+
* _Unlike_ [`$env/dynamic/private`](https://svelte.dev/docs/kit/$env-dynamic-private), the values exported from this module are statically injected into your bundle at build time, enabling optimisations like dead code elimination.
11+
*
12+
* ```ts
13+
* import { API_KEY } from '$env/static/private';
14+
* ```
15+
*
16+
* Note that all environment variables referenced in your code should be declared (for example in an `.env` file), even if they don't have a value until the app is deployed:
17+
*
18+
* ```
19+
* MY_FEATURE_FLAG=""
20+
* ```
21+
*
22+
* You can override `.env` values from the command line like so:
23+
*
24+
* ```bash
25+
* MY_FEATURE_FLAG="enabled" npm run dev
26+
* ```
27+
*/
28+
declare module '$env/static/private' {
29+
export const TERM_PROGRAM: string;
30+
export const NODE: string;
31+
export const INIT_CWD: string;
32+
export const TERM: string;
33+
export const SHELL: string;
34+
export const npm_config_registry: string;
35+
export const USER: string;
36+
export const PNPM_SCRIPT_SRC_DIR: string;
37+
export const __CF_USER_TEXT_ENCODING: string;
38+
export const npm_execpath: string;
39+
export const npm_config_frozen_lockfile: string;
40+
export const npm_config_verify_deps_before_run: string;
41+
export const PATH: string;
42+
export const COMPOSE_DOCKER_CLI_BUILD: string;
43+
export const npm_config_engine_strict: string;
44+
export const PWD: string;
45+
export const npm_command: string;
46+
export const npm_lifecycle_event: string;
47+
export const LANG: string;
48+
export const npm_package_name: string;
49+
export const npm_config_resolution_mode: string;
50+
export const NODE_PATH: string;
51+
export const VSCODE_GIT_ASKPASS_EXTRA_ARGS: string;
52+
export const TURBO_HASH: string;
53+
export const npm_config_node_gyp: string;
54+
export const DOCKER_BUILDKIT: string;
55+
export const npm_package_version: string;
56+
export const VSCODE_INJECTION: string;
57+
export const SHLVL: string;
58+
export const HOME: string;
59+
export const VSCODE_GIT_ASKPASS_MAIN: string;
60+
export const npm_lifecycle_script: string;
61+
export const VSCODE_GIT_IPC_HANDLE: string;
62+
export const npm_config_user_agent: string;
63+
export const VSCODE_GIT_ASKPASS_NODE: string;
64+
export const COLORTERM: string;
65+
export const npm_node_execpath: string;
66+
export const NODE_ENV: string;
67+
}
68+
69+
/**
70+
* Similar to [`$env/static/private`](https://svelte.dev/docs/kit/$env-static-private), except that it only includes environment variables that begin with [`config.kit.env.publicPrefix`](https://svelte.dev/docs/kit/configuration#env) (which defaults to `PUBLIC_`), and can therefore safely be exposed to client-side code.
71+
*
72+
* Values are replaced statically at build time.
73+
*
74+
* ```ts
75+
* import { PUBLIC_BASE_URL } from '$env/static/public';
76+
* ```
77+
*/
78+
declare module '$env/static/public' {
79+
80+
}
81+
82+
/**
83+
* This module provides access to runtime environment variables, as defined by the platform you're running on. For example if you're using [`adapter-node`](https://github.com/sveltejs/kit/tree/main/packages/adapter-node) (or running [`vite preview`](https://svelte.dev/docs/kit/cli)), this is equivalent to `process.env`. This module only includes variables that _do not_ begin with [`config.kit.env.publicPrefix`](https://svelte.dev/docs/kit/configuration#env) _and do_ start with [`config.kit.env.privatePrefix`](https://svelte.dev/docs/kit/configuration#env) (if configured).
84+
*
85+
* This module cannot be imported into client-side code.
86+
*
87+
* Dynamic environment variables cannot be used during prerendering.
88+
*
89+
* ```ts
90+
* import { env } from '$env/dynamic/private';
91+
* console.log(env.DEPLOYMENT_SPECIFIC_VARIABLE);
92+
* ```
93+
*
94+
* > In `dev`, `$env/dynamic` always includes environment variables from `.env`. In `prod`, this behavior will depend on your adapter.
95+
*/
96+
declare module '$env/dynamic/private' {
97+
export const env: {
98+
TERM_PROGRAM: string;
99+
NODE: string;
100+
INIT_CWD: string;
101+
TERM: string;
102+
SHELL: string;
103+
npm_config_registry: string;
104+
USER: string;
105+
PNPM_SCRIPT_SRC_DIR: string;
106+
__CF_USER_TEXT_ENCODING: string;
107+
npm_execpath: string;
108+
npm_config_frozen_lockfile: string;
109+
npm_config_verify_deps_before_run: string;
110+
PATH: string;
111+
COMPOSE_DOCKER_CLI_BUILD: string;
112+
npm_config_engine_strict: string;
113+
PWD: string;
114+
npm_command: string;
115+
npm_lifecycle_event: string;
116+
LANG: string;
117+
npm_package_name: string;
118+
npm_config_resolution_mode: string;
119+
NODE_PATH: string;
120+
VSCODE_GIT_ASKPASS_EXTRA_ARGS: string;
121+
TURBO_HASH: string;
122+
npm_config_node_gyp: string;
123+
DOCKER_BUILDKIT: string;
124+
npm_package_version: string;
125+
VSCODE_INJECTION: string;
126+
SHLVL: string;
127+
HOME: string;
128+
VSCODE_GIT_ASKPASS_MAIN: string;
129+
npm_lifecycle_script: string;
130+
VSCODE_GIT_IPC_HANDLE: string;
131+
npm_config_user_agent: string;
132+
VSCODE_GIT_ASKPASS_NODE: string;
133+
COLORTERM: string;
134+
npm_node_execpath: string;
135+
NODE_ENV: string;
136+
[key: `PUBLIC_${string}`]: undefined;
137+
[key: `${string}`]: string | undefined;
138+
}
139+
}
140+
141+
/**
142+
* Similar to [`$env/dynamic/private`](https://svelte.dev/docs/kit/$env-dynamic-private), but only includes variables that begin with [`config.kit.env.publicPrefix`](https://svelte.dev/docs/kit/configuration#env) (which defaults to `PUBLIC_`), and can therefore safely be exposed to client-side code.
143+
*
144+
* Note that public dynamic environment variables must all be sent from the server to the client, causing larger network requests — when possible, use `$env/static/public` instead.
145+
*
146+
* Dynamic environment variables cannot be used during prerendering.
147+
*
148+
* ```ts
149+
* import { env } from '$env/dynamic/public';
150+
* console.log(env.PUBLIC_DEPLOYMENT_SPECIFIC_VARIABLE);
151+
* ```
152+
*/
153+
declare module '$env/dynamic/public' {
154+
export const env: {
155+
[key: `PUBLIC_${string}`]: string | undefined;
156+
}
157+
}
Lines changed: 70 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,70 @@
1+
export { matchers } from './matchers.js';
2+
3+
export const nodes = [
4+
() => import('./nodes/0'),
5+
() => import('./nodes/1'),
6+
() => import('./nodes/2'),
7+
() => import('./nodes/3'),
8+
() => import('./nodes/4'),
9+
() => import('./nodes/5'),
10+
() => import('./nodes/6'),
11+
() => import('./nodes/7'),
12+
() => import('./nodes/8'),
13+
() => import('./nodes/9'),
14+
() => import('./nodes/10'),
15+
() => import('./nodes/11'),
16+
() => import('./nodes/12'),
17+
() => import('./nodes/13'),
18+
() => import('./nodes/14'),
19+
() => import('./nodes/15'),
20+
() => import('./nodes/16'),
21+
() => import('./nodes/17'),
22+
() => import('./nodes/18'),
23+
() => import('./nodes/19'),
24+
() => import('./nodes/20'),
25+
() => import('./nodes/21'),
26+
() => import('./nodes/22'),
27+
() => import('./nodes/23')
28+
];
29+
30+
export const server_loads = [];
31+
32+
export const dictionary = {
33+
"/": [2],
34+
"/components/advanced-marker": [3],
35+
"/components/api-provider": [4],
36+
"/components/autocomplete": [5],
37+
"/components/bicycling-layer": [6],
38+
"/components/circle": [7],
39+
"/components/google-map": [8],
40+
"/components/ground-overlay": [9],
41+
"/components/heatmap-layer": [10],
42+
"/components/info-window": [11],
43+
"/components/kml-layer": [12],
44+
"/components/map-control": [13],
45+
"/components/marker": [14],
46+
"/components/overlay-view": [15],
47+
"/components/polygon": [16],
48+
"/components/polyline": [17],
49+
"/components/rectangle": [18],
50+
"/components/street-view-panorama": [19],
51+
"/components/traffic-layer": [20],
52+
"/components/transit-layer": [21],
53+
"/examples": [22],
54+
"/guide/getting-started": [23]
55+
};
56+
57+
export const hooks = {
58+
handleError: (({ error }) => { console.error(error) }),
59+
60+
reroute: (() => {}),
61+
transport: {}
62+
};
63+
64+
export const decoders = Object.fromEntries(Object.entries(hooks.transport).map(([k, v]) => [k, v.decode]));
65+
66+
export const hash = false;
67+
68+
export const decode = (type, value) => decoders[type](value);
69+
70+
export { default as root } from '../root.js';
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
export const matchers = {};
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
import * as universal from "../../../../src/routes/+layout.ts";
2+
export { universal };
3+
export { default as component } from "../../../../src/routes/+layout.svelte";

apps/docs/.svelte-kit/generated/client-optimized/nodes/1.js

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
export { default as component } from "../../../../src/routes/components/heatmap-layer/+page.md";
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
export { default as component } from "../../../../src/routes/components/info-window/+page.md";
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
export { default as component } from "../../../../src/routes/components/kml-layer/+page.md";
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
export { default as component } from "../../../../src/routes/components/map-control/+page.md";
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
export { default as component } from "../../../../src/routes/components/marker/+page.md";
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
export { default as component } from "../../../../src/routes/components/overlay-view/+page.md";
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
export { default as component } from "../../../../src/routes/components/polygon/+page.md";
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
export { default as component } from "../../../../src/routes/components/polyline/+page.md";
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
export { default as component } from "../../../../src/routes/components/rectangle/+page.md";
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
export { default as component } from "../../../../src/routes/components/street-view-panorama/+page.md";
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
export { default as component } from "../../../../src/routes/+page.md";
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
export { default as component } from "../../../../src/routes/components/traffic-layer/+page.md";
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
export { default as component } from "../../../../src/routes/components/transit-layer/+page.md";
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
export { default as component } from "../../../../src/routes/examples/+page.md";
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
export { default as component } from "../../../../src/routes/guide/getting-started/+page.md";
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
export { default as component } from "../../../../src/routes/components/advanced-marker/+page.md";
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
export { default as component } from "../../../../src/routes/components/api-provider/+page.md";
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
export { default as component } from "../../../../src/routes/components/autocomplete/+page.md";
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
export { default as component } from "../../../../src/routes/components/bicycling-layer/+page.md";
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
export { default as component } from "../../../../src/routes/components/circle/+page.md";
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
export { default as component } from "../../../../src/routes/components/google-map/+page.md";

0 commit comments

Comments
 (0)