@codemation/next-host 0.0.1 → 0.0.2

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/next-env.d.ts CHANGED
@@ -1,6 +1,6 @@
1
1
  /// <reference types="next" />
2
2
  /// <reference types="next/image-types/global" />
3
- import "./.next/dev/types/routes.d.ts";
3
+ import "./.next/types/routes.d.ts";
4
4
 
5
5
  // NOTE: This file should not be edited
6
6
  // see https://nextjs.org/docs/app/api-reference/config/typescript for more information.
package/next.config.ts CHANGED
@@ -3,6 +3,7 @@ import path from "node:path";
3
3
  import { fileURLToPath } from "node:url";
4
4
 
5
5
  const nextHostDirectory = path.dirname(fileURLToPath(import.meta.url));
6
+ const nextHostWorkspaceRoot = path.resolve(nextHostDirectory, "../..");
6
7
 
7
8
  const nextConfig: NextConfig = {
8
9
  reactStrictMode: true,
@@ -28,7 +29,10 @@ const nextConfig: NextConfig = {
28
29
  experimental: {
29
30
  externalDir: true,
30
31
  },
31
- outputFileTracingRoot: path.resolve(nextHostDirectory, "../.."),
32
+ turbopack: {
33
+ root: nextHostWorkspaceRoot,
34
+ },
35
+ outputFileTracingRoot: nextHostWorkspaceRoot,
32
36
  };
33
37
 
34
38
  export default nextConfig;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@codemation/next-host",
3
- "version": "0.0.1",
3
+ "version": "0.0.2",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
@@ -45,8 +45,8 @@
45
45
  "tw-animate-css": "^1.4.0",
46
46
  "zod": "^3.25.76",
47
47
  "zxcvbn": "^4.4.2",
48
- "@codemation/core": "0.0.1",
49
- "@codemation/host": "0.0.1"
48
+ "@codemation/core": "0.0.2",
49
+ "@codemation/host": "0.0.2"
50
50
  },
51
51
  "devDependencies": {
52
52
  "@testing-library/jest-dom": "^6.9.1",