@djangocfg/nextjs 2.1.102 → 2.1.103
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/config/index.d.mts +1 -1
- package/dist/config/index.mjs +2 -8
- package/dist/config/index.mjs.map +1 -1
- package/dist/index.mjs +2 -8
- package/dist/index.mjs.map +1 -1
- package/package.json +4 -4
- package/src/config/constants.ts +2 -7
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@djangocfg/nextjs",
|
|
3
|
-
"version": "2.1.
|
|
3
|
+
"version": "2.1.103",
|
|
4
4
|
"description": "Next.js server utilities: sitemap, health, OG images, contact forms, navigation, config",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"nextjs",
|
|
@@ -133,9 +133,9 @@
|
|
|
133
133
|
"web-push": "^3.6.7"
|
|
134
134
|
},
|
|
135
135
|
"devDependencies": {
|
|
136
|
-
"@djangocfg/imgai": "^2.1.
|
|
137
|
-
"@djangocfg/layouts": "^2.1.
|
|
138
|
-
"@djangocfg/typescript-config": "^2.1.
|
|
136
|
+
"@djangocfg/imgai": "^2.1.103",
|
|
137
|
+
"@djangocfg/layouts": "^2.1.103",
|
|
138
|
+
"@djangocfg/typescript-config": "^2.1.103",
|
|
139
139
|
"@types/node": "^24.7.2",
|
|
140
140
|
"@types/react": "19.2.2",
|
|
141
141
|
"@types/react-dom": "19.2.1",
|
package/src/config/constants.ts
CHANGED
|
@@ -31,13 +31,8 @@ export const DJANGOCFG_PACKAGES = [
|
|
|
31
31
|
] as const;
|
|
32
32
|
|
|
33
33
|
// Default packages to transpile
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
'@djangocfg/ui-nextjs',
|
|
37
|
-
'@djangocfg/layouts',
|
|
38
|
-
'@djangocfg/api',
|
|
39
|
-
'@djangocfg/centrifugo',
|
|
40
|
-
] as const;
|
|
34
|
+
// Note: @djangocfg/* packages are pre-built with tsup, no transpilation needed
|
|
35
|
+
export const DEFAULT_TRANSPILE_PACKAGES = [] as const;
|
|
41
36
|
|
|
42
37
|
// Default packages to optimize imports
|
|
43
38
|
export const DEFAULT_OPTIMIZE_PACKAGES = [
|