dinou 1.9.0 → 1.9.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/CHANGELOG.md ADDED
@@ -0,0 +1,156 @@
1
+ # Changelog
2
+
3
+ All notable changes to this project will be documented in this file.
4
+
5
+ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6
+ and this project adheres to [Semantic Versioning](https://semver.org/).
7
+
8
+ ## [1.9.2]
9
+
10
+ ### Changed
11
+
12
+ - README.md.
13
+
14
+ - Don't show overlay of react-refresh on error.
15
+
16
+ ## [1.9.1]
17
+
18
+ ### Added
19
+
20
+ - CHANGELOG.md.
21
+
22
+ ## [1.9.0]
23
+
24
+ ### Added
25
+
26
+ - `react-refresh` for better hot reloading during development.
27
+
28
+ ## [1.8.0]
29
+
30
+ ### Changed
31
+
32
+ - Separation of webpack folders, one for production (`dist3`) and another for development (`____public____`).
33
+
34
+ ## [1.7.2]
35
+
36
+ ### Fixed
37
+
38
+ - Use of images.
39
+
40
+ ## [1.7.1]
41
+
42
+ ### Fixed
43
+
44
+ - Attempt to fix the use of images (partially fixed).
45
+
46
+ ## [1.7.0]
47
+
48
+ ### Added
49
+
50
+ - ISR and SSG.
51
+
52
+ ## [1.6.0]
53
+
54
+ ### Added
55
+
56
+ - Error handling.
57
+
58
+ ## [1.5.0]
59
+
60
+ ### Added
61
+
62
+ - Reset layout functionality.
63
+
64
+ ## [1.4.3]
65
+
66
+ ### Fixed
67
+
68
+ - tsconfig-paths for babel.
69
+
70
+ ## [1.4.2]
71
+
72
+ ### Fixed
73
+
74
+ - Use babel again instead of esbuild.
75
+
76
+ ## [1.4.1]
77
+
78
+ ⚠️ **WARNING:** This version contains major issues due to the switch to `esbuild`. It is recommended to skip directly to version `1.4.2` or later.
79
+
80
+ ### Fixed
81
+
82
+ - Webpack infinite loop.
83
+
84
+ ## [1.4.0]
85
+
86
+ ⚠️ **WARNING:** This version contains major issues due to the switch to `esbuild`. It is recommended to skip directly to version `1.4.2` or later.
87
+
88
+ ### Added
89
+
90
+ - Support for base alias (absolute import paths).
91
+
92
+ ## [1.3.1]
93
+
94
+ ⚠️ **WARNING:** This version contains major issues due to the switch to `esbuild`. It is recommended to skip directly to version `1.4.2` or later.
95
+
96
+ ### Changed
97
+
98
+ - README.md.
99
+
100
+ ## [1.3.0]
101
+
102
+ ⚠️ **WARNING:** This version contains major issues due to the switch to `esbuild`. It is recommended to skip directly to version `1.4.2` or later.
103
+
104
+ ### Added
105
+
106
+ - Use of images.
107
+
108
+ ## [1.2.0]
109
+
110
+ ⚠️ **WARNING:** This version contains major issues due to the switch to `esbuild`. It is recommended to skip directly to version `1.4.2` or later.
111
+
112
+ ### Added
113
+
114
+ - Tailwind.css and styles support.
115
+
116
+ ## [1.1.1]
117
+
118
+ ### Changed
119
+
120
+ - README.md
121
+
122
+ ## [1.1.0]
123
+
124
+ ### Added
125
+
126
+ - Capability to manage `favicons` folder.
127
+
128
+ ## [1.0.4]
129
+
130
+ ### Changed
131
+
132
+ - README.md
133
+
134
+ ## [1.0.3]
135
+
136
+ ### Added
137
+
138
+ - Preparation for ISR
139
+
140
+ ## [1.0.2]
141
+
142
+ ### Fixed
143
+
144
+ - Webpack config file.
145
+
146
+ ## [1.0.1]
147
+
148
+ ### Changed
149
+
150
+ - Apparently nothing changed
151
+
152
+ ## [1.0.0]
153
+
154
+ ### Added
155
+
156
+ - Initial commit.
package/README.md CHANGED
@@ -118,6 +118,8 @@ dinou main features are:
118
118
 
119
119
  - [Eject dinou](#eject-dinou)
120
120
 
121
+ - [📦 Changelog](#-changelog)
122
+
121
123
  - [License](#license)
122
124
 
123
125
  ## Routing system, layouts, pages, not found pages, ...
@@ -1213,6 +1215,10 @@ Run `npm run build` (or `npx dinou build`) to build the app and `npm start` (or
1213
1215
 
1214
1216
  - You can eject dinou with the command `npm run eject` (or `npx dinou eject`). This will copy the files defining dinou in the root folder of the project (grouped in a `dinou` folder). You will have full control and customization capabilities.
1215
1217
 
1218
+ ## 📦 Changelog
1219
+
1220
+ For a detailed list of changes, enhancements, and bug fixes across versions, see the [CHANGELOG.md](./CHANGELOG.md).
1221
+
1216
1222
  ## License
1217
1223
 
1218
1224
  dinou is licensed under the [MIT License](https://github.com/roggc/dinou/blob/master/LICENSE.md).
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "dinou",
3
- "version": "1.9.0",
3
+ "version": "1.9.2",
4
4
  "description": "Minimal React 19 Framework",
5
5
  "main": "index.js",
6
6
  "bin": {
package/webpack.config.js CHANGED
@@ -119,7 +119,7 @@ module.exports = {
119
119
  ],
120
120
  },
121
121
  plugins: [
122
- isDevelopment && new ReactRefreshWebpackPlugin(),
122
+ isDevelopment && new ReactRefreshWebpackPlugin({ overlay: false }),
123
123
  new ReactServerWebpackPlugin({ isServer: false }),
124
124
  new CopyWebpackPlugin({
125
125
  patterns: [