Skip to content

Commit 61e73a6

Browse files
authored
fix(ui): Reference correct config file for build commands (#7287)
1 parent 956563a commit 61e73a6

File tree

3 files changed

+8
-6
lines changed

3 files changed

+8
-6
lines changed

packages/clerk-js/src/core/resources/internal.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
11
export type { Clerk } from '../clerk';
2+
// Ordering matters. If you move this you will be fired !! jk
3+
export * from './Base';
4+
25
export * from './APIKey';
36
export * from './AuthConfig';
4-
export * from './Base';
57
export * from './BillingCheckout';
68
export * from './BillingPayment';
79
export * from './BillingPaymentMethod';

packages/ui/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -35,14 +35,14 @@
3535
],
3636
"scripts": {
3737
"build": "pnpm build:bundle && pnpm build:declarations",
38-
"build:analyze": "rspack build --config rspack.config.mjs --env production --analyze",
39-
"build:bundle": "rspack build --config rspack.config.mjs --env production",
38+
"build:analyze": "rspack build --config rspack.config.js --env production --analyze",
39+
"build:bundle": "rspack build --config rspack.config.js --env production",
4040
"build:declarations": "tsc -p tsconfig.declarations.json",
4141
"bundlewatch": "FORCE_COLOR=1 bundlewatch --config bundlewatch.config.json",
4242
"bundlewatch:fix": "node bundlewatch-fix.mjs",
4343
"clean": "rimraf ./dist",
44-
"dev": "rspack serve --config rspack.config.mjs",
45-
"dev:origin": "rspack serve --config rspack.config.mjs --env devOrigin=http://localhost:${PORT:-4001}",
44+
"dev": "rspack serve --config rspack.config.js",
45+
"dev:origin": "rspack serve --config rspack.config.js --env devOrigin=http://localhost:${PORT:-4001}",
4646
"format": "node ../../scripts/format-package.mjs",
4747
"format:check": "node ../../scripts/format-package.mjs --check",
4848
"lint": "eslint src",

pnpm-lock.yaml

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)