@akanjs/config 0.0.47 → 0.0.48

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/index.js CHANGED
@@ -103,25 +103,7 @@ var withBase = (appName, config, libs, routes = []) => {
103
103
  ...config.env,
104
104
  basePaths: routes.map(({ basePath }) => basePath).join(",")
105
105
  },
106
- transpilePackages: [
107
- "swiper",
108
- "ssr-window",
109
- "dom7",
110
- ...libs.map((lib) => `@${lib}`),
111
- "@akanjs/base",
112
- "@akanjs/common",
113
- "@akanjs/next",
114
- "@akanjs/ui",
115
- "@akanjs/client",
116
- "@akanjs/server",
117
- "@akanjs/service",
118
- "@akanjs/signal",
119
- "@akanjs/store",
120
- "@akanjs/dictionary",
121
- "@akanjs/constant",
122
- "@akanjs/config",
123
- "@akanjs/document"
124
- ],
106
+ transpilePackages: ["swiper", "ssr-window", "dom7"],
125
107
  reactStrictMode: commandType === "serve" ? false : true,
126
108
  experimental: {
127
109
  ...config.experimental ?? {},
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@akanjs/config",
3
- "version": "0.0.47",
3
+ "version": "0.0.48",
4
4
  "type": "commonjs",
5
5
  "publishConfig": {
6
6
  "access": "public"
package/src/nextConfig.ts CHANGED
@@ -62,25 +62,7 @@ export const withBase = (
62
62
  ...config.env,
63
63
  basePaths: routes.map(({ basePath }) => basePath).join(","),
64
64
  },
65
- transpilePackages: [
66
- "swiper",
67
- "ssr-window",
68
- "dom7",
69
- ...libs.map((lib) => `@${lib}`),
70
- "@akanjs/base",
71
- "@akanjs/common",
72
- "@akanjs/next",
73
- "@akanjs/ui",
74
- "@akanjs/client",
75
- "@akanjs/server",
76
- "@akanjs/service",
77
- "@akanjs/signal",
78
- "@akanjs/store",
79
- "@akanjs/dictionary",
80
- "@akanjs/constant",
81
- "@akanjs/config",
82
- "@akanjs/document",
83
- ],
65
+ transpilePackages: ["swiper", "ssr-window", "dom7"],
84
66
  reactStrictMode: commandType === "serve" ? false : true,
85
67
  experimental: {
86
68
  ...(config.experimental ?? {}),