Skip to content

Commit

Permalink
fix(cli): remove punycode warning message (#5142)
Browse files Browse the repository at this point in the history
  • Loading branch information
dsinghvi authored Nov 11, 2024
1 parent b883edc commit 4a3dd16
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 1 deletion.
3 changes: 2 additions & 1 deletion packages/cli/cli/build.dev.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,8 @@ async function main() {
version: process.argv[2] || packageJson.version,
repository: packageJson.repository,
files: ["cli.cjs"],
bin: { "fern-dev": "cli.cjs" }
bin: { "fern-dev": "cli.cjs" },
noExternal: ['punycode']
},
undefined,
2
Expand Down
1 change: 1 addition & 0 deletions packages/cli/cli/build.local.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ async function main() {
format: ['cjs'],
minify: false,
outDir: 'dist/local',
noExternal: ['punycode'],
env: {
AUTH0_DOMAIN: "fern-dev.us.auth0.com",
AUTH0_CLIENT_ID: "4QiMvRvRUYpnycrVDK2M59hhJ6kcHYFQ",
Expand Down
1 change: 1 addition & 0 deletions packages/cli/cli/build.prod.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ async function main() {
format: ['cjs'],
minify: true,
outDir: 'dist/prod',
noExternal: ['punycode'],
env: {
AUTH0_DOMAIN: "fern-prod.us.auth0.com",
AUTH0_CLIENT_ID: "syaWnk6SjNoo5xBf1omfvziU3q7085lh",
Expand Down

0 comments on commit 4a3dd16

Please sign in to comment.