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 c508b33 commit ca5d2caCopy full SHA for ca5d2ca
1 file changed
scripts/build-ks-react.js
@@ -52,17 +52,14 @@ function buildKs(cb) {
52
objectAssign: 'Object.assign',
53
}),
54
],
55
- }).then((bundle) => {
56
- // cache = bundle;
57
- return bundle.write({
58
- format: 'umd',
59
- name: 'app',
60
- strict: true,
61
- sourcemap: false,
62
- // cache,
63
- file: './kitchen-sink/react/js/app.js',
64
- });
65
- }).then(() => {
+ }).then(bundle => bundle.write({
+ format: 'umd',
+ name: 'app',
+ strict: true,
+ sourcemap: false,
+ // cache,
+ file: './kitchen-sink/react/js/app.js',
+ })).then(() => {
66
if (cb) cb();
67
}).catch((err) => {
68
console.log(err);
0 commit comments