UNPKG

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