@absolutejs/absolute 0.19.0-beta.1045 → 0.19.0-beta.1046
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.
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
// @bun
|
|
2
2
|
var __require = import.meta.require;
|
|
3
3
|
|
|
4
|
-
// .angular-partial-tmp-
|
|
4
|
+
// .angular-partial-tmp-Mj1AYW/src/core/streamingSlotRegistrar.ts
|
|
5
5
|
var STREAMING_SLOT_REGISTRAR_KEY = Symbol.for("absolutejs.streamingSlotRegistrar");
|
|
6
6
|
var STREAMING_SLOT_WARNING_STORAGE_KEY = Symbol.for("absolutejs.streamingSlotWarningController");
|
|
7
7
|
var STREAMING_SLOT_COLLECTION_STORAGE_KEY = Symbol.for("absolutejs.streamingSlotCollectionController");
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
// @bun
|
|
2
2
|
var __require = import.meta.require;
|
|
3
3
|
|
|
4
|
-
// .angular-partial-tmp-
|
|
4
|
+
// .angular-partial-tmp-Mj1AYW/src/core/streamingSlotRegistrar.ts
|
|
5
5
|
var STREAMING_SLOT_REGISTRAR_KEY = Symbol.for("absolutejs.streamingSlotRegistrar");
|
|
6
6
|
var STREAMING_SLOT_WARNING_STORAGE_KEY = Symbol.for("absolutejs.streamingSlotWarningController");
|
|
7
7
|
var STREAMING_SLOT_COLLECTION_STORAGE_KEY = Symbol.for("absolutejs.streamingSlotCollectionController");
|
|
@@ -48,7 +48,7 @@ var warnMissingStreamingSlotCollector = (primitiveName) => {
|
|
|
48
48
|
getWarningController()?.maybeWarn(primitiveName);
|
|
49
49
|
};
|
|
50
50
|
|
|
51
|
-
// .angular-partial-tmp-
|
|
51
|
+
// .angular-partial-tmp-Mj1AYW/src/core/streamingSlotRegistry.ts
|
|
52
52
|
var STREAMING_SLOT_STORAGE_KEY = Symbol.for("absolutejs.streamingSlotAsyncLocalStorage");
|
|
53
53
|
var isObjectRecord2 = (value) => Boolean(value) && typeof value === "object";
|
|
54
54
|
var isAsyncLocalStorage = (value) => isObjectRecord2(value) && ("getStore" in value) && typeof value.getStore === "function" && ("run" in value) && typeof value.run === "function";
|
package/dist/cli/index.js
CHANGED
|
@@ -173872,7 +173872,7 @@ __export(exports_api, {
|
|
|
173872
173872
|
runApi: () => runApi
|
|
173873
173873
|
});
|
|
173874
173874
|
var METHOD_COLOR2, HTTP_METHODS, printDim2 = (message) => process.stdout.write(`${colors.dim}${message}${colors.reset}
|
|
173875
|
-
`), isInternal = (path) => path.startsWith("/__absolute") || path.startsWith("/openapi") || path.startsWith("/hmr"), fetchSpec = async (url) => {
|
|
173875
|
+
`), isInternal = (path) => path.startsWith("/__absolute") || path.startsWith("/openapi") || path.startsWith("/hmr") || path.startsWith("/_") || path.startsWith("/@") || path.startsWith("/.") || path.startsWith("/chunk-") || path.startsWith("/node_modules"), fetchSpec = async (url) => {
|
|
173876
173876
|
try {
|
|
173877
173877
|
const response = await fetch(`${url}openapi/json`);
|
|
173878
173878
|
if (!response.ok)
|
package/dist/index.js
CHANGED
|
@@ -38756,6 +38756,17 @@ var createOpenApiPlugin = async (config2, cwd) => {
|
|
|
38756
38756
|
version: options.documentation?.version ?? info.version
|
|
38757
38757
|
}
|
|
38758
38758
|
},
|
|
38759
|
+
exclude: {
|
|
38760
|
+
paths: [
|
|
38761
|
+
/^\/_/,
|
|
38762
|
+
/^\/@/,
|
|
38763
|
+
/^\/__absolute/,
|
|
38764
|
+
/^\/hmr/,
|
|
38765
|
+
/^\/\.well-known/,
|
|
38766
|
+
/^\/chunk-/,
|
|
38767
|
+
/^\/node_modules/
|
|
38768
|
+
]
|
|
38769
|
+
},
|
|
38759
38770
|
path: options.path ?? "/openapi",
|
|
38760
38771
|
provider: options.provider === "swagger" ? "swagger-ui" : "scalar"
|
|
38761
38772
|
});
|
|
@@ -46256,5 +46267,5 @@ export {
|
|
|
46256
46267
|
ANGULAR_INIT_TIMEOUT_MS
|
|
46257
46268
|
};
|
|
46258
46269
|
|
|
46259
|
-
//# debugId=
|
|
46270
|
+
//# debugId=D13397434C44149B64756E2164756E21
|
|
46260
46271
|
//# sourceMappingURL=index.js.map
|