UNPKG

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