@repdf/preview 0.0.25 → 0.0.26
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/index.js +3 -3
- package/dist/preview/.next/BUILD_ID +1 -1
- package/dist/preview/.next/build-manifest.json +2 -2
- package/dist/preview/.next/cache/.tsbuildinfo +1 -1
- package/dist/preview/.next/cache/webpack/client-production/0.pack +0 -0
- package/dist/preview/.next/cache/webpack/client-production/index.pack +0 -0
- package/dist/preview/.next/cache/webpack/edge-server-production/index.pack +0 -0
- package/dist/preview/.next/cache/webpack/server-production/0.pack +0 -0
- package/dist/preview/.next/cache/webpack/server-production/index.pack +0 -0
- package/dist/preview/.next/next-server.js.nft.json +1 -1
- package/dist/preview/.next/prerender-manifest.json +1 -1
- package/dist/preview/.next/routes-manifest.json +1 -1
- package/dist/preview/.next/server/pages/api/component.js +2 -2
- package/dist/preview/.next/server/pages/api/trpc/[trpc].js +13 -1
- package/dist/preview/.next/server/pages/api/trpc/[trpc].js.nft.json +1 -1
- package/dist/preview/.next/server/pages/en/404.html +1 -1
- package/dist/preview/.next/server/pages/en/500.html +1 -1
- package/dist/preview/.next/server/pages/en/test.html +1 -1
- package/dist/preview/.next/server/pages-manifest.json +1 -1
- package/dist/preview/.next/trace +16 -16
- package/package.json +2 -2
- package/dist/preview/.next/cache/webpack/client-development/0.pack.gz +0 -0
- package/dist/preview/.next/cache/webpack/client-development/index.pack.gz +0 -0
- /package/dist/preview/.next/static/{r14XpRGeqXRkqt8lq1z_x → LNcYnH-Jcg6T9ie5z-a_o}/_buildManifest.js +0 -0
- /package/dist/preview/.next/static/{r14XpRGeqXRkqt8lq1z_x → LNcYnH-Jcg6T9ie5z-a_o}/_ssgManifest.js +0 -0
package/dist/index.js
CHANGED
|
@@ -6,7 +6,7 @@ import { program } from "commander";
|
|
|
6
6
|
// package.json
|
|
7
7
|
var package_default = {
|
|
8
8
|
name: "@repdf/preview",
|
|
9
|
-
version: "0.0.
|
|
9
|
+
version: "0.0.26",
|
|
10
10
|
type: "module",
|
|
11
11
|
main: "dist/index.js",
|
|
12
12
|
bin: {
|
|
@@ -304,8 +304,8 @@ var startPreviewServer = async (pdfsDirRelativePath, port) => {
|
|
|
304
304
|
const wss = new WebSocketServer({ noServer: true });
|
|
305
305
|
process.env = {
|
|
306
306
|
...process.env,
|
|
307
|
-
NODE_ENV:
|
|
308
|
-
// TODO: why is this set to devlopment and is that right?
|
|
307
|
+
NODE_ENV: "development",
|
|
308
|
+
//isDev ? "development" : "production", // TODO: why is this set to devlopment and is that right?
|
|
309
309
|
PORT: actualPort.toString(),
|
|
310
310
|
...getEnvVariablesForPreviewApp(
|
|
311
311
|
// If we don't do normalization here, stuff like https://github.com/resend/react-email/issues/1354 happens.
|
|
@@ -1 +1 @@
|
|
|
1
|
-
|
|
1
|
+
LNcYnH-Jcg6T9ie5z-a_o
|
|
@@ -5,8 +5,8 @@
|
|
|
5
5
|
"devFiles": [],
|
|
6
6
|
"ampDevFiles": [],
|
|
7
7
|
"lowPriorityFiles": [
|
|
8
|
-
"static/
|
|
9
|
-
"static/
|
|
8
|
+
"static/LNcYnH-Jcg6T9ie5z-a_o/_buildManifest.js",
|
|
9
|
+
"static/LNcYnH-Jcg6T9ie5z-a_o/_ssgManifest.js"
|
|
10
10
|
],
|
|
11
11
|
"rootMainFiles": [],
|
|
12
12
|
"pages": {
|