rari 0.15.12 → 0.15.13
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/vite.d.mts +4 -0
- package/package.json +8 -8
package/dist/vite.d.mts
CHANGED
|
@@ -55,9 +55,11 @@ interface ServerCSPConfig {
|
|
|
55
55
|
readonly defaultSrc?: readonly string[];
|
|
56
56
|
readonly workerSrc?: readonly string[];
|
|
57
57
|
readonly frameAncestors?: readonly string[];
|
|
58
|
+
readonly frameSrc?: readonly string[];
|
|
58
59
|
readonly baseUri?: readonly string[];
|
|
59
60
|
readonly formAction?: readonly string[];
|
|
60
61
|
readonly useNonces?: boolean;
|
|
62
|
+
readonly embedderPolicy?: 'credentialless' | 'unsafe-none';
|
|
61
63
|
}
|
|
62
64
|
interface ServerCacheControlConfig {
|
|
63
65
|
readonly routes: Readonly<Record<string, string>>;
|
|
@@ -283,9 +285,11 @@ interface RariOptions {
|
|
|
283
285
|
readonly defaultSrc?: readonly string[];
|
|
284
286
|
readonly workerSrc?: readonly string[];
|
|
285
287
|
readonly frameAncestors?: readonly string[];
|
|
288
|
+
readonly frameSrc?: readonly string[];
|
|
286
289
|
readonly baseUri?: readonly string[];
|
|
287
290
|
readonly formAction?: readonly string[];
|
|
288
291
|
readonly useNonces?: boolean;
|
|
292
|
+
readonly embedderPolicy?: 'credentialless' | 'unsafe-none';
|
|
289
293
|
};
|
|
290
294
|
readonly cacheControl?: {
|
|
291
295
|
readonly routes: Readonly<Record<string, string>>;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "rari",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "0.15.
|
|
4
|
+
"version": "0.15.13",
|
|
5
5
|
"description": "Runtime Accelerated Rendering Infrastructure (rari)",
|
|
6
6
|
"author": "Ryan Skinner",
|
|
7
7
|
"license": "MIT",
|
|
@@ -145,13 +145,13 @@
|
|
|
145
145
|
"rolldown": "^1.2.4"
|
|
146
146
|
},
|
|
147
147
|
"optionalDependencies": {
|
|
148
|
-
"@rari/use-cache": "0.15.
|
|
149
|
-
"rari-darwin-arm64": "0.15.
|
|
150
|
-
"rari-darwin-x64": "0.15.
|
|
151
|
-
"rari-linux-arm64": "0.15.
|
|
152
|
-
"rari-linux-x64": "0.15.
|
|
153
|
-
"rari-win32-arm64": "0.15.
|
|
154
|
-
"rari-win32-x64": "0.15.
|
|
148
|
+
"@rari/use-cache": "0.15.13",
|
|
149
|
+
"rari-darwin-arm64": "0.15.13",
|
|
150
|
+
"rari-darwin-x64": "0.15.13",
|
|
151
|
+
"rari-linux-arm64": "0.15.13",
|
|
152
|
+
"rari-linux-x64": "0.15.13",
|
|
153
|
+
"rari-win32-arm64": "0.15.13",
|
|
154
|
+
"rari-win32-x64": "0.15.13"
|
|
155
155
|
},
|
|
156
156
|
"devDependencies": {
|
|
157
157
|
"@mdx-js/mdx": "^3.1.1",
|