obeyaka-ui 0.1.7 → 0.1.8

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.d.ts CHANGED
@@ -1,4 +1,4 @@
1
- export * from '@/components';
2
- export * from '@/theme';
3
- export { ThemeProvider } from '@/theme/ThemeProvider';
1
+ export * from './components';
2
+ export * from './theme';
3
+ export { ThemeProvider } from './theme/ThemeProvider';
4
4
  //# sourceMappingURL=index.d.ts.map
@@ -1,4 +1,4 @@
1
- export * from '@/components';
2
- export * from '@/theme';
3
- export { ThemeProvider } from '@/theme/ThemeProvider';
1
+ export * from './components';
2
+ export * from './theme';
3
+ export { ThemeProvider } from './theme/ThemeProvider';
4
4
  //# sourceMappingURL=index.d.ts.map
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "obeyaka-ui",
3
- "version": "0.1.7",
3
+ "version": "0.1.8",
4
4
  "description": "Professional UI component library with React, TypeScript, Storybook, and Mantine",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.es.js",
@@ -22,7 +22,8 @@
22
22
  "build:storybook": "storybook build",
23
23
  "build:app": "vite build",
24
24
  "build:lib": "vite build --config vite.config.lib.ts",
25
- "build:types": "tsc --project tsconfig.build.json && cp dist/types/index.d.ts dist/index.d.ts && cp dist/types/index.d.ts.map dist/index.d.ts.map 2>/dev/null || true",
25
+ "build:types": "tsc --project tsconfig.build.json",
26
+ "postbuild:types": "cp dist/types/index.d.ts dist/index.d.ts && cp dist/types/index.d.ts.map dist/index.d.ts.map 2>/dev/null || true",
26
27
  "prepublishOnly": "npm run build",
27
28
  "preview": "vite preview",
28
29
  "test": "echo \"Error: no test specified\" && exit 1",