Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

2.3.2 releases #535

Merged
merged 2 commits into from
Oct 29, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,15 @@
## <small>2.3.2 (2018-10-22)</small>

* Export dist ([9912b5e](https://github.com/vue-generators/vue-form-generator/commit/9912b5e))
* Fix deep property path not working ([fb02f26](https://github.com/vue-generators/vue-form-generator/commit/fb02f26))
* Fix fieldSubmit not calling validate method ([c82c44b](https://github.com/vue-generators/vue-form-generator/commit/c82c44b))
* Fix Rawgit shut down ([34e08a6](https://github.com/vue-generators/vue-form-generator/commit/34e08a6))
* docs: replace duplicated 2.3.0 with 2.3.1 ([69bbfce](https://github.com/vue-generators/vue-form-generator/commit/69bbfce))
* feat(fields): add required attribute to checkbox component ([2b3c7e5](https://github.com/vue-generators/vue-form-generator/commit/2b3c7e5))
* feat(fields): add required attribute to radios component ([8d04252](https://github.com/vue-generators/vue-form-generator/commit/8d04252))



<a name="2.3.1"></a>
## 2.3.1 (2018-10-03)

Expand Down
64 changes: 32 additions & 32 deletions bower.json
Original file line number Diff line number Diff line change
@@ -1,34 +1,34 @@
{
"name": "vue-form-generator",
"version": "2.3.1",
"homepage": "https://github.com/vue-generators/vue-form-generator/",
"authors": [
"Icebob"
],
"description": "A schema-based form generator component for Vue.js",
"main": [
"dist/vfg.js",
"dist/vfg.css",
"dist/vfg-core.js",
"dist/vfg-core.css"
],
"moduleType": [
"amd"
],
"keywords": [
"vue",
"vuejs",
"form",
"generator",
"schema",
"json"
],
"license": "MIT",
"ignore": [
"**/.*",
"node_modules",
"bower_components",
"test",
"tests"
]
"name": "vue-form-generator",
"version": "2.3.2",
"homepage": "https://github.com/vue-generators/vue-form-generator/",
"authors": [
"Icebob"
],
"description": "A schema-based form generator component for Vue.js",
"main": [
"dist/vfg.js",
"dist/vfg.css",
"dist/vfg-core.js",
"dist/vfg-core.css"
],
"moduleType": [
"amd"
],
"keywords": [
"vue",
"vuejs",
"form",
"generator",
"schema",
"json"
],
"license": "MIT",
"ignore": [
"**/.*",
"node_modules",
"bower_components",
"test",
"tests"
]
}
16 changes: 1 addition & 15 deletions build/webpack.build.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -74,22 +74,8 @@ module.exports = [
}
}),
new LodashModuleReplacementPlugin({
shorthands: true,
cloning: true,
currying: true,
caching: true,
collections: true,
exotics: true,
guards: true,
metadata: true,
deburring: true,
unicode: true,
chaining: true,
memoizing: true,
coercions: true,
flattening: true,
paths: false,
placeholders: true
paths: true,
}),
new webpack.optimize.UglifyJsPlugin({
compress: {
Expand Down
2 changes: 1 addition & 1 deletion dist/vfg-core.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions dist/vfg-core.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/vfg.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions dist/vfg.js

Large diffs are not rendered by default.

Loading