UNPKG

1.83 kBMarkdownView Raw
1# Changelog
2
3# 2.4.0
4- make react optional
5
6# 2.3.0
7- `webpack.client.config.js` and `webpack.server.config.js` is now recognized (may help with file sorting).
8- added global define `process.env.PRODUCTION` (boolean)
9- in a webpack config, you can use shorthand property `loaders`, which is merged with `module.rules`.
10- in a webpack config, you can use custom property `html` to override options to HtmlWebPackPlugin
11
12# 2.2.6 [2019-06-30]
13- Fix custom webpack plugins
14
15# 2.2.3 [2019-06-29]
16- Change routing slightly
17
18# 2.2.2 [2019-06-23]
19- Add `-p` to change ports, and also looks at `$PORT`
20
21# 2.0.6 [2019-06-08]
22- Fix Core JS 2 and 3 problems.
23
24# 2.0.5 [2019-06-08]
25- Downgrade `core-js` to version 2
26
27# 2.0.0 [2019-06-08]
28- Added `clean` and `production` commands
29- Rewrote starter template
30- Clean up logging
31- Fix some webpack configuration problems.
32- Typescript definitions
33- **breaking change**: You import `fullstack-system` instead of `@fullstack-system`
34- **breaking change**: You import `connect` on client instead of `io`
35
36# 1.4.0 [2019-06-01]
37- Add build script
38- Various babel plugins enabled by default now.
39
40# 1.3.2 [2019-05-31]
41- Change webpack to make absolute paths (inside src) work.
42
43# 1.3.1 [2019-05-31]
44- Bugfix: Removed warnings about config files.
45
46# 1.3.0 [2019-05-10]
47- You can extend webpack configs by adding
48 - `webpack.config.js` global changes
49 - `client.webpack.config.js` client webpack changes
50 - `server.webpack.config.js` server webpack changes
51 - `babel.config.js` babel changes
52
53# 1.2.0 [2019-05-10]
54- You can replace the default index.html by updating `src/index.html`
55
56# 1.1.0 [2019-05-10]
57- `src/static` folder for static resources.
58- Remake the `useSocket` hook, it is now a single global socket.
59
60# 1.0.0 [2019-05-10]
61- Initial Version
62- Missing Build and Production commands.