Skip to content

Commit 2facc1f

Browse files
committed
* 'master' of https://github.com/vue-generators/vue-form-generator: feat(fields): add required attribute to radios component feat(fields): add required attribute to checkbox component Fix fieldSubmit not calling validate method v2.3.1 Added required attribute to textArea. Build size optimization - Use lodash-webpack-plugin for even better size - full 186 Ko -> 168 Ko - core 160 Ko -> 142 Ko
2 parents b7c6138 + 8d245e7 commit 2facc1f

17 files changed

+3391
-3329
lines changed

CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
<a name="2.3.1"></a>
2+
## 2.3.0 (2018-10-03)
3+
4+
* Use lodash-webpack-plugin for even better size
5+
* Added required attribute to textarea
6+
7+
18
<a name="2.3.0"></a>
29
## 2.3.0 (2018-09-19)
310

bower.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "vue-form-generator",
3-
"version": "2.3.0",
3+
"version": "2.3.1",
44
"homepage": "https://github.com/vue-generators/vue-form-generator/",
55
"authors": [
66
"Icebob"

build/webpack.build.config.js

+2
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ const banner =
1111
" * Released under the MIT License.\n" +
1212
" */\n";
1313
const ExtractTextPlugin = require("extract-text-webpack-plugin");
14+
const LodashModuleReplacementPlugin = require("lodash-webpack-plugin");
1415
const StatsPlugin = require("stats-webpack-plugin");
1516
const vueLoaderConfig = require("./vue-loader.conf");
1617

@@ -72,6 +73,7 @@ module.exports = [
7273
NODE_ENV: JSON.stringify("production")
7374
}
7475
}),
76+
new LodashModuleReplacementPlugin(),
7577
new webpack.optimize.UglifyJsPlugin({
7678
compress: {
7779
warnings: false

dist/vfg-core.css

+3-3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/vfg-core.js

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)