Skip to content

Commit

Permalink
Remove Tapable.apply error
Browse files Browse the repository at this point in the history
  • Loading branch information
pqml committed Aug 9, 2018
1 parent a4186da commit 6fd0ad4
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 10 deletions.
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

<div align="center">
<!-- Version -->
<a href="https://github.com/brocessing/kirby-webpack/releases"><img src="https://img.shields.io/badge/version-0.9.0-green.svg?style=flat-square" alt="Version"/></a>
<a href="https://github.com/brocessing/kirby-webpack/releases"><img src="https://img.shields.io/badge/version-0.9.1-green.svg?style=flat-square" alt="Version"/></a>
<!-- License -->
<a href="https://raw.githubusercontent.com/brocessing/kirby-webpack/master/LICENSE"><img src="https://img.shields.io/badge/license-MIT-blue.svg?style=flat-square" alt="License" /></a>
</div>
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -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": {
Expand Down
12 changes: 5 additions & 7 deletions scripts/webpack-build.js
Original file line number Diff line number Diff line change
Expand Up @@ -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')))
Expand Down

0 comments on commit 6fd0ad4

Please sign in to comment.