Skip to content

Commit

Permalink
chore: Update build system (#514)
Browse files Browse the repository at this point in the history
* Update build system

* Update webpack.config.js

* Updated assets

* Update css asset
  • Loading branch information
fsbraun committed Jan 29, 2024
1 parent 89589a8 commit cfc0747
Show file tree
Hide file tree
Showing 7 changed files with 12,195 additions and 27,032 deletions.
2 changes: 1 addition & 1 deletion .nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
16
20

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
/*! jQuery v1.11.3 | (c) 2005, 2015 jQuery Foundation, Inc. | jquery.org/license */

/*! js-cookie v2.1.2 | MIT */
3 changes: 2 additions & 1 deletion gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,8 @@ const webpackBundle = function (opts) {

webpack(config, function (err, stats) {
if (err) {
throw new PluginError('webpack', err);
console.log(err, stats);
throw new Error('webpack:' + err);
}
log('[webpack]', stats.toString({ colors: true }));
if (typeof done !== 'undefined' && (!opts || !opts.watch)) {
Expand Down
Loading

0 comments on commit cfc0747

Please sign in to comment.