create-packer 1.41.6 → 1.42.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +2 -1
- package/template/web-app/svelte/.svelte-kit/ambient.d.ts +184 -10
- package/template/web-app/svelte/.svelte-kit/generated/client/nodes/0.js +1 -1
- package/template/web-app/svelte/.svelte-kit/generated/client/nodes/1.js +1 -1
- package/template/web-app/svelte/.svelte-kit/generated/server/internal.js +49 -49
- package/template/web-app/svelte/.svelte-kit/tsconfig.json +6 -0
- package/template/web-app/svelte/eslint.config.js +95 -95
- package/template/web-app/svelte/package.json +58 -55
- package/template/web-app/svelte/svelte.config.js +14 -2
- package/template/web-app/svelte/tsconfig.json +21 -21
- package/template/web-app/svelte/vite.config.ts +53 -59
- package/template/web-app/solid/.editorconfig +0 -14
- package/template/web-app/solid/.gitignore +0 -2
- package/template/web-app/solid/.husky/commit-msg +0 -4
- package/template/web-app/solid/.husky/pre-commit +0 -4
- package/template/web-app/solid/.prettierrc +0 -12
- package/template/web-app/solid/.stylelintrc +0 -29
- package/template/web-app/solid/README.md +0 -34
- package/template/web-app/solid/commitlint.config.cjs +0 -1
- package/template/web-app/solid/index.html +0 -16
- package/template/web-app/solid/package.json +0 -53
- package/template/web-app/solid/postcss.config.cjs +0 -9
- package/template/web-app/solid/src/app.container.tsx +0 -12
- package/template/web-app/solid/src/assets/favicon.ico +0 -0
- package/template/web-app/solid/src/index.css +0 -15
- package/template/web-app/solid/src/index.tsx +0 -15
- package/template/web-app/solid/src/layout/index.ts +0 -1
- package/template/web-app/solid/src/layout/layout.container.tsx +0 -5
- package/template/web-app/solid/src/logo.svg +0 -1
- package/template/web-app/solid/src/pages/home/index.ts +0 -1
- package/template/web-app/solid/src/pages/home/view.css +0 -0
- package/template/web-app/solid/src/pages/home/view.tsx +0 -5
- package/template/web-app/solid/src/pages/notFound/index.ts +0 -1
- package/template/web-app/solid/src/pages/notFound/view.tsx +0 -3
- package/template/web-app/solid/src/router/home/index.ts +0 -2
- package/template/web-app/solid/src/router/home/paths.ts +0 -3
- package/template/web-app/solid/src/router/home/routes.tsx +0 -12
- package/template/web-app/solid/src/router/index.ts +0 -2
- package/template/web-app/solid/src/router/paths.ts +0 -5
- package/template/web-app/solid/src/router/routes.ts +0 -16
- package/template/web-app/solid/tailwind.config.cjs +0 -11
- package/template/web-app/solid/tsconfig.json +0 -20
- package/template/web-app/solid/vite.config.ts +0 -23
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "create-packer",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.42.0",
|
|
4
4
|
"main": "index.js",
|
|
5
5
|
"repository": "https://github.com/kevily/create-packer",
|
|
6
6
|
"author": "1k <bug_zero@163.com>",
|
|
@@ -33,6 +33,7 @@
|
|
|
33
33
|
"@types/node": "16.4.7",
|
|
34
34
|
"commitizen": "4.3.0",
|
|
35
35
|
"eslint": "9.17.0",
|
|
36
|
+
"globals": "15.12.0",
|
|
36
37
|
"prettier": "3.2.5",
|
|
37
38
|
"rimraf": "3.0.2",
|
|
38
39
|
"typescript": "5.7.2",
|
|
@@ -30,32 +30,115 @@ declare module '$env/static/private' {
|
|
|
30
30
|
export const VITE_API_HOST: string;
|
|
31
31
|
export const ALLUSERSPROFILE: string;
|
|
32
32
|
export const APPDATA: string;
|
|
33
|
-
export const COLORTERM: string;
|
|
34
33
|
export const CommonProgramFiles: string;
|
|
35
34
|
export const CommonProgramW6432: string;
|
|
36
35
|
export const COMPUTERNAME: string;
|
|
37
36
|
export const ComSpec: string;
|
|
37
|
+
export const CONDA_PROMPT_MODIFIER: string;
|
|
38
38
|
export const configsetroot: string;
|
|
39
|
-
export const DEBUG_COLORS: string;
|
|
40
39
|
export const DriverData: string;
|
|
41
|
-
export const
|
|
40
|
+
export const FNM_ARCH: string;
|
|
41
|
+
export const FNM_COREPACK_ENABLED: string;
|
|
42
|
+
export const FNM_DIR: string;
|
|
43
|
+
export const FNM_LOGLEVEL: string;
|
|
44
|
+
export const FNM_MULTISHELL_PATH: string;
|
|
45
|
+
export const FNM_NODE_DIST_MIRROR: string;
|
|
46
|
+
export const FNM_RESOLVE_ENGINES: string;
|
|
47
|
+
export const FNM_VERSION_FILE_STRATEGY: string;
|
|
42
48
|
export const GIT_INSTALL_ROOT: string;
|
|
49
|
+
export const HOME: string;
|
|
43
50
|
export const HOMEDRIVE: string;
|
|
44
51
|
export const HOMEPATH: string;
|
|
52
|
+
export const HTTPS_PROXY: string;
|
|
53
|
+
export const HTTP_PROXY: string;
|
|
45
54
|
export const IJ_RESTARTER_LOG: string;
|
|
55
|
+
export const INIT_CWD: string;
|
|
56
|
+
export const JETBRAINS_INTELLIJ_COMMAND_END_MARKER: string;
|
|
46
57
|
export const LOCALAPPDATA: string;
|
|
47
58
|
export const LOGONSERVER: string;
|
|
48
|
-
export const
|
|
59
|
+
export const MODE: string;
|
|
60
|
+
export const NODE: string;
|
|
49
61
|
export const NODE_ENV: string;
|
|
50
|
-
export const
|
|
62
|
+
export const NODE_PATH: string;
|
|
63
|
+
export const npm_command: string;
|
|
64
|
+
export const npm_config_engine_strict: string;
|
|
65
|
+
export const npm_config_frozen_lockfile: string;
|
|
66
|
+
export const npm_config_home: string;
|
|
67
|
+
export const npm_config_ignore_scripts: string;
|
|
68
|
+
export const npm_config_node_gyp: string;
|
|
69
|
+
export const npm_config_registry: string;
|
|
70
|
+
export const npm_config_resolution_mode: string;
|
|
71
|
+
export const npm_config_user_agent: string;
|
|
72
|
+
export const npm_config__jz_registry: string;
|
|
73
|
+
export const npm_execpath: string;
|
|
74
|
+
export const npm_lifecycle_event: string;
|
|
75
|
+
export const npm_lifecycle_script: string;
|
|
76
|
+
export const npm_node_execpath: string;
|
|
77
|
+
export const npm_package_dependencies_lodash_es: string;
|
|
78
|
+
export const npm_package_dependencies_svelte: string;
|
|
79
|
+
export const npm_package_devDependencies_commitizen: string;
|
|
80
|
+
export const npm_package_devDependencies_cross_env: string;
|
|
81
|
+
export const npm_package_devDependencies_cssnano: string;
|
|
82
|
+
export const npm_package_devDependencies_dotenv: string;
|
|
83
|
+
export const npm_package_devDependencies_eslint: string;
|
|
84
|
+
export const npm_package_devDependencies_eslint_config_prettier: string;
|
|
85
|
+
export const npm_package_devDependencies_eslint_import_resolver_typescript: string;
|
|
86
|
+
export const npm_package_devDependencies_eslint_plugin_import: string;
|
|
87
|
+
export const npm_package_devDependencies_eslint_plugin_svelte: string;
|
|
88
|
+
export const npm_package_devDependencies_globals: string;
|
|
89
|
+
export const npm_package_devDependencies_postcss: string;
|
|
90
|
+
export const npm_package_devDependencies_postcss_import: string;
|
|
91
|
+
export const npm_package_devDependencies_postcss_nesting: string;
|
|
92
|
+
export const npm_package_devDependencies_prettier: string;
|
|
93
|
+
export const npm_package_devDependencies_prettier_plugin_svelte: string;
|
|
94
|
+
export const npm_package_devDependencies_rollup_plugin_visualizer: string;
|
|
95
|
+
export const npm_package_devDependencies_svelte_check: string;
|
|
96
|
+
export const npm_package_devDependencies_tslib: string;
|
|
97
|
+
export const npm_package_devDependencies_typescript: string;
|
|
98
|
+
export const npm_package_devDependencies_typescript_eslint: string;
|
|
99
|
+
export const npm_package_devDependencies_vite: string;
|
|
100
|
+
export const npm_package_devDependencies_vite_plugin_checker: string;
|
|
101
|
+
export const npm_package_devDependencies_vite_plugin_stylelint: string;
|
|
102
|
+
export const npm_package_devDependencies__commitlint_cli: string;
|
|
103
|
+
export const npm_package_devDependencies__commitlint_config_conventional: string;
|
|
104
|
+
export const npm_package_devDependencies__commitlint_cz_commitlint: string;
|
|
105
|
+
export const npm_package_devDependencies__sveltejs_adapter_auto: string;
|
|
106
|
+
export const npm_package_devDependencies__sveltejs_kit: string;
|
|
107
|
+
export const npm_package_devDependencies__sveltejs_vite_plugin_svelte: string;
|
|
108
|
+
export const npm_package_devDependencies__types_lodash_es: string;
|
|
109
|
+
export const npm_package_name: string;
|
|
110
|
+
export const npm_package_private: string;
|
|
111
|
+
export const npm_package_scripts_build: string;
|
|
112
|
+
export const npm_package_scripts_build_analyse: string;
|
|
113
|
+
export const npm_package_scripts_check: string;
|
|
114
|
+
export const npm_package_scripts_check_watch: string;
|
|
115
|
+
export const npm_package_scripts_commit: string;
|
|
116
|
+
export const npm_package_scripts_cz: string;
|
|
117
|
+
export const npm_package_scripts_dev: string;
|
|
118
|
+
export const npm_package_scripts_format: string;
|
|
119
|
+
export const npm_package_scripts_lint: string;
|
|
120
|
+
export const npm_package_scripts_prepare: string;
|
|
121
|
+
export const npm_package_scripts_preview: string;
|
|
122
|
+
export const npm_package_scripts_push: string;
|
|
123
|
+
export const npm_package_scripts_up_svelte: string;
|
|
124
|
+
export const npm_package_scripts_up_vite: string;
|
|
125
|
+
export const npm_package_type: string;
|
|
126
|
+
export const npm_package_version: string;
|
|
51
127
|
export const NUMBER_OF_PROCESSORS: string;
|
|
52
128
|
export const OneDrive: string;
|
|
53
129
|
export const OneDriveConsumer: string;
|
|
54
130
|
export const OS: string;
|
|
55
131
|
export const Path: string;
|
|
56
132
|
export const PATHEXT: string;
|
|
133
|
+
export const PNPM_SCRIPT_SRC_DIR: string;
|
|
134
|
+
export const POSH_CURSOR_COLUMN: string;
|
|
135
|
+
export const POSH_CURSOR_LINE: string;
|
|
57
136
|
export const POSH_INSTALLER: string;
|
|
137
|
+
export const POSH_SESSION_ID: string;
|
|
138
|
+
export const POSH_SHELL_VERSION: string;
|
|
139
|
+
export const POSH_THEME: string;
|
|
58
140
|
export const POSH_THEMES_PATH: string;
|
|
141
|
+
export const POWERLINE_COMMAND: string;
|
|
59
142
|
export const PROCESSOR_ARCHITECTURE: string;
|
|
60
143
|
export const PROCESSOR_IDENTIFIER: string;
|
|
61
144
|
export const PROCESSOR_LEVEL: string;
|
|
@@ -63,12 +146,16 @@ declare module '$env/static/private' {
|
|
|
63
146
|
export const ProgramData: string;
|
|
64
147
|
export const ProgramFiles: string;
|
|
65
148
|
export const ProgramW6432: string;
|
|
149
|
+
export const PROMPT: string;
|
|
150
|
+
export const PSExecutionPolicyPreference: string;
|
|
66
151
|
export const PSModulePath: string;
|
|
67
152
|
export const PUBLIC: string;
|
|
68
153
|
export const SESSIONNAME: string;
|
|
69
154
|
export const SystemDrive: string;
|
|
70
155
|
export const SystemRoot: string;
|
|
71
156
|
export const TEMP: string;
|
|
157
|
+
export const TERMINAL_EMULATOR: string;
|
|
158
|
+
export const TERM_SESSION_ID: string;
|
|
72
159
|
export const TMP: string;
|
|
73
160
|
export const TOOLBOX_VERSION: string;
|
|
74
161
|
export const USERDOMAIN: string;
|
|
@@ -112,32 +199,115 @@ declare module '$env/dynamic/private' {
|
|
|
112
199
|
VITE_API_HOST: string;
|
|
113
200
|
ALLUSERSPROFILE: string;
|
|
114
201
|
APPDATA: string;
|
|
115
|
-
COLORTERM: string;
|
|
116
202
|
CommonProgramFiles: string;
|
|
117
203
|
CommonProgramW6432: string;
|
|
118
204
|
COMPUTERNAME: string;
|
|
119
205
|
ComSpec: string;
|
|
206
|
+
CONDA_PROMPT_MODIFIER: string;
|
|
120
207
|
configsetroot: string;
|
|
121
|
-
DEBUG_COLORS: string;
|
|
122
208
|
DriverData: string;
|
|
123
|
-
|
|
209
|
+
FNM_ARCH: string;
|
|
210
|
+
FNM_COREPACK_ENABLED: string;
|
|
211
|
+
FNM_DIR: string;
|
|
212
|
+
FNM_LOGLEVEL: string;
|
|
213
|
+
FNM_MULTISHELL_PATH: string;
|
|
214
|
+
FNM_NODE_DIST_MIRROR: string;
|
|
215
|
+
FNM_RESOLVE_ENGINES: string;
|
|
216
|
+
FNM_VERSION_FILE_STRATEGY: string;
|
|
124
217
|
GIT_INSTALL_ROOT: string;
|
|
218
|
+
HOME: string;
|
|
125
219
|
HOMEDRIVE: string;
|
|
126
220
|
HOMEPATH: string;
|
|
221
|
+
HTTPS_PROXY: string;
|
|
222
|
+
HTTP_PROXY: string;
|
|
127
223
|
IJ_RESTARTER_LOG: string;
|
|
224
|
+
INIT_CWD: string;
|
|
225
|
+
JETBRAINS_INTELLIJ_COMMAND_END_MARKER: string;
|
|
128
226
|
LOCALAPPDATA: string;
|
|
129
227
|
LOGONSERVER: string;
|
|
130
|
-
|
|
228
|
+
MODE: string;
|
|
229
|
+
NODE: string;
|
|
131
230
|
NODE_ENV: string;
|
|
132
|
-
|
|
231
|
+
NODE_PATH: string;
|
|
232
|
+
npm_command: string;
|
|
233
|
+
npm_config_engine_strict: string;
|
|
234
|
+
npm_config_frozen_lockfile: string;
|
|
235
|
+
npm_config_home: string;
|
|
236
|
+
npm_config_ignore_scripts: string;
|
|
237
|
+
npm_config_node_gyp: string;
|
|
238
|
+
npm_config_registry: string;
|
|
239
|
+
npm_config_resolution_mode: string;
|
|
240
|
+
npm_config_user_agent: string;
|
|
241
|
+
npm_config__jz_registry: string;
|
|
242
|
+
npm_execpath: string;
|
|
243
|
+
npm_lifecycle_event: string;
|
|
244
|
+
npm_lifecycle_script: string;
|
|
245
|
+
npm_node_execpath: string;
|
|
246
|
+
npm_package_dependencies_lodash_es: string;
|
|
247
|
+
npm_package_dependencies_svelte: string;
|
|
248
|
+
npm_package_devDependencies_commitizen: string;
|
|
249
|
+
npm_package_devDependencies_cross_env: string;
|
|
250
|
+
npm_package_devDependencies_cssnano: string;
|
|
251
|
+
npm_package_devDependencies_dotenv: string;
|
|
252
|
+
npm_package_devDependencies_eslint: string;
|
|
253
|
+
npm_package_devDependencies_eslint_config_prettier: string;
|
|
254
|
+
npm_package_devDependencies_eslint_import_resolver_typescript: string;
|
|
255
|
+
npm_package_devDependencies_eslint_plugin_import: string;
|
|
256
|
+
npm_package_devDependencies_eslint_plugin_svelte: string;
|
|
257
|
+
npm_package_devDependencies_globals: string;
|
|
258
|
+
npm_package_devDependencies_postcss: string;
|
|
259
|
+
npm_package_devDependencies_postcss_import: string;
|
|
260
|
+
npm_package_devDependencies_postcss_nesting: string;
|
|
261
|
+
npm_package_devDependencies_prettier: string;
|
|
262
|
+
npm_package_devDependencies_prettier_plugin_svelte: string;
|
|
263
|
+
npm_package_devDependencies_rollup_plugin_visualizer: string;
|
|
264
|
+
npm_package_devDependencies_svelte_check: string;
|
|
265
|
+
npm_package_devDependencies_tslib: string;
|
|
266
|
+
npm_package_devDependencies_typescript: string;
|
|
267
|
+
npm_package_devDependencies_typescript_eslint: string;
|
|
268
|
+
npm_package_devDependencies_vite: string;
|
|
269
|
+
npm_package_devDependencies_vite_plugin_checker: string;
|
|
270
|
+
npm_package_devDependencies_vite_plugin_stylelint: string;
|
|
271
|
+
npm_package_devDependencies__commitlint_cli: string;
|
|
272
|
+
npm_package_devDependencies__commitlint_config_conventional: string;
|
|
273
|
+
npm_package_devDependencies__commitlint_cz_commitlint: string;
|
|
274
|
+
npm_package_devDependencies__sveltejs_adapter_auto: string;
|
|
275
|
+
npm_package_devDependencies__sveltejs_kit: string;
|
|
276
|
+
npm_package_devDependencies__sveltejs_vite_plugin_svelte: string;
|
|
277
|
+
npm_package_devDependencies__types_lodash_es: string;
|
|
278
|
+
npm_package_name: string;
|
|
279
|
+
npm_package_private: string;
|
|
280
|
+
npm_package_scripts_build: string;
|
|
281
|
+
npm_package_scripts_build_analyse: string;
|
|
282
|
+
npm_package_scripts_check: string;
|
|
283
|
+
npm_package_scripts_check_watch: string;
|
|
284
|
+
npm_package_scripts_commit: string;
|
|
285
|
+
npm_package_scripts_cz: string;
|
|
286
|
+
npm_package_scripts_dev: string;
|
|
287
|
+
npm_package_scripts_format: string;
|
|
288
|
+
npm_package_scripts_lint: string;
|
|
289
|
+
npm_package_scripts_prepare: string;
|
|
290
|
+
npm_package_scripts_preview: string;
|
|
291
|
+
npm_package_scripts_push: string;
|
|
292
|
+
npm_package_scripts_up_svelte: string;
|
|
293
|
+
npm_package_scripts_up_vite: string;
|
|
294
|
+
npm_package_type: string;
|
|
295
|
+
npm_package_version: string;
|
|
133
296
|
NUMBER_OF_PROCESSORS: string;
|
|
134
297
|
OneDrive: string;
|
|
135
298
|
OneDriveConsumer: string;
|
|
136
299
|
OS: string;
|
|
137
300
|
Path: string;
|
|
138
301
|
PATHEXT: string;
|
|
302
|
+
PNPM_SCRIPT_SRC_DIR: string;
|
|
303
|
+
POSH_CURSOR_COLUMN: string;
|
|
304
|
+
POSH_CURSOR_LINE: string;
|
|
139
305
|
POSH_INSTALLER: string;
|
|
306
|
+
POSH_SESSION_ID: string;
|
|
307
|
+
POSH_SHELL_VERSION: string;
|
|
308
|
+
POSH_THEME: string;
|
|
140
309
|
POSH_THEMES_PATH: string;
|
|
310
|
+
POWERLINE_COMMAND: string;
|
|
141
311
|
PROCESSOR_ARCHITECTURE: string;
|
|
142
312
|
PROCESSOR_IDENTIFIER: string;
|
|
143
313
|
PROCESSOR_LEVEL: string;
|
|
@@ -145,12 +315,16 @@ declare module '$env/dynamic/private' {
|
|
|
145
315
|
ProgramData: string;
|
|
146
316
|
ProgramFiles: string;
|
|
147
317
|
ProgramW6432: string;
|
|
318
|
+
PROMPT: string;
|
|
319
|
+
PSExecutionPolicyPreference: string;
|
|
148
320
|
PSModulePath: string;
|
|
149
321
|
PUBLIC: string;
|
|
150
322
|
SESSIONNAME: string;
|
|
151
323
|
SystemDrive: string;
|
|
152
324
|
SystemRoot: string;
|
|
153
325
|
TEMP: string;
|
|
326
|
+
TERMINAL_EMULATOR: string;
|
|
327
|
+
TERM_SESSION_ID: string;
|
|
154
328
|
TMP: string;
|
|
155
329
|
TOOLBOX_VERSION: string;
|
|
156
330
|
USERDOMAIN: string;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export { default as component } from "../../../../../../../node_modules/.pnpm/@sveltejs+kit@2.15.0_@sveltejs+vite-plugin-svelte@5.0.3_svelte@5.16.0_vite@6.0.7_@types+node@
|
|
1
|
+
export { default as component } from "../../../../../../../node_modules/.pnpm/@sveltejs+kit@2.15.0_@sveltejs+vite-plugin-svelte@5.0.3_svelte@5.16.0_vite@6.0.7_@types+node@_uwbcqusuq7euzznoohetjo3m5m/node_modules/@sveltejs/kit/src/runtime/components/svelte-5/layout.svelte";
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export { default as component } from "../../../../../../../node_modules/.pnpm/@sveltejs+kit@2.15.0_@sveltejs+vite-plugin-svelte@5.0.3_svelte@5.16.0_vite@6.0.7_@types+node@
|
|
1
|
+
export { default as component } from "../../../../../../../node_modules/.pnpm/@sveltejs+kit@2.15.0_@sveltejs+vite-plugin-svelte@5.0.3_svelte@5.16.0_vite@6.0.7_@types+node@_uwbcqusuq7euzznoohetjo3m5m/node_modules/@sveltejs/kit/src/runtime/components/svelte-5/error.svelte";
|
|
@@ -1,49 +1,49 @@
|
|
|
1
|
-
|
|
2
|
-
import root from '../root.js';
|
|
3
|
-
import { set_building, set_prerendering } from '__sveltekit/environment';
|
|
4
|
-
import { set_assets } from '__sveltekit/paths';
|
|
5
|
-
import { set_manifest, set_read_implementation } from '__sveltekit/server';
|
|
6
|
-
import { set_private_env, set_public_env, set_safe_public_env } from '../../../../../../node_modules/.pnpm/@sveltejs+kit@2.15.0_@sveltejs+vite-plugin-svelte@5.0.3_svelte@5.16.0_vite@6.0.7_@types+node@
|
|
7
|
-
|
|
8
|
-
export const options = {
|
|
9
|
-
app_dir: "_app",
|
|
10
|
-
app_template_contains_nonce: false,
|
|
11
|
-
csp: {"mode":"auto","directives":{"upgrade-insecure-requests":false,"block-all-mixed-content":false},"reportOnly":{"upgrade-insecure-requests":false,"block-all-mixed-content":false}},
|
|
12
|
-
csrf_check_origin: true,
|
|
13
|
-
embedded: false,
|
|
14
|
-
env_public_prefix: 'PUBLIC_',
|
|
15
|
-
env_private_prefix: '',
|
|
16
|
-
hash_routing: false,
|
|
17
|
-
hooks: null, // added lazily, via `get_hooks`
|
|
18
|
-
preload_strategy: "modulepreload",
|
|
19
|
-
root,
|
|
20
|
-
service_worker: false,
|
|
21
|
-
templates: {
|
|
22
|
-
app: ({ head, body, assets, nonce, env }) => "<!doctype html>\r\n<html lang=\"en\">\r\n\t<head>\r\n\t\t<meta charset=\"utf-8\" />\r\n\t\t<link rel=\"icon\" href=\"" + assets + "/favicon.png\" />\r\n\t\t<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\" />\r\n\t\t" + head + "\r\n\t</head>\r\n\t<body data-sveltekit-preload-data=\"hover\">\r\n\t\t<div style=\"display: contents\">" + body + "</div>\r\n\t</body>\r\n</html>\r\n",
|
|
23
|
-
error: ({ status, message }) => "<!doctype html>\n<html lang=\"en\">\n\t<head>\n\t\t<meta charset=\"utf-8\" />\n\t\t<title>" + message + "</title>\n\n\t\t<style>\n\t\t\tbody {\n\t\t\t\t--bg: white;\n\t\t\t\t--fg: #222;\n\t\t\t\t--divider: #ccc;\n\t\t\t\tbackground: var(--bg);\n\t\t\t\tcolor: var(--fg);\n\t\t\t\tfont-family:\n\t\t\t\t\tsystem-ui,\n\t\t\t\t\t-apple-system,\n\t\t\t\t\tBlinkMacSystemFont,\n\t\t\t\t\t'Segoe UI',\n\t\t\t\t\tRoboto,\n\t\t\t\t\tOxygen,\n\t\t\t\t\tUbuntu,\n\t\t\t\t\tCantarell,\n\t\t\t\t\t'Open Sans',\n\t\t\t\t\t'Helvetica Neue',\n\t\t\t\t\tsans-serif;\n\t\t\t\tdisplay: flex;\n\t\t\t\talign-items: center;\n\t\t\t\tjustify-content: center;\n\t\t\t\theight: 100vh;\n\t\t\t\tmargin: 0;\n\t\t\t}\n\n\t\t\t.error {\n\t\t\t\tdisplay: flex;\n\t\t\t\talign-items: center;\n\t\t\t\tmax-width: 32rem;\n\t\t\t\tmargin: 0 1rem;\n\t\t\t}\n\n\t\t\t.status {\n\t\t\t\tfont-weight: 200;\n\t\t\t\tfont-size: 3rem;\n\t\t\t\tline-height: 1;\n\t\t\t\tposition: relative;\n\t\t\t\ttop: -0.05rem;\n\t\t\t}\n\n\t\t\t.message {\n\t\t\t\tborder-left: 1px solid var(--divider);\n\t\t\t\tpadding: 0 0 0 1rem;\n\t\t\t\tmargin: 0 0 0 1rem;\n\t\t\t\tmin-height: 2.5rem;\n\t\t\t\tdisplay: flex;\n\t\t\t\talign-items: center;\n\t\t\t}\n\n\t\t\t.message h1 {\n\t\t\t\tfont-weight: 400;\n\t\t\t\tfont-size: 1em;\n\t\t\t\tmargin: 0;\n\t\t\t}\n\n\t\t\t@media (prefers-color-scheme: dark) {\n\t\t\t\tbody {\n\t\t\t\t\t--bg: #222;\n\t\t\t\t\t--fg: #ddd;\n\t\t\t\t\t--divider: #666;\n\t\t\t\t}\n\t\t\t}\n\t\t</style>\n\t</head>\n\t<body>\n\t\t<div class=\"error\">\n\t\t\t<span class=\"status\">" + status + "</span>\n\t\t\t<div class=\"message\">\n\t\t\t\t<h1>" + message + "</h1>\n\t\t\t</div>\n\t\t</div>\n\t</body>\n</html>\n"
|
|
24
|
-
},
|
|
25
|
-
version_hash: "
|
|
26
|
-
};
|
|
27
|
-
|
|
28
|
-
export async function get_hooks() {
|
|
29
|
-
let handle;
|
|
30
|
-
let handleFetch;
|
|
31
|
-
let handleError;
|
|
32
|
-
let init;
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
let reroute;
|
|
36
|
-
let transport;
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
return {
|
|
40
|
-
handle,
|
|
41
|
-
handleFetch,
|
|
42
|
-
handleError,
|
|
43
|
-
init,
|
|
44
|
-
reroute,
|
|
45
|
-
transport
|
|
46
|
-
};
|
|
47
|
-
}
|
|
48
|
-
|
|
49
|
-
export { set_assets, set_building, set_manifest, set_prerendering, set_private_env, set_public_env, set_read_implementation, set_safe_public_env };
|
|
1
|
+
|
|
2
|
+
import root from '../root.js';
|
|
3
|
+
import { set_building, set_prerendering } from '__sveltekit/environment';
|
|
4
|
+
import { set_assets } from '__sveltekit/paths';
|
|
5
|
+
import { set_manifest, set_read_implementation } from '__sveltekit/server';
|
|
6
|
+
import { set_private_env, set_public_env, set_safe_public_env } from '../../../../../../node_modules/.pnpm/@sveltejs+kit@2.15.0_@sveltejs+vite-plugin-svelte@5.0.3_svelte@5.16.0_vite@6.0.7_@types+node@_uwbcqusuq7euzznoohetjo3m5m/node_modules/@sveltejs/kit/src/runtime/shared-server.js';
|
|
7
|
+
|
|
8
|
+
export const options = {
|
|
9
|
+
app_dir: "_app",
|
|
10
|
+
app_template_contains_nonce: false,
|
|
11
|
+
csp: {"mode":"auto","directives":{"upgrade-insecure-requests":false,"block-all-mixed-content":false},"reportOnly":{"upgrade-insecure-requests":false,"block-all-mixed-content":false}},
|
|
12
|
+
csrf_check_origin: true,
|
|
13
|
+
embedded: false,
|
|
14
|
+
env_public_prefix: 'PUBLIC_',
|
|
15
|
+
env_private_prefix: '',
|
|
16
|
+
hash_routing: false,
|
|
17
|
+
hooks: null, // added lazily, via `get_hooks`
|
|
18
|
+
preload_strategy: "modulepreload",
|
|
19
|
+
root,
|
|
20
|
+
service_worker: false,
|
|
21
|
+
templates: {
|
|
22
|
+
app: ({ head, body, assets, nonce, env }) => "<!doctype html>\r\n<html lang=\"en\">\r\n\t<head>\r\n\t\t<meta charset=\"utf-8\" />\r\n\t\t<link rel=\"icon\" href=\"" + assets + "/favicon.png\" />\r\n\t\t<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\" />\r\n\t\t" + head + "\r\n\t</head>\r\n\t<body data-sveltekit-preload-data=\"hover\">\r\n\t\t<div style=\"display: contents\">" + body + "</div>\r\n\t</body>\r\n</html>\r\n",
|
|
23
|
+
error: ({ status, message }) => "<!doctype html>\n<html lang=\"en\">\n\t<head>\n\t\t<meta charset=\"utf-8\" />\n\t\t<title>" + message + "</title>\n\n\t\t<style>\n\t\t\tbody {\n\t\t\t\t--bg: white;\n\t\t\t\t--fg: #222;\n\t\t\t\t--divider: #ccc;\n\t\t\t\tbackground: var(--bg);\n\t\t\t\tcolor: var(--fg);\n\t\t\t\tfont-family:\n\t\t\t\t\tsystem-ui,\n\t\t\t\t\t-apple-system,\n\t\t\t\t\tBlinkMacSystemFont,\n\t\t\t\t\t'Segoe UI',\n\t\t\t\t\tRoboto,\n\t\t\t\t\tOxygen,\n\t\t\t\t\tUbuntu,\n\t\t\t\t\tCantarell,\n\t\t\t\t\t'Open Sans',\n\t\t\t\t\t'Helvetica Neue',\n\t\t\t\t\tsans-serif;\n\t\t\t\tdisplay: flex;\n\t\t\t\talign-items: center;\n\t\t\t\tjustify-content: center;\n\t\t\t\theight: 100vh;\n\t\t\t\tmargin: 0;\n\t\t\t}\n\n\t\t\t.error {\n\t\t\t\tdisplay: flex;\n\t\t\t\talign-items: center;\n\t\t\t\tmax-width: 32rem;\n\t\t\t\tmargin: 0 1rem;\n\t\t\t}\n\n\t\t\t.status {\n\t\t\t\tfont-weight: 200;\n\t\t\t\tfont-size: 3rem;\n\t\t\t\tline-height: 1;\n\t\t\t\tposition: relative;\n\t\t\t\ttop: -0.05rem;\n\t\t\t}\n\n\t\t\t.message {\n\t\t\t\tborder-left: 1px solid var(--divider);\n\t\t\t\tpadding: 0 0 0 1rem;\n\t\t\t\tmargin: 0 0 0 1rem;\n\t\t\t\tmin-height: 2.5rem;\n\t\t\t\tdisplay: flex;\n\t\t\t\talign-items: center;\n\t\t\t}\n\n\t\t\t.message h1 {\n\t\t\t\tfont-weight: 400;\n\t\t\t\tfont-size: 1em;\n\t\t\t\tmargin: 0;\n\t\t\t}\n\n\t\t\t@media (prefers-color-scheme: dark) {\n\t\t\t\tbody {\n\t\t\t\t\t--bg: #222;\n\t\t\t\t\t--fg: #ddd;\n\t\t\t\t\t--divider: #666;\n\t\t\t\t}\n\t\t\t}\n\t\t</style>\n\t</head>\n\t<body>\n\t\t<div class=\"error\">\n\t\t\t<span class=\"status\">" + status + "</span>\n\t\t\t<div class=\"message\">\n\t\t\t\t<h1>" + message + "</h1>\n\t\t\t</div>\n\t\t</div>\n\t</body>\n</html>\n"
|
|
24
|
+
},
|
|
25
|
+
version_hash: "yk5c2l"
|
|
26
|
+
};
|
|
27
|
+
|
|
28
|
+
export async function get_hooks() {
|
|
29
|
+
let handle;
|
|
30
|
+
let handleFetch;
|
|
31
|
+
let handleError;
|
|
32
|
+
let init;
|
|
33
|
+
|
|
34
|
+
|
|
35
|
+
let reroute;
|
|
36
|
+
let transport;
|
|
37
|
+
|
|
38
|
+
|
|
39
|
+
return {
|
|
40
|
+
handle,
|
|
41
|
+
handleFetch,
|
|
42
|
+
handleError,
|
|
43
|
+
init,
|
|
44
|
+
reroute,
|
|
45
|
+
transport
|
|
46
|
+
};
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
export { set_assets, set_building, set_manifest, set_prerendering, set_private_env, set_public_env, set_read_implementation, set_safe_public_env };
|
|
@@ -1,95 +1,95 @@
|
|
|
1
|
-
import eslint from '@eslint/js'
|
|
2
|
-
import globals from 'globals'
|
|
3
|
-
import tseslint from 'typescript-eslint'
|
|
4
|
-
import importPlugin from 'eslint-plugin-import'
|
|
5
|
-
import
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
const
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
'import/
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
'@typescript-eslint/no-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
'@typescript-eslint/
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
}
|
|
94
|
-
}
|
|
95
|
-
])
|
|
1
|
+
import eslint from '@eslint/js'
|
|
2
|
+
import globals from 'globals'
|
|
3
|
+
import tseslint from 'typescript-eslint'
|
|
4
|
+
import importPlugin from 'eslint-plugin-import'
|
|
5
|
+
import svelte from 'eslint-plugin-svelte'
|
|
6
|
+
|
|
7
|
+
const scriptExtensions = ['js', 'jsx', 'mjs', 'cjs', 'ts', 'tsx']
|
|
8
|
+
const files = [...scriptExtensions.map(ext => `**/*.${ext}`), '**/*.svelte']
|
|
9
|
+
|
|
10
|
+
export default tseslint.config([
|
|
11
|
+
{
|
|
12
|
+
ignores: [
|
|
13
|
+
'**/node_modules/',
|
|
14
|
+
'**/dist/',
|
|
15
|
+
'**/.history/',
|
|
16
|
+
'**/.vscode/',
|
|
17
|
+
'**/.svelte-kit/',
|
|
18
|
+
'vite.config.ts.*'
|
|
19
|
+
]
|
|
20
|
+
},
|
|
21
|
+
eslint.configs.recommended,
|
|
22
|
+
importPlugin.flatConfigs.recommended,
|
|
23
|
+
tseslint.configs.recommended,
|
|
24
|
+
...svelte.configs['flat/recommended'],
|
|
25
|
+
...svelte.configs['flat/prettier'],
|
|
26
|
+
{
|
|
27
|
+
files,
|
|
28
|
+
languageOptions: {
|
|
29
|
+
ecmaVersion: 2018,
|
|
30
|
+
sourceType: 'module',
|
|
31
|
+
globals: {
|
|
32
|
+
...globals.browser,
|
|
33
|
+
...globals.node
|
|
34
|
+
},
|
|
35
|
+
parserOptions: {
|
|
36
|
+
parser: tseslint.parser
|
|
37
|
+
}
|
|
38
|
+
},
|
|
39
|
+
settings: {
|
|
40
|
+
'import/resolver': {
|
|
41
|
+
typescript: true,
|
|
42
|
+
node: true
|
|
43
|
+
}
|
|
44
|
+
},
|
|
45
|
+
rules: {
|
|
46
|
+
'import/export': 'off',
|
|
47
|
+
'import/namespace': 'off',
|
|
48
|
+
'import/default': 'off',
|
|
49
|
+
'import/no-named-as-default-member': 'off',
|
|
50
|
+
'import/no-named-as-default': 'off',
|
|
51
|
+
'import/order': [
|
|
52
|
+
'error',
|
|
53
|
+
{
|
|
54
|
+
groups: [
|
|
55
|
+
'builtin',
|
|
56
|
+
'external',
|
|
57
|
+
'internal',
|
|
58
|
+
'parent',
|
|
59
|
+
'sibling',
|
|
60
|
+
'index',
|
|
61
|
+
'object',
|
|
62
|
+
'type'
|
|
63
|
+
],
|
|
64
|
+
pathGroups: [{ pattern: 'svelte', group: 'external', position: 'before' }],
|
|
65
|
+
pathGroupsExcludedImportTypes: ['svelte']
|
|
66
|
+
}
|
|
67
|
+
],
|
|
68
|
+
'no-case-declarations': 'off',
|
|
69
|
+
'@typescript-eslint/no-unused-expressions': 'off',
|
|
70
|
+
'@typescript-eslint/no-empty-object-type': 'off',
|
|
71
|
+
'@typescript-eslint/no-var-requires': 'off',
|
|
72
|
+
'@typescript-eslint/explicit-function-return-type': 'off',
|
|
73
|
+
'@typescript-eslint/no-explicit-any': 'off',
|
|
74
|
+
'@typescript-eslint/no-non-null-assertion': 'off',
|
|
75
|
+
'@typescript-eslint/no-inferrable-types': [
|
|
76
|
+
'warn',
|
|
77
|
+
{
|
|
78
|
+
ignoreParameters: true
|
|
79
|
+
}
|
|
80
|
+
],
|
|
81
|
+
'@typescript-eslint/no-unused-vars': [
|
|
82
|
+
'warn',
|
|
83
|
+
{
|
|
84
|
+
argsIgnorePattern: '^_'
|
|
85
|
+
}
|
|
86
|
+
],
|
|
87
|
+
'@typescript-eslint/member-delimiter-style': 'off',
|
|
88
|
+
'@typescript-eslint/class-name-casing': 'off',
|
|
89
|
+
'@typescript-eslint/explicit-module-boundary-types': 'off',
|
|
90
|
+
'@typescript-eslint/ban-ts-comment': 'off',
|
|
91
|
+
'@typescript-eslint/no-empty-interface': 'off',
|
|
92
|
+
'no-constant-condition': 'off'
|
|
93
|
+
}
|
|
94
|
+
}
|
|
95
|
+
])
|