@noya-app/noya-designsystem 0.1.78 → 0.1.80
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/.turbo/turbo-build.log +12 -12
- package/CHANGELOG.md +12 -0
- package/dist/chunk-FJ6ZGZIA.mjs +43 -0
- package/dist/chunk-FJ6ZGZIA.mjs.map +1 -0
- package/dist/emojis.mjs +1 -1
- package/dist/index.js +34397 -11676
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +34548 -11826
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/tsup.config.ts +2 -0
package/package.json
CHANGED
package/tsup.config.ts
CHANGED
|
@@ -10,6 +10,8 @@ export default defineConfig({
|
|
|
10
10
|
format: ["cjs", "esm"],
|
|
11
11
|
dts: true,
|
|
12
12
|
sourcemap: true,
|
|
13
|
+
// Bundle base-ui to avoid commonjs "react" import errors in vite projects
|
|
14
|
+
noExternal: ["@base-ui/react", "@base-ui/utils", "use-sync-external-store"],
|
|
13
15
|
async onSuccess() {
|
|
14
16
|
// Build Tailwind CSS after successful tsup build
|
|
15
17
|
try {
|