@gallop.software/studio 2.0.4 → 2.0.5

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/app/layout.tsx CHANGED
@@ -1,17 +1,13 @@
1
1
  /** @jsxRuntime automatic */
2
2
  /** @jsxImportSource react */
3
- import { Metadata } from 'next'
4
- import { ReactNode } from 'react'
5
3
 
6
- export const metadata: Metadata = {
4
+ export const metadata = {
7
5
  title: 'Studio - Media Manager',
8
6
  description: 'Manage images and media files for your project',
9
7
  }
10
8
 
11
9
  export default function RootLayout({
12
10
  children,
13
- }: {
14
- children: ReactNode
15
11
  }) {
16
12
  return (
17
13
  <html lang="en">
package/next.config.mjs CHANGED
@@ -13,16 +13,8 @@ const nextConfig = {
13
13
  NEXT_PUBLIC_STUDIO_WORKSPACE: process.env.STUDIO_WORKSPACE || process.cwd(),
14
14
  },
15
15
 
16
- // Transpile the src folder
17
- transpilePackages: ['./src'],
18
-
19
- // Enable SWC minification
20
- swcMinify: true,
21
-
22
- // Experimental settings for better TypeScript handling
23
- experimental: {
24
- // Improve TypeScript compilation
25
- },
16
+ // Transpile the src folder (not needed since we use compiled dist)
17
+ // transpilePackages: ['./src'],
26
18
  }
27
19
 
28
20
  export default nextConfig
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gallop.software/studio",
3
- "version": "2.0.4",
3
+ "version": "2.0.5",
4
4
  "description": "Standalone media manager for Gallop templates - upload, process, and sync images to CDN",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.mjs",