Skip to content

Commit e0cbf32

Browse files
force expiry on host tokens and improved template builder
1 parent e17e0ec commit e0cbf32

File tree

9 files changed

+162
-235
lines changed

9 files changed

+162
-235
lines changed

esbuild.cjs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
const fs = require("fs");
12
const esbuild = require("esbuild");
23
const { nodeExternals, define } = require("./build/utils.cjs");
34
const {
@@ -47,6 +48,7 @@ const browserEsmBuild = esbuild.build({
4748
format: "esm",
4849
outfile: "dist/esm/browser.js",
4950
platform: "browser",
51+
metafile: true,
5052
// pitcher-common currently requires this, but breaks the first experience
5153
banner: {
5254
js: `if (typeof window !== "undefined" && !window.process) {

package-lock.json

Lines changed: 49 additions & 174 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -103,6 +103,7 @@
103103
"path": "^0.12.7",
104104
"react": "^18.3.1",
105105
"readline": "^1.3.0",
106+
"strip-ansi": "^7.1.0",
106107
"util": "^0.12.5",
107108
"yargs": "^17.7.2"
108109
}

0 commit comments

Comments
 (0)