Skip to content

Commit 1f5e5f6

Browse files
committed
Updates to webpack config and JSDoc header
1 parent a17c80a commit 1f5e5f6

File tree

2 files changed

+8
-1
lines changed

2 files changed

+8
-1
lines changed

bundle.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
/*!
22
* json-schema-form
33
* @version 1.0.0-alpha.1
4+
* @license MIT
45
* Copyright 2016 JSON Schema Form
56
*/
67
(function webpackUniversalModuleDefinition(root, factory) {

webpack.config.js

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,12 @@ module.exports = {
2323
]
2424
},
2525
plugins: [
26-
new webpack.BannerPlugin('json-schema-form\n@version ' + pjson.version + '\nCopyright 2016 JSON Schema Form')
26+
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')
2733
]
2834
};

0 commit comments

Comments
 (0)