diff --git a/LICENSE b/LICENSE index 0ecda07..81a9e48 100644 --- a/LICENSE +++ b/LICENSE @@ -1,6 +1,6 @@ MIT License -Copyright (c) 2017 brocessing +Copyright (c) 2018 brocessing Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/README.md b/README.md index d022aa7..c906ad1 100644 --- a/README.md +++ b/README.md @@ -7,7 +7,7 @@
- Version + Version License
diff --git a/package.json b/package.json index 6ff0eff..fb8f501 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "kirby-webpack", - "version": "0.9.0", + "version": "0.9.1", "description": "A kirby starter-kit with modern frontend tools", "main": "index.js", "scripts": { diff --git a/scripts/webpack-build.js b/scripts/webpack-build.js index 01c28fa..42a3000 100644 --- a/scripts/webpack-build.js +++ b/scripts/webpack-build.js @@ -11,13 +11,11 @@ const sh = require('kool-shell/namespaced')('__kirbywebpack') const compiler = webpack(webpackConfig) -compiler.apply( - new ProgressBarPlugin({ - format: sh.colors.gray('build [:bar] :percent'), - clear: true, - summary: false - }) -) +new ProgressBarPlugin({ + format: sh.colors.gray('build [:bar] :percent'), + clear: true, + summary: false +}).apply(compiler) Promise.resolve() .then(() => fs.remove(path.join(user.paths.kirby.assets, 'builds')))