We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a17c80a commit 1f5e5f6Copy full SHA for 1f5e5f6
bundle.js
@@ -1,6 +1,7 @@
1
/*!
2
* json-schema-form
3
* @version 1.0.0-alpha.1
4
+ * @license MIT
5
* Copyright 2016 JSON Schema Form
6
*/
7
(function webpackUniversalModuleDefinition(root, factory) {
webpack.config.js
@@ -23,6 +23,12 @@ module.exports = {
23
]
24
},
25
plugins: [
26
- new webpack.BannerPlugin('json-schema-form\n@version ' + pjson.version + '\nCopyright 2016 JSON Schema Form')
+ new webpack.BannerPlugin(
27
+ 'json-schema-form\n' +
28
+ '@version ' +
29
+ pjson.version + '\n' +
30
+ '@link https://github.com/json-schema-form/json-schema-form-core\n' +
31
+ '@license MIT\n' +
32
+ 'Copyright (c) 2016 JSON Schema Form')
33
34
};
0 commit comments