@veryfront/ext-content-mdx 0.1.1161 → 0.1.1163
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/esm/deno.d.ts
CHANGED
|
@@ -51,6 +51,7 @@ declare namespace _default {
|
|
|
51
51
|
"./mcp": string;
|
|
52
52
|
"./middleware": string;
|
|
53
53
|
"./observability": string;
|
|
54
|
+
"./observability/sentry": string;
|
|
54
55
|
"./observability/otlp-setup": string;
|
|
55
56
|
"./utils": string;
|
|
56
57
|
"./oauth": string;
|
|
@@ -138,6 +139,7 @@ declare namespace _default {
|
|
|
138
139
|
"veryfront/proxy/cache": string;
|
|
139
140
|
"veryfront/transforms/mdx-cache": string;
|
|
140
141
|
"veryfront/observability/otlp-setup": string;
|
|
142
|
+
"veryfront/observability/sentry": string;
|
|
141
143
|
"veryfront/platform/esbuild-init": string;
|
|
142
144
|
"veryfront/platform/path": string;
|
|
143
145
|
"veryfront/platform/http": string;
|
package/esm/deno.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
export default {
|
|
2
2
|
"name": "veryfront",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.1163",
|
|
4
4
|
"license": "Apache-2.0",
|
|
5
5
|
"nodeModulesDir": "auto",
|
|
6
6
|
"minimumDependencyAge": {
|
|
@@ -52,6 +52,7 @@ export default {
|
|
|
52
52
|
"./extensions/ext-parser-babel",
|
|
53
53
|
"./extensions/ext-sandbox-shell-tools",
|
|
54
54
|
"./extensions/ext-observability-opentelemetry",
|
|
55
|
+
"./extensions/ext-observability-sentry",
|
|
55
56
|
"./extensions/ext-eval-report-mlflow",
|
|
56
57
|
"./extensions/ext-eval-report-http",
|
|
57
58
|
"./extensions/ext-content-mdx",
|
|
@@ -111,6 +112,7 @@ export default {
|
|
|
111
112
|
"./mcp": "./src/mcp/index.ts",
|
|
112
113
|
"./middleware": "./src/middleware/index.ts",
|
|
113
114
|
"./observability": "./src/observability/index.ts",
|
|
115
|
+
"./observability/sentry": "./src/observability/sentry.ts",
|
|
114
116
|
"./observability/otlp-setup": "./src/observability/tracing/otlp-setup.ts",
|
|
115
117
|
"./utils": "./src/utils/index.ts",
|
|
116
118
|
"./oauth": "./src/oauth/index.ts",
|
|
@@ -198,6 +200,7 @@ export default {
|
|
|
198
200
|
"veryfront/proxy/cache": "./src/proxy/cache/index.ts",
|
|
199
201
|
"veryfront/transforms/mdx-cache": "./src/transforms/mdx/esm-module-loader/cache/index.ts",
|
|
200
202
|
"veryfront/observability/otlp-setup": "./src/observability/tracing/otlp-setup.ts",
|
|
203
|
+
"veryfront/observability/sentry": "./src/observability/sentry.ts",
|
|
201
204
|
"veryfront/platform/esbuild-init": "./src/platform/compat/esbuild-init.ts",
|
|
202
205
|
"veryfront/platform/path": "./src/platform/compat/path/index.ts",
|
|
203
206
|
"veryfront/platform/http": "./src/platform/compat/http/index.ts",
|
|
@@ -472,7 +475,7 @@ export default {
|
|
|
472
475
|
"test:all-runtimes": "deno task test:unit && deno task test:node && deno task test:bun",
|
|
473
476
|
"test:e2e": "deno task test:e2e:playwright",
|
|
474
477
|
"test:e2e:playwright": "PW_DISABLE_TS_ESM=1 npx playwright test --config=tests/e2e/playwright.config.cjs",
|
|
475
|
-
"test:e2e:rsc-browser": "deno task generate && VF_DISABLE_LRU_INTERVAL=1 SSR_TRANSFORM_PER_PROJECT_LIMIT=0 REVALIDATION_PER_PROJECT_LIMIT=0 NODE_ENV=production LOG_FORMAT=text deno test --no-check --allow-all tests/e2e/regressions/rsc-proxy-hydration.test.ts tests/e2e/regressions/2026-07-27-legacy-router-hydration.test.ts --unstable-worker-options --unstable-net",
|
|
478
|
+
"test:e2e:rsc-browser": "deno task generate && VF_DISABLE_LRU_INTERVAL=1 SSR_TRANSFORM_PER_PROJECT_LIMIT=0 REVALIDATION_PER_PROJECT_LIMIT=0 NODE_ENV=production LOG_FORMAT=text deno test --no-check --allow-all tests/e2e/regressions/rsc-proxy-hydration.test.ts tests/e2e/regressions/2026-07-27-legacy-router-hydration.test.ts tests/e2e/regressions/2026-07-27-release-asset-page-island-hydration.test.ts --unstable-worker-options --unstable-net",
|
|
476
479
|
"test:e2e:binary": "deno task generate && deno test --allow-all tests/integration/compiled-binary-e2e.test.ts",
|
|
477
480
|
"test:e2e:binary:fresh": "deno task generate && VERYFRONT_BINARY_FRESH=1 deno test --allow-all tests/integration/compiled-binary-e2e.test.ts",
|
|
478
481
|
"test:e2e:templates": "deno run --allow-all scripts/test/template-runtime-e2e.ts",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@veryfront/ext-content-mdx",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.1163",
|
|
4
4
|
"description": "Veryfront first-party extension package for ext-content-mdx",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"veryfront",
|
|
@@ -67,7 +67,7 @@
|
|
|
67
67
|
"vfile": "6.0.3"
|
|
68
68
|
},
|
|
69
69
|
"peerDependencies": {
|
|
70
|
-
"veryfront": "^0.1.
|
|
70
|
+
"veryfront": "^0.1.1163"
|
|
71
71
|
},
|
|
72
72
|
"type": "module",
|
|
73
73
|
"types": "./esm/extensions/ext-content-mdx/src/index.d.ts",
|