@jasonshimmy/vite-plugin-cer-app 0.23.2 → 0.24.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/dist/cli/checks/lighthouse.d.ts +26 -0
- package/dist/cli/checks/lighthouse.d.ts.map +1 -0
- package/dist/cli/checks/lighthouse.js +121 -0
- package/dist/cli/checks/lighthouse.js.map +1 -0
- package/dist/cli/checks/links.d.ts +12 -0
- package/dist/cli/checks/links.d.ts.map +1 -0
- package/dist/cli/checks/links.js +89 -0
- package/dist/cli/checks/links.js.map +1 -0
- package/dist/cli/checks/performance.d.ts +17 -0
- package/dist/cli/checks/performance.d.ts.map +1 -0
- package/dist/cli/checks/performance.js +61 -0
- package/dist/cli/checks/performance.js.map +1 -0
- package/dist/cli/commands/check.d.ts +3 -0
- package/dist/cli/commands/check.d.ts.map +1 -0
- package/dist/cli/commands/check.js +85 -0
- package/dist/cli/commands/check.js.map +1 -0
- package/dist/cli/create/index.d.ts +11 -1
- package/dist/cli/create/index.d.ts.map +1 -1
- package/dist/cli/create/index.js +135 -65
- package/dist/cli/create/index.js.map +1 -1
- package/dist/cli/create/templates/spa/package.json.tpl +5 -3
- package/dist/cli/create/templates/ssg/cer.config.ts.tpl +2 -0
- package/dist/cli/create/templates/ssg/package.json.tpl +5 -3
- package/dist/cli/create/templates/ssr/package.json.tpl +5 -3
- package/dist/cli/index.js +2 -0
- package/dist/cli/index.js.map +1 -1
- package/dist/index.d.ts +3 -1
- package/dist/index.d.ts.map +1 -1
- package/dist/plugin/build-ssg.d.ts +22 -6
- package/dist/plugin/build-ssg.d.ts.map +1 -1
- package/dist/plugin/build-ssg.js +227 -17
- package/dist/plugin/build-ssg.js.map +1 -1
- package/dist/plugin/content/parser.d.ts.map +1 -1
- package/dist/plugin/content/parser.js +54 -10
- package/dist/plugin/content/parser.js.map +1 -1
- package/dist/plugin/dev-server.d.ts +4 -1
- package/dist/plugin/dev-server.d.ts.map +1 -1
- package/dist/plugin/dev-server.js.map +1 -1
- package/dist/plugin/dts-generator.d.ts.map +1 -1
- package/dist/plugin/dts-generator.js +50 -8
- package/dist/plugin/dts-generator.js.map +1 -1
- package/dist/plugin/generated-dir.d.ts +2 -0
- package/dist/plugin/generated-dir.d.ts.map +1 -1
- package/dist/plugin/generated-dir.js +17 -6
- package/dist/plugin/generated-dir.js.map +1 -1
- package/dist/plugin/html-post-process.d.ts +6 -0
- package/dist/plugin/html-post-process.d.ts.map +1 -1
- package/dist/plugin/html-post-process.js +24 -0
- package/dist/plugin/html-post-process.js.map +1 -1
- package/dist/plugin/index.d.ts.map +1 -1
- package/dist/plugin/index.js +60 -13
- package/dist/plugin/index.js.map +1 -1
- package/dist/plugin/transforms/auto-import.d.ts.map +1 -1
- package/dist/plugin/transforms/auto-import.js +7 -0
- package/dist/plugin/transforms/auto-import.js.map +1 -1
- package/dist/plugin/transforms/prune-runtime-css.d.ts +8 -0
- package/dist/plugin/transforms/prune-runtime-css.d.ts.map +1 -0
- package/dist/plugin/transforms/prune-runtime-css.js +40 -0
- package/dist/plugin/transforms/prune-runtime-css.js.map +1 -0
- package/dist/runtime/app-template.d.ts +1 -1
- package/dist/runtime/app-template.d.ts.map +1 -1
- package/dist/runtime/app-template.js +206 -36
- package/dist/runtime/app-template.js.map +1 -1
- package/dist/runtime/composables/index.d.ts +4 -0
- package/dist/runtime/composables/index.d.ts.map +1 -1
- package/dist/runtime/composables/index.js +2 -0
- package/dist/runtime/composables/index.js.map +1 -1
- package/dist/runtime/composables/use-active-headings.d.ts +24 -0
- package/dist/runtime/composables/use-active-headings.d.ts.map +1 -0
- package/dist/runtime/composables/use-active-headings.js +112 -0
- package/dist/runtime/composables/use-active-headings.js.map +1 -0
- package/dist/runtime/composables/use-content-page.d.ts +45 -0
- package/dist/runtime/composables/use-content-page.d.ts.map +1 -0
- package/dist/runtime/composables/use-content-page.js +179 -0
- package/dist/runtime/composables/use-content-page.js.map +1 -0
- package/dist/runtime/composables/use-content-search.d.ts.map +1 -1
- package/dist/runtime/composables/use-content-search.js +1 -5
- package/dist/runtime/composables/use-content-search.js.map +1 -1
- package/dist/runtime/composables/use-fetch.d.ts +2 -1
- package/dist/runtime/composables/use-fetch.d.ts.map +1 -1
- package/dist/runtime/composables/use-fetch.js +112 -43
- package/dist/runtime/composables/use-fetch.js.map +1 -1
- package/dist/runtime/composables/use-route.d.ts.map +1 -1
- package/dist/runtime/composables/use-route.js +39 -11
- package/dist/runtime/composables/use-route.js.map +1 -1
- package/dist/runtime/content/client.js +2 -2
- package/dist/runtime/content/client.js.map +1 -1
- package/dist/runtime/entry-server-template.d.ts +16 -1
- package/dist/runtime/entry-server-template.d.ts.map +1 -1
- package/dist/runtime/entry-server-template.js +120 -13
- package/dist/runtime/entry-server-template.js.map +1 -1
- package/dist/types/config.d.ts +45 -4
- package/dist/types/config.d.ts.map +1 -1
- package/dist/types/config.js.map +1 -1
- package/dist/types/middleware.d.ts +2 -2
- package/dist/types/middleware.d.ts.map +1 -1
- package/package.json +22 -19
- package/.github/copilot-instructions.md +0 -169
- package/.github/workflows/publish.yml +0 -257
- package/.nvmrc +0 -1
- package/CHANGELOG.md +0 -236
- package/CLAUDE.md +0 -113
- package/commits.txt +0 -1
- package/cypress.config.ts +0 -16
- package/docs/authentication.md +0 -285
- package/docs/cli.md +0 -324
- package/docs/components.md +0 -237
- package/docs/composables.md +0 -907
- package/docs/configuration.md +0 -696
- package/docs/content.md +0 -570
- package/docs/data-loading.md +0 -336
- package/docs/getting-started.md +0 -237
- package/docs/head-management.md +0 -212
- package/docs/i18n.md +0 -159
- package/docs/layouts.md +0 -224
- package/docs/middleware.md +0 -234
- package/docs/plugins.md +0 -170
- package/docs/rendering-modes.md +0 -377
- package/docs/routing.md +0 -485
- package/docs/server-api.md +0 -253
- package/docs/testing.md +0 -455
- package/docs/use-fetch.md +0 -183
- package/e2e/cypress/e2e/api.cy.ts +0 -123
- package/e2e/cypress/e2e/async-component.cy.ts +0 -27
- package/e2e/cypress/e2e/component-splitting.cy.ts +0 -50
- package/e2e/cypress/e2e/content.cy.ts +0 -425
- package/e2e/cypress/e2e/cookie.cy.ts +0 -85
- package/e2e/cypress/e2e/data.cy.ts +0 -158
- package/e2e/cypress/e2e/error-boundary.cy.ts +0 -88
- package/e2e/cypress/e2e/fouc.cy.ts +0 -254
- package/e2e/cypress/e2e/group-meta.cy.ts +0 -36
- package/e2e/cypress/e2e/head.cy.ts +0 -89
- package/e2e/cypress/e2e/i18n.cy.ts +0 -79
- package/e2e/cypress/e2e/interactive.cy.ts +0 -137
- package/e2e/cypress/e2e/isr-nested-runtime.cy.ts +0 -102
- package/e2e/cypress/e2e/jit-css-custom-colors.cy.ts +0 -43
- package/e2e/cypress/e2e/middleware-chain.cy.ts +0 -89
- package/e2e/cypress/e2e/middleware-status.cy.ts +0 -30
- package/e2e/cypress/e2e/middleware.cy.ts +0 -45
- package/e2e/cypress/e2e/navigate.cy.ts +0 -39
- package/e2e/cypress/e2e/observability.cy.ts +0 -77
- package/e2e/cypress/e2e/per-route-error.cy.ts +0 -42
- package/e2e/cypress/e2e/per-route-render.cy.ts +0 -70
- package/e2e/cypress/e2e/preview-hardening.cy.ts +0 -88
- package/e2e/cypress/e2e/routes.cy.ts +0 -128
- package/e2e/cypress/e2e/seo-meta.cy.ts +0 -108
- package/e2e/cypress/e2e/server-middleware.cy.ts +0 -46
- package/e2e/cypress/e2e/session-rotation.cy.ts +0 -25
- package/e2e/cypress/e2e/session.cy.ts +0 -73
- package/e2e/cypress/e2e/ssr-render-error.cy.ts +0 -68
- package/e2e/cypress/e2e/synthetic-404.cy.ts +0 -45
- package/e2e/cypress/e2e/use-page-data.cy.ts +0 -122
- package/e2e/cypress/e2e/use-state.cy.ts +0 -138
- package/e2e/cypress/support/commands.ts +0 -120
- package/e2e/cypress/support/e2e.ts +0 -10
- package/e2e/cypress/tsconfig.json +0 -14
- package/e2e/kitchen-sink/app/components/ks-badge.ts +0 -8
- package/e2e/kitchen-sink/app/composables/useKsCounter.ts +0 -9
- package/e2e/kitchen-sink/app/error.ts +0 -18
- package/e2e/kitchen-sink/app/layouts/admin.ts +0 -13
- package/e2e/kitchen-sink/app/layouts/default.ts +0 -25
- package/e2e/kitchen-sink/app/layouts/group.ts +0 -9
- package/e2e/kitchen-sink/app/layouts/minimal.ts +0 -7
- package/e2e/kitchen-sink/app/loading.ts +0 -9
- package/e2e/kitchen-sink/app/middleware/auth.ts +0 -9
- package/e2e/kitchen-sink/app/middleware/custom-log.ts +0 -4
- package/e2e/kitchen-sink/app/middleware/group-auth.ts +0 -7
- package/e2e/kitchen-sink/app/middleware/logger.ts +0 -14
- package/e2e/kitchen-sink/app/pages/(auth)/login.ts +0 -13
- package/e2e/kitchen-sink/app/pages/(auth)/protected.ts +0 -16
- package/e2e/kitchen-sink/app/pages/404.ts +0 -9
- package/e2e/kitchen-sink/app/pages/about.ts +0 -17
- package/e2e/kitchen-sink/app/pages/admin/_layout.ts +0 -1
- package/e2e/kitchen-sink/app/pages/admin/dashboard.ts +0 -11
- package/e2e/kitchen-sink/app/pages/async-component-error-test.ts +0 -18
- package/e2e/kitchen-sink/app/pages/async-component-test.ts +0 -18
- package/e2e/kitchen-sink/app/pages/blog/[slug].ts +0 -59
- package/e2e/kitchen-sink/app/pages/blog/index.ts +0 -51
- package/e2e/kitchen-sink/app/pages/content-blog.ts +0 -37
- package/e2e/kitchen-sink/app/pages/content-doc.ts +0 -42
- package/e2e/kitchen-sink/app/pages/content-fallback.ts +0 -36
- package/e2e/kitchen-sink/app/pages/content-guides.ts +0 -35
- package/e2e/kitchen-sink/app/pages/content-index.ts +0 -39
- package/e2e/kitchen-sink/app/pages/content-search.ts +0 -36
- package/e2e/kitchen-sink/app/pages/cookie-test.ts +0 -22
- package/e2e/kitchen-sink/app/pages/counter.ts +0 -17
- package/e2e/kitchen-sink/app/pages/group-auth-blocked.ts +0 -9
- package/e2e/kitchen-sink/app/pages/group-meta-test/_layout.ts +0 -6
- package/e2e/kitchen-sink/app/pages/group-meta-test/custom-mw.ts +0 -14
- package/e2e/kitchen-sink/app/pages/group-meta-test/page.ts +0 -9
- package/e2e/kitchen-sink/app/pages/group-meta-test/protected.ts +0 -8
- package/e2e/kitchen-sink/app/pages/head.ts +0 -20
- package/e2e/kitchen-sink/app/pages/i18n-test.ts +0 -14
- package/e2e/kitchen-sink/app/pages/index.ts +0 -27
- package/e2e/kitchen-sink/app/pages/isr-test.ts +0 -17
- package/e2e/kitchen-sink/app/pages/items/[id].ts +0 -20
- package/e2e/kitchen-sink/app/pages/jit-css-custom-colors-test.ts +0 -14
- package/e2e/kitchen-sink/app/pages/loader-error-test.ts +0 -13
- package/e2e/kitchen-sink/app/pages/loader-props-test.ts +0 -19
- package/e2e/kitchen-sink/app/pages/loader-response-error-test.ts +0 -13
- package/e2e/kitchen-sink/app/pages/middleware-chain-test.ts +0 -12
- package/e2e/kitchen-sink/app/pages/middleware-status-test.ts +0 -9
- package/e2e/kitchen-sink/app/pages/navigate-test.ts +0 -16
- package/e2e/kitchen-sink/app/pages/observability-test.ts +0 -25
- package/e2e/kitchen-sink/app/pages/per-route-error-test.error.ts +0 -13
- package/e2e/kitchen-sink/app/pages/per-route-error-test.ts +0 -15
- package/e2e/kitchen-sink/app/pages/plugin-dsd-test.ts +0 -10
- package/e2e/kitchen-sink/app/pages/render-error-test.ts +0 -12
- package/e2e/kitchen-sink/app/pages/render-server-test.ts +0 -12
- package/e2e/kitchen-sink/app/pages/render-spa-test.ts +0 -12
- package/e2e/kitchen-sink/app/pages/route-info.ts +0 -14
- package/e2e/kitchen-sink/app/pages/seo-test.ts +0 -23
- package/e2e/kitchen-sink/app/pages/session-rotation-test.ts +0 -25
- package/e2e/kitchen-sink/app/pages/use-state-test.ts +0 -37
- package/e2e/kitchen-sink/app/plugins/01.setup.ts +0 -7
- package/e2e/kitchen-sink/app/plugins/02.ks-plugin-components.ts +0 -27
- package/e2e/kitchen-sink/cer-auto-imports.d.ts +0 -51
- package/e2e/kitchen-sink/cer-env.d.ts +0 -35
- package/e2e/kitchen-sink/cer-tsconfig.json +0 -30
- package/e2e/kitchen-sink/cer.config.ts +0 -43
- package/e2e/kitchen-sink/content/01.guides/01.index.md +0 -8
- package/e2e/kitchen-sink/content/01.guides/02.intro.md +0 -8
- package/e2e/kitchen-sink/content/01.guides/10.advanced.md +0 -8
- package/e2e/kitchen-sink/content/blog/2026-04-01-hello.md +0 -26
- package/e2e/kitchen-sink/content/blog/2026-04-02-draft.md +0 -10
- package/e2e/kitchen-sink/content/blog/index.md +0 -8
- package/e2e/kitchen-sink/content/blog/no-frontmatter.md +0 -7
- package/e2e/kitchen-sink/content/docs/getting-started.md +0 -48
- package/e2e/kitchen-sink/content/index.md +0 -16
- package/e2e/kitchen-sink/server/api/echo.ts +0 -12
- package/e2e/kitchen-sink/server/api/health.ts +0 -3
- package/e2e/kitchen-sink/server/api/posts/[slug].ts +0 -11
- package/e2e/kitchen-sink/server/api/posts/index.ts +0 -5
- package/e2e/kitchen-sink/server/api/session.ts +0 -23
- package/e2e/kitchen-sink/server/data/posts.ts +0 -21
- package/e2e/kitchen-sink/server/middleware/01-headers.ts +0 -6
- package/e2e/kitchen-sink/server/middleware/02-status-test.ts +0 -10
- package/e2e/kitchen-sink/tsconfig.json +0 -3
- package/e2e/scripts/clean.mjs +0 -14
- package/eslint.config.ts +0 -22
- package/src/__tests__/cli/adapters/cloudflare-worker.integration.test.ts +0 -132
- package/src/__tests__/cli/adapters/cloudflare.test.ts +0 -332
- package/src/__tests__/cli/adapters/netlify-bridge.integration.test.ts +0 -139
- package/src/__tests__/cli/adapters/netlify.test.ts +0 -286
- package/src/__tests__/cli/adapters/vercel-launcher.integration.test.ts +0 -129
- package/src/__tests__/cli/adapters/vercel.test.ts +0 -263
- package/src/__tests__/cli/preview-hardening.test.ts +0 -265
- package/src/__tests__/cli/preview-isr.test.ts +0 -320
- package/src/__tests__/index.test.ts +0 -21
- package/src/__tests__/plugin/app-template.test.ts +0 -166
- package/src/__tests__/plugin/build-ssg-render.test.ts +0 -155
- package/src/__tests__/plugin/build-ssg.test.ts +0 -598
- package/src/__tests__/plugin/build-ssr.test.ts +0 -192
- package/src/__tests__/plugin/cer-app-plugin.test.ts +0 -552
- package/src/__tests__/plugin/content/emitter.test.ts +0 -117
- package/src/__tests__/plugin/content/loader.test.ts +0 -154
- package/src/__tests__/plugin/content/parser.test.ts +0 -381
- package/src/__tests__/plugin/content/path-utils.test.ts +0 -69
- package/src/__tests__/plugin/content/search.test.ts +0 -119
- package/src/__tests__/plugin/dev-server.test.ts +0 -813
- package/src/__tests__/plugin/dts-generator.test.ts +0 -394
- package/src/__tests__/plugin/entry-server-template.test.ts +0 -385
- package/src/__tests__/plugin/generated-dir.test.ts +0 -144
- package/src/__tests__/plugin/html-post-process.test.ts +0 -146
- package/src/__tests__/plugin/path-utils.test.ts +0 -411
- package/src/__tests__/plugin/resolve-config.test.ts +0 -233
- package/src/__tests__/plugin/scanner.test.ts +0 -186
- package/src/__tests__/plugin/transforms/auto-import.test.ts +0 -510
- package/src/__tests__/plugin/transforms/head-inject.test.ts +0 -178
- package/src/__tests__/plugin/virtual/composables.test.ts +0 -57
- package/src/__tests__/plugin/virtual/content-components.test.ts +0 -66
- package/src/__tests__/plugin/virtual/error.test.ts +0 -71
- package/src/__tests__/plugin/virtual/layouts.test.ts +0 -70
- package/src/__tests__/plugin/virtual/loading.test.ts +0 -72
- package/src/__tests__/plugin/virtual/middleware.test.ts +0 -83
- package/src/__tests__/plugin/virtual/plugins.test.ts +0 -129
- package/src/__tests__/plugin/virtual/routes.test.ts +0 -884
- package/src/__tests__/plugin/virtual/server-api.test.ts +0 -164
- package/src/__tests__/plugin/virtual/server-middleware.test.ts +0 -102
- package/src/__tests__/runtime/app-template.test.ts +0 -208
- package/src/__tests__/runtime/define-middleware.test.ts +0 -64
- package/src/__tests__/runtime/define-server-middleware.test.ts +0 -54
- package/src/__tests__/runtime/entry-client-template.test.ts +0 -61
- package/src/__tests__/runtime/isr-handler.test.ts +0 -338
- package/src/__tests__/runtime/oauth/handler.test.ts +0 -358
- package/src/__tests__/runtime/oauth/providers.test.ts +0 -47
- package/src/__tests__/runtime/oauth-index.test.ts +0 -43
- package/src/__tests__/runtime/use-auth.test.ts +0 -169
- package/src/__tests__/runtime/use-content-search-composable.test.ts +0 -405
- package/src/__tests__/runtime/use-content-search.test.ts +0 -163
- package/src/__tests__/runtime/use-content.test.ts +0 -226
- package/src/__tests__/runtime/use-cookie.test.ts +0 -277
- package/src/__tests__/runtime/use-fetch-component.test.ts +0 -214
- package/src/__tests__/runtime/use-fetch.test.ts +0 -377
- package/src/__tests__/runtime/use-head.test.ts +0 -311
- package/src/__tests__/runtime/use-inject-client.test.ts +0 -67
- package/src/__tests__/runtime/use-inject.test.ts +0 -66
- package/src/__tests__/runtime/use-locale.test.ts +0 -152
- package/src/__tests__/runtime/use-navigate.test.ts +0 -121
- package/src/__tests__/runtime/use-page-data.test.ts +0 -298
- package/src/__tests__/runtime/use-route.test.ts +0 -156
- package/src/__tests__/runtime/use-runtime-config.test.ts +0 -182
- package/src/__tests__/runtime/use-seo-meta.test.ts +0 -109
- package/src/__tests__/runtime/use-session.test.ts +0 -320
- package/src/__tests__/runtime/use-state.test.ts +0 -340
- package/src/__tests__/types/config.test.ts +0 -18
- package/src/cli/adapters/cloudflare.ts +0 -335
- package/src/cli/adapters/netlify.ts +0 -326
- package/src/cli/adapters/vercel.ts +0 -311
- package/src/cli/commands/adapt.ts +0 -84
- package/src/cli/commands/build.ts +0 -165
- package/src/cli/commands/dev.ts +0 -125
- package/src/cli/commands/generate.ts +0 -91
- package/src/cli/commands/preview-isr.ts +0 -172
- package/src/cli/commands/preview.ts +0 -523
- package/src/cli/create/index.ts +0 -275
- package/src/cli/create/templates/shared/.gitignore.tpl +0 -25
- package/src/cli/create/templates/shared/app/layouts/default.ts.tpl +0 -15
- package/src/cli/create/templates/shared/app/pages/index.ts.tpl +0 -8
- package/src/cli/create/templates/shared/index.html.tpl +0 -12
- package/src/cli/create/templates/shared/tsconfig.json.tpl +0 -6
- package/src/cli/create/templates/spa/cer.config.ts.tpl +0 -6
- package/src/cli/create/templates/spa/package.json.tpl +0 -18
- package/src/cli/create/templates/ssg/cer.config.ts.tpl +0 -10
- package/src/cli/create/templates/ssg/package.json.tpl +0 -19
- package/src/cli/create/templates/ssr/cer.config.ts.tpl +0 -6
- package/src/cli/create/templates/ssr/package.json.tpl +0 -18
- package/src/cli/index.ts +0 -22
- package/src/index.ts +0 -20
- package/src/plugin/build-ssg.ts +0 -403
- package/src/plugin/build-ssr.ts +0 -134
- package/src/plugin/content/emitter.ts +0 -50
- package/src/plugin/content/index.ts +0 -233
- package/src/plugin/content/parser.ts +0 -259
- package/src/plugin/content/path-utils.ts +0 -55
- package/src/plugin/content/scanner.ts +0 -26
- package/src/plugin/content/search.ts +0 -28
- package/src/plugin/dev-server.ts +0 -379
- package/src/plugin/dts-generator.ts +0 -273
- package/src/plugin/generated-dir.ts +0 -121
- package/src/plugin/html-post-process.ts +0 -96
- package/src/plugin/index.ts +0 -584
- package/src/plugin/path-utils.ts +0 -186
- package/src/plugin/scanner.ts +0 -65
- package/src/plugin/transforms/auto-import.ts +0 -206
- package/src/plugin/transforms/head-inject.ts +0 -161
- package/src/plugin/virtual/composables.ts +0 -28
- package/src/plugin/virtual/content-components.ts +0 -83
- package/src/plugin/virtual/error.ts +0 -34
- package/src/plugin/virtual/layouts.ts +0 -41
- package/src/plugin/virtual/loading.ts +0 -32
- package/src/plugin/virtual/middleware.ts +0 -45
- package/src/plugin/virtual/plugins.ts +0 -46
- package/src/plugin/virtual/routes.ts +0 -514
- package/src/plugin/virtual/server-api.ts +0 -85
- package/src/plugin/virtual/server-middleware.ts +0 -44
- package/src/runtime/app-template.ts +0 -377
- package/src/runtime/composables/define-middleware.ts +0 -17
- package/src/runtime/composables/define-server-middleware.ts +0 -18
- package/src/runtime/composables/index.ts +0 -27
- package/src/runtime/composables/use-auth.ts +0 -125
- package/src/runtime/composables/use-content-search.ts +0 -205
- package/src/runtime/composables/use-content.ts +0 -146
- package/src/runtime/composables/use-cookie.ts +0 -135
- package/src/runtime/composables/use-fetch.ts +0 -438
- package/src/runtime/composables/use-head.ts +0 -234
- package/src/runtime/composables/use-inject.ts +0 -49
- package/src/runtime/composables/use-locale.ts +0 -109
- package/src/runtime/composables/use-navigate.ts +0 -58
- package/src/runtime/composables/use-page-data.ts +0 -93
- package/src/runtime/composables/use-route.ts +0 -71
- package/src/runtime/composables/use-runtime-config.ts +0 -123
- package/src/runtime/composables/use-seo-meta.ts +0 -80
- package/src/runtime/composables/use-session.ts +0 -186
- package/src/runtime/composables/use-state.ts +0 -92
- package/src/runtime/content/client.ts +0 -168
- package/src/runtime/entry-client-template.ts +0 -39
- package/src/runtime/entry-server-template.ts +0 -493
- package/src/runtime/isr-handler.ts +0 -184
- package/src/runtime/oauth/handler.ts +0 -407
- package/src/runtime/oauth/index.ts +0 -49
- package/src/runtime/oauth/providers.ts +0 -38
- package/src/types/api.ts +0 -40
- package/src/types/config.ts +0 -379
- package/src/types/content.ts +0 -66
- package/src/types/index.ts +0 -7
- package/src/types/middleware.ts +0 -63
- package/src/types/page.ts +0 -117
- package/src/types/plugin.ts +0 -34
- package/tsconfig.build.json +0 -10
- package/tsconfig.json +0 -19
- package/vitest.config.ts +0 -33
|
@@ -1,394 +0,0 @@
|
|
|
1
|
-
import { vi, describe, it, expect, beforeEach } from 'vitest'
|
|
2
|
-
|
|
3
|
-
vi.mock('node:fs', async (importOriginal) => {
|
|
4
|
-
const actual = await importOriginal<typeof import('node:fs')>()
|
|
5
|
-
return {
|
|
6
|
-
...actual,
|
|
7
|
-
existsSync: vi.fn().mockReturnValue(false),
|
|
8
|
-
writeFileSync: vi.fn(),
|
|
9
|
-
mkdirSync: vi.fn(),
|
|
10
|
-
readFileSync: vi.fn().mockReturnValue(''),
|
|
11
|
-
}
|
|
12
|
-
})
|
|
13
|
-
vi.mock('../../plugin/scanner.js', () => ({ scanDirectory: vi.fn().mockResolvedValue([]) }))
|
|
14
|
-
vi.mock('../../plugin/generated-dir.js', () => ({ GENERATED_DIR_NAME: '.cer' }))
|
|
15
|
-
|
|
16
|
-
import { existsSync, writeFileSync, readFileSync } from 'node:fs'
|
|
17
|
-
import { scanDirectory } from '../../plugin/scanner.js'
|
|
18
|
-
import {
|
|
19
|
-
writeTsconfigPaths,
|
|
20
|
-
scanComposableExports,
|
|
21
|
-
generateAutoImportDts,
|
|
22
|
-
generateVirtualModuleDts,
|
|
23
|
-
writeAutoImportDts,
|
|
24
|
-
} from '../../plugin/dts-generator.js'
|
|
25
|
-
|
|
26
|
-
const ROOT = '/project'
|
|
27
|
-
const COMPOSABLES_DIR = '/project/app/composables'
|
|
28
|
-
|
|
29
|
-
beforeEach(() => {
|
|
30
|
-
vi.mocked(existsSync).mockReturnValue(false)
|
|
31
|
-
vi.mocked(writeFileSync).mockClear()
|
|
32
|
-
vi.mocked(scanDirectory).mockResolvedValue([])
|
|
33
|
-
vi.mocked(readFileSync).mockReturnValue('')
|
|
34
|
-
})
|
|
35
|
-
|
|
36
|
-
describe('writeTsconfigPaths', () => {
|
|
37
|
-
it('writes tsconfig.json to the .cer directory', () => {
|
|
38
|
-
writeTsconfigPaths(ROOT, `${ROOT}/app`)
|
|
39
|
-
expect(writeFileSync).toHaveBeenCalledWith(
|
|
40
|
-
`${ROOT}/.cer/tsconfig.json`,
|
|
41
|
-
expect.any(String),
|
|
42
|
-
'utf-8',
|
|
43
|
-
)
|
|
44
|
-
})
|
|
45
|
-
|
|
46
|
-
it('includes ~/\\* path alias in tsconfig', () => {
|
|
47
|
-
writeTsconfigPaths(ROOT, `${ROOT}/app`)
|
|
48
|
-
const content = vi.mocked(writeFileSync).mock.calls[0][1] as string
|
|
49
|
-
expect(content).toContain('~/*')
|
|
50
|
-
})
|
|
51
|
-
|
|
52
|
-
it('includes ~/pages/* path alias', () => {
|
|
53
|
-
writeTsconfigPaths(ROOT, `${ROOT}/app`)
|
|
54
|
-
const content = vi.mocked(writeFileSync).mock.calls[0][1] as string
|
|
55
|
-
expect(content).toContain('~/pages/*')
|
|
56
|
-
})
|
|
57
|
-
|
|
58
|
-
it('generates valid JSON', () => {
|
|
59
|
-
writeTsconfigPaths(ROOT, `${ROOT}/app`)
|
|
60
|
-
const content = vi.mocked(writeFileSync).mock.calls[0][1] as string
|
|
61
|
-
expect(() => JSON.parse(content)).not.toThrow()
|
|
62
|
-
})
|
|
63
|
-
|
|
64
|
-
it('wraps paths in compilerOptions', () => {
|
|
65
|
-
writeTsconfigPaths(ROOT, `${ROOT}/app`)
|
|
66
|
-
const content = vi.mocked(writeFileSync).mock.calls[0][1] as string
|
|
67
|
-
const json = JSON.parse(content)
|
|
68
|
-
expect(json).toHaveProperty('compilerOptions.paths')
|
|
69
|
-
})
|
|
70
|
-
|
|
71
|
-
it('includes project source directories in include array', () => {
|
|
72
|
-
writeTsconfigPaths(ROOT, `${ROOT}/app`)
|
|
73
|
-
const content = vi.mocked(writeFileSync).mock.calls[0][1] as string
|
|
74
|
-
const json = JSON.parse(content) as { include?: string[] }
|
|
75
|
-
expect(Array.isArray(json.include)).toBe(true)
|
|
76
|
-
})
|
|
77
|
-
})
|
|
78
|
-
|
|
79
|
-
describe('scanComposableExports', () => {
|
|
80
|
-
it('returns empty map when composablesDir does not exist', async () => {
|
|
81
|
-
const result = await scanComposableExports(COMPOSABLES_DIR)
|
|
82
|
-
expect(result.size).toBe(0)
|
|
83
|
-
})
|
|
84
|
-
|
|
85
|
-
it('returns empty map when no files found', async () => {
|
|
86
|
-
vi.mocked(existsSync).mockReturnValue(true)
|
|
87
|
-
const result = await scanComposableExports(COMPOSABLES_DIR)
|
|
88
|
-
expect(result.size).toBe(0)
|
|
89
|
-
})
|
|
90
|
-
|
|
91
|
-
it('finds exported functions', async () => {
|
|
92
|
-
vi.mocked(existsSync).mockReturnValue(true)
|
|
93
|
-
vi.mocked(scanDirectory).mockResolvedValue([`${COMPOSABLES_DIR}/use-counter.ts`])
|
|
94
|
-
vi.mocked(readFileSync).mockReturnValue('export function useCounter() {}')
|
|
95
|
-
const result = await scanComposableExports(COMPOSABLES_DIR)
|
|
96
|
-
expect(result.has('useCounter')).toBe(true)
|
|
97
|
-
expect(result.get('useCounter')).toBe(`${COMPOSABLES_DIR}/use-counter.ts`)
|
|
98
|
-
})
|
|
99
|
-
|
|
100
|
-
it('finds exported const', async () => {
|
|
101
|
-
vi.mocked(existsSync).mockReturnValue(true)
|
|
102
|
-
vi.mocked(scanDirectory).mockResolvedValue([`${COMPOSABLES_DIR}/use-state.ts`])
|
|
103
|
-
vi.mocked(readFileSync).mockReturnValue('export const useState = () => {}')
|
|
104
|
-
const result = await scanComposableExports(COMPOSABLES_DIR)
|
|
105
|
-
expect(result.has('useState')).toBe(true)
|
|
106
|
-
})
|
|
107
|
-
|
|
108
|
-
it('finds multiple exports from a single file', async () => {
|
|
109
|
-
vi.mocked(existsSync).mockReturnValue(true)
|
|
110
|
-
vi.mocked(scanDirectory).mockResolvedValue([`${COMPOSABLES_DIR}/utils.ts`])
|
|
111
|
-
vi.mocked(readFileSync).mockReturnValue(`
|
|
112
|
-
export function useFoo() {}
|
|
113
|
-
export const useBar = () => {}
|
|
114
|
-
`)
|
|
115
|
-
const result = await scanComposableExports(COMPOSABLES_DIR)
|
|
116
|
-
expect(result.has('useFoo')).toBe(true)
|
|
117
|
-
expect(result.has('useBar')).toBe(true)
|
|
118
|
-
})
|
|
119
|
-
|
|
120
|
-
it('handles multiple files', async () => {
|
|
121
|
-
vi.mocked(existsSync).mockReturnValue(true)
|
|
122
|
-
vi.mocked(scanDirectory).mockResolvedValue([
|
|
123
|
-
`${COMPOSABLES_DIR}/a.ts`,
|
|
124
|
-
`${COMPOSABLES_DIR}/b.ts`,
|
|
125
|
-
])
|
|
126
|
-
vi.mocked(readFileSync)
|
|
127
|
-
.mockReturnValueOnce('export function useA() {}')
|
|
128
|
-
.mockReturnValueOnce('export function useB() {}')
|
|
129
|
-
const result = await scanComposableExports(COMPOSABLES_DIR)
|
|
130
|
-
expect(result.has('useA')).toBe(true)
|
|
131
|
-
expect(result.has('useB')).toBe(true)
|
|
132
|
-
})
|
|
133
|
-
})
|
|
134
|
-
|
|
135
|
-
describe('generateAutoImportDts', () => {
|
|
136
|
-
it('includes AUTO-GENERATED comment', async () => {
|
|
137
|
-
const dts = await generateAutoImportDts(ROOT, COMPOSABLES_DIR)
|
|
138
|
-
expect(dts).toContain('AUTO-GENERATED')
|
|
139
|
-
})
|
|
140
|
-
|
|
141
|
-
it('declares component as a global', async () => {
|
|
142
|
-
const dts = await generateAutoImportDts(ROOT, COMPOSABLES_DIR)
|
|
143
|
-
expect(dts).toContain("const component: typeof import('@jasonshimmy/custom-elements-runtime')['component']")
|
|
144
|
-
})
|
|
145
|
-
|
|
146
|
-
it('declares html as a global', async () => {
|
|
147
|
-
const dts = await generateAutoImportDts(ROOT, COMPOSABLES_DIR)
|
|
148
|
-
expect(dts).toContain("const html: typeof import('@jasonshimmy/custom-elements-runtime')['html']")
|
|
149
|
-
})
|
|
150
|
-
|
|
151
|
-
it('declares ref as a global', async () => {
|
|
152
|
-
const dts = await generateAutoImportDts(ROOT, COMPOSABLES_DIR)
|
|
153
|
-
expect(dts).toContain("const ref: typeof import('@jasonshimmy/custom-elements-runtime')['ref']")
|
|
154
|
-
})
|
|
155
|
-
|
|
156
|
-
it('declares useHead as a framework global', async () => {
|
|
157
|
-
const dts = await generateAutoImportDts(ROOT, COMPOSABLES_DIR)
|
|
158
|
-
expect(dts).toContain("const useHead: typeof import('@jasonshimmy/vite-plugin-cer-app/composables')['useHead']")
|
|
159
|
-
})
|
|
160
|
-
|
|
161
|
-
it('declares usePageData as a framework global', async () => {
|
|
162
|
-
const dts = await generateAutoImportDts(ROOT, COMPOSABLES_DIR)
|
|
163
|
-
expect(dts).toContain("const usePageData: typeof import('@jasonshimmy/vite-plugin-cer-app/composables')['usePageData']")
|
|
164
|
-
})
|
|
165
|
-
|
|
166
|
-
it('declares useInject as a framework global', async () => {
|
|
167
|
-
const dts = await generateAutoImportDts(ROOT, COMPOSABLES_DIR)
|
|
168
|
-
expect(dts).toContain("const useInject: typeof import('@jasonshimmy/vite-plugin-cer-app/composables')['useInject']")
|
|
169
|
-
})
|
|
170
|
-
|
|
171
|
-
it('declares useRuntimeConfig as a framework global', async () => {
|
|
172
|
-
const dts = await generateAutoImportDts(ROOT, COMPOSABLES_DIR)
|
|
173
|
-
expect(dts).toContain("const useRuntimeConfig: typeof import('@jasonshimmy/vite-plugin-cer-app/composables')['useRuntimeConfig']")
|
|
174
|
-
})
|
|
175
|
-
|
|
176
|
-
it('declares defineMiddleware as a framework global', async () => {
|
|
177
|
-
const dts = await generateAutoImportDts(ROOT, COMPOSABLES_DIR)
|
|
178
|
-
expect(dts).toContain("const defineMiddleware: typeof import('@jasonshimmy/vite-plugin-cer-app/composables')['defineMiddleware']")
|
|
179
|
-
})
|
|
180
|
-
|
|
181
|
-
it('declares defineServerMiddleware as a framework global', async () => {
|
|
182
|
-
const dts = await generateAutoImportDts(ROOT, COMPOSABLES_DIR)
|
|
183
|
-
expect(dts).toContain("const defineServerMiddleware: typeof import('@jasonshimmy/vite-plugin-cer-app/composables')['defineServerMiddleware']")
|
|
184
|
-
})
|
|
185
|
-
|
|
186
|
-
it('declares useSeoMeta as a framework global', async () => {
|
|
187
|
-
const dts = await generateAutoImportDts(ROOT, COMPOSABLES_DIR)
|
|
188
|
-
expect(dts).toContain("const useSeoMeta: typeof import('@jasonshimmy/vite-plugin-cer-app/composables')['useSeoMeta']")
|
|
189
|
-
})
|
|
190
|
-
|
|
191
|
-
it('declares useCookie as a framework global', async () => {
|
|
192
|
-
const dts = await generateAutoImportDts(ROOT, COMPOSABLES_DIR)
|
|
193
|
-
expect(dts).toContain("const useCookie: typeof import('@jasonshimmy/vite-plugin-cer-app/composables')['useCookie']")
|
|
194
|
-
})
|
|
195
|
-
|
|
196
|
-
it('declares useSession as a framework global', async () => {
|
|
197
|
-
const dts = await generateAutoImportDts(ROOT, COMPOSABLES_DIR)
|
|
198
|
-
expect(dts).toContain("const useSession: typeof import('@jasonshimmy/vite-plugin-cer-app/composables')['useSession']")
|
|
199
|
-
})
|
|
200
|
-
|
|
201
|
-
it('declares useAuth as a framework global', async () => {
|
|
202
|
-
const dts = await generateAutoImportDts(ROOT, COMPOSABLES_DIR)
|
|
203
|
-
expect(dts).toContain("const useAuth: typeof import('@jasonshimmy/vite-plugin-cer-app/composables')['useAuth']")
|
|
204
|
-
})
|
|
205
|
-
|
|
206
|
-
it('declares useFetch as a framework global', async () => {
|
|
207
|
-
const dts = await generateAutoImportDts(ROOT, COMPOSABLES_DIR)
|
|
208
|
-
expect(dts).toContain("const useFetch: typeof import('@jasonshimmy/vite-plugin-cer-app/composables')['useFetch']")
|
|
209
|
-
})
|
|
210
|
-
|
|
211
|
-
it('declares useRoute as a framework global', async () => {
|
|
212
|
-
const dts = await generateAutoImportDts(ROOT, COMPOSABLES_DIR)
|
|
213
|
-
expect(dts).toContain("const useRoute: typeof import('@jasonshimmy/vite-plugin-cer-app/composables')['useRoute']")
|
|
214
|
-
})
|
|
215
|
-
|
|
216
|
-
it('declares navigateTo as a framework global', async () => {
|
|
217
|
-
const dts = await generateAutoImportDts(ROOT, COMPOSABLES_DIR)
|
|
218
|
-
expect(dts).toContain("const navigateTo: typeof import('@jasonshimmy/vite-plugin-cer-app/composables')['navigateTo']")
|
|
219
|
-
})
|
|
220
|
-
|
|
221
|
-
it('declares useState as a framework global', async () => {
|
|
222
|
-
const dts = await generateAutoImportDts(ROOT, COMPOSABLES_DIR)
|
|
223
|
-
expect(dts).toContain("const useState: typeof import('@jasonshimmy/vite-plugin-cer-app/composables')['useState']")
|
|
224
|
-
})
|
|
225
|
-
|
|
226
|
-
it('declares useLocale as a framework global', async () => {
|
|
227
|
-
const dts = await generateAutoImportDts(ROOT, COMPOSABLES_DIR)
|
|
228
|
-
expect(dts).toContain("const useLocale: typeof import('@jasonshimmy/vite-plugin-cer-app/composables')['useLocale']")
|
|
229
|
-
})
|
|
230
|
-
|
|
231
|
-
it('declares when directive as a global', async () => {
|
|
232
|
-
const dts = await generateAutoImportDts(ROOT, COMPOSABLES_DIR)
|
|
233
|
-
expect(dts).toContain("const when: typeof import('@jasonshimmy/custom-elements-runtime/directives')['when']")
|
|
234
|
-
})
|
|
235
|
-
|
|
236
|
-
it('declares __CER_DATA__ global variable', async () => {
|
|
237
|
-
const dts = await generateAutoImportDts(ROOT, COMPOSABLES_DIR)
|
|
238
|
-
expect(dts).toContain('var __CER_DATA__')
|
|
239
|
-
})
|
|
240
|
-
|
|
241
|
-
it('declares __CER_STATE_INIT__ global variable', async () => {
|
|
242
|
-
const dts = await generateAutoImportDts(ROOT, COMPOSABLES_DIR)
|
|
243
|
-
expect(dts).toContain('var __CER_STATE_INIT__')
|
|
244
|
-
})
|
|
245
|
-
|
|
246
|
-
it('wraps declarations in declare global block', async () => {
|
|
247
|
-
const dts = await generateAutoImportDts(ROOT, COMPOSABLES_DIR)
|
|
248
|
-
expect(dts).toContain('declare global {')
|
|
249
|
-
expect(dts).toContain('}')
|
|
250
|
-
})
|
|
251
|
-
|
|
252
|
-
it('includes user composable exports when provided', async () => {
|
|
253
|
-
const exports = new Map([['useMyThing', `${COMPOSABLES_DIR}/my-thing.ts`]])
|
|
254
|
-
const dts = await generateAutoImportDts(ROOT, COMPOSABLES_DIR, exports)
|
|
255
|
-
expect(dts).toContain('useMyThing')
|
|
256
|
-
})
|
|
257
|
-
|
|
258
|
-
it('uses relative path for user composables', async () => {
|
|
259
|
-
const exports = new Map([['useFoo', `${ROOT}/app/composables/foo.ts`]])
|
|
260
|
-
const dts = await generateAutoImportDts(ROOT, COMPOSABLES_DIR, exports)
|
|
261
|
-
// Path must be relative from .cer/ (one level up from root) so TypeScript can resolve it
|
|
262
|
-
expect(dts).toContain('../app/composables/foo')
|
|
263
|
-
})
|
|
264
|
-
})
|
|
265
|
-
|
|
266
|
-
describe('generateVirtualModuleDts', () => {
|
|
267
|
-
it('includes AUTO-GENERATED comment', async () => {
|
|
268
|
-
const dts = await generateVirtualModuleDts(ROOT, COMPOSABLES_DIR)
|
|
269
|
-
expect(dts).toContain('AUTO-GENERATED')
|
|
270
|
-
})
|
|
271
|
-
|
|
272
|
-
it('declares virtual:cer-routes module', async () => {
|
|
273
|
-
const dts = await generateVirtualModuleDts(ROOT, COMPOSABLES_DIR)
|
|
274
|
-
expect(dts).toContain("declare module 'virtual:cer-routes'")
|
|
275
|
-
})
|
|
276
|
-
|
|
277
|
-
it('declares virtual:cer-layouts module', async () => {
|
|
278
|
-
const dts = await generateVirtualModuleDts(ROOT, COMPOSABLES_DIR)
|
|
279
|
-
expect(dts).toContain("declare module 'virtual:cer-layouts'")
|
|
280
|
-
})
|
|
281
|
-
|
|
282
|
-
it('declares virtual:cer-plugins module', async () => {
|
|
283
|
-
const dts = await generateVirtualModuleDts(ROOT, COMPOSABLES_DIR)
|
|
284
|
-
expect(dts).toContain("declare module 'virtual:cer-plugins'")
|
|
285
|
-
})
|
|
286
|
-
|
|
287
|
-
it('declares virtual:cer-loading module with hasLoading and loadingTag', async () => {
|
|
288
|
-
const dts = await generateVirtualModuleDts(ROOT, COMPOSABLES_DIR)
|
|
289
|
-
expect(dts).toContain("declare module 'virtual:cer-loading'")
|
|
290
|
-
expect(dts).toContain('hasLoading')
|
|
291
|
-
expect(dts).toContain('loadingTag')
|
|
292
|
-
})
|
|
293
|
-
|
|
294
|
-
it('declares virtual:cer-error module with hasError and errorTag', async () => {
|
|
295
|
-
const dts = await generateVirtualModuleDts(ROOT, COMPOSABLES_DIR)
|
|
296
|
-
expect(dts).toContain("declare module 'virtual:cer-error'")
|
|
297
|
-
expect(dts).toContain('hasError')
|
|
298
|
-
expect(dts).toContain('errorTag')
|
|
299
|
-
})
|
|
300
|
-
|
|
301
|
-
it('declares virtual:cer-app-config module', async () => {
|
|
302
|
-
const dts = await generateVirtualModuleDts(ROOT, COMPOSABLES_DIR)
|
|
303
|
-
expect(dts).toContain("declare module 'virtual:cer-app-config'")
|
|
304
|
-
})
|
|
305
|
-
|
|
306
|
-
it('declares runtimeConfig export in virtual:cer-app-config', async () => {
|
|
307
|
-
const dts = await generateVirtualModuleDts(ROOT, COMPOSABLES_DIR)
|
|
308
|
-
expect(dts).toContain('runtimeConfig')
|
|
309
|
-
})
|
|
310
|
-
|
|
311
|
-
it('declares RuntimePublicConfig in virtual:cer-app-config', async () => {
|
|
312
|
-
const dts = await generateVirtualModuleDts(ROOT, COMPOSABLES_DIR)
|
|
313
|
-
expect(dts).toContain('RuntimePublicConfig')
|
|
314
|
-
})
|
|
315
|
-
|
|
316
|
-
it('declares _authSessionKey in virtual:cer-app-config', async () => {
|
|
317
|
-
const dts = await generateVirtualModuleDts(ROOT, COMPOSABLES_DIR)
|
|
318
|
-
expect(dts).toContain('_authSessionKey')
|
|
319
|
-
})
|
|
320
|
-
|
|
321
|
-
it('declares virtual:cer-server-middleware module', async () => {
|
|
322
|
-
const dts = await generateVirtualModuleDts(ROOT, COMPOSABLES_DIR)
|
|
323
|
-
expect(dts).toContain("declare module 'virtual:cer-server-middleware'")
|
|
324
|
-
})
|
|
325
|
-
|
|
326
|
-
it('declares virtual:cer-middleware module', async () => {
|
|
327
|
-
const dts = await generateVirtualModuleDts(ROOT, COMPOSABLES_DIR)
|
|
328
|
-
expect(dts).toContain("declare module 'virtual:cer-middleware'")
|
|
329
|
-
})
|
|
330
|
-
|
|
331
|
-
it('includes user composable re-exports in virtual:cer-composables', async () => {
|
|
332
|
-
const exports = new Map([['useMyThing', `${ROOT}/app/composables/my-thing.ts`]])
|
|
333
|
-
const dts = await generateVirtualModuleDts(ROOT, COMPOSABLES_DIR, exports)
|
|
334
|
-
expect(dts).toContain('useMyThing')
|
|
335
|
-
})
|
|
336
|
-
})
|
|
337
|
-
|
|
338
|
-
describe('writeAutoImportDts', () => {
|
|
339
|
-
it('writes auto-imports.d.ts to .cer/', async () => {
|
|
340
|
-
await writeAutoImportDts(ROOT, COMPOSABLES_DIR)
|
|
341
|
-
const paths = vi.mocked(writeFileSync).mock.calls.map(([p]) => String(p))
|
|
342
|
-
expect(paths.some(p => p.includes('.cer/auto-imports.d.ts'))).toBe(true)
|
|
343
|
-
})
|
|
344
|
-
|
|
345
|
-
it('writes env.d.ts to .cer/', async () => {
|
|
346
|
-
await writeAutoImportDts(ROOT, COMPOSABLES_DIR)
|
|
347
|
-
const paths = vi.mocked(writeFileSync).mock.calls.map(([p]) => String(p))
|
|
348
|
-
expect(paths.some(p => p.includes('.cer/env.d.ts'))).toBe(true)
|
|
349
|
-
})
|
|
350
|
-
|
|
351
|
-
it('writes exactly two files', async () => {
|
|
352
|
-
await writeAutoImportDts(ROOT, COMPOSABLES_DIR)
|
|
353
|
-
expect(writeFileSync).toHaveBeenCalledTimes(2)
|
|
354
|
-
})
|
|
355
|
-
})
|
|
356
|
-
|
|
357
|
-
// ─── Content layer globals ────────────────────────────────────────────────────
|
|
358
|
-
|
|
359
|
-
describe('generateAutoImportDts — content layer globals', () => {
|
|
360
|
-
it('declares queryContent as a global', async () => {
|
|
361
|
-
const dts = await generateAutoImportDts(ROOT, COMPOSABLES_DIR)
|
|
362
|
-
expect(dts).toContain('queryContent')
|
|
363
|
-
})
|
|
364
|
-
|
|
365
|
-
it('declares useContentSearch as a global', async () => {
|
|
366
|
-
const dts = await generateAutoImportDts(ROOT, COMPOSABLES_DIR)
|
|
367
|
-
expect(dts).toContain('useContentSearch')
|
|
368
|
-
})
|
|
369
|
-
|
|
370
|
-
it('declares ContentItem type in global scope', async () => {
|
|
371
|
-
const dts = await generateAutoImportDts(ROOT, COMPOSABLES_DIR)
|
|
372
|
-
expect(dts).toContain('type ContentItem')
|
|
373
|
-
})
|
|
374
|
-
|
|
375
|
-
it('declares ContentMeta type in global scope', async () => {
|
|
376
|
-
const dts = await generateAutoImportDts(ROOT, COMPOSABLES_DIR)
|
|
377
|
-
expect(dts).toContain('type ContentMeta')
|
|
378
|
-
})
|
|
379
|
-
|
|
380
|
-
it('declares ContentHeading type in global scope', async () => {
|
|
381
|
-
const dts = await generateAutoImportDts(ROOT, COMPOSABLES_DIR)
|
|
382
|
-
expect(dts).toContain('type ContentHeading')
|
|
383
|
-
})
|
|
384
|
-
|
|
385
|
-
it('declares ContentSearchResult type in global scope', async () => {
|
|
386
|
-
const dts = await generateAutoImportDts(ROOT, COMPOSABLES_DIR)
|
|
387
|
-
expect(dts).toContain('type ContentSearchResult')
|
|
388
|
-
})
|
|
389
|
-
|
|
390
|
-
it('declares __CER_APP_CONFIG__ global var', async () => {
|
|
391
|
-
const dts = await generateAutoImportDts(ROOT, COMPOSABLES_DIR)
|
|
392
|
-
expect(dts).toContain('__CER_APP_CONFIG__')
|
|
393
|
-
})
|
|
394
|
-
})
|