Skip to content

Commit

Permalink
Merge 11929a3 into 47df9cd
Browse files Browse the repository at this point in the history
  • Loading branch information
MohamedLamineAllal committed Mar 18, 2023
2 parents 47df9cd + 11929a3 commit 7a41b02
Show file tree
Hide file tree
Showing 3 changed files with 34 additions and 10 deletions.
22 changes: 17 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,11 @@
<a href="https://www.npmjs.org/package/laravel-mix-glob">
<img src="https://img.shields.io/npm/v/laravel-mix-glob.svg?style=flat-square" alt="npm version"/>
</a>
<a href="https://github.com/MohamedLamineAllal/laravel-mix-glob.js/actions?query=workflow%3ACI+branch%3Amain">
<img src="https://img.shields.io/github/actions/workflow/status/MohamedLamineAllal/laravel-mix-glob.js/ci.yml?branch=main" alt="Build Status">
<a href="https://github.com/MohamedLamineAllal/laravel-mix-glob/actions?query=workflow%3ACI+branch%3Amaster">
<img src="https://img.shields.io/github/actions/workflow/status/MohamedLamineAllal/laravel-mix-glob/ci.yml?branch=master" alt="Build Status">
</a>
<a href='https://coveralls.io/github/MohamedLamineAllal/laravel-mix-glob.js?branch=main'>
<img src='https://coveralls.io/repos/github/MohamedLamineAllal/laravel-mix-glob.js/badge.svg?branch=main' alt='Coverage Status' />
<a href='https://coveralls.io/github/MohamedLamineAllal/laravel-mix-glob?branch=master'>
<img src='https://coveralls.io/repos/github/MohamedLamineAllal/laravel-mix-glob/badge.svg?branch=master' alt='Coverage Status' />
</a>
<a href='LICENSE'>
<img src='https://img.shields.io/badge/license-MIT-blue.svg?style=flat' alt='Coverage Status' />
Expand All @@ -34,10 +34,14 @@ This extension add support for globs usage with an extensive concise api. For a

> **V2 is out**. A full re-write. And this document is for it.
Here is the [v1 documentation](./documenation/v1/README.md).
Here is the [v1 documentation](./documentation/v1/README.md).

If you used v1. It's advised to migrate toward v2. As it have a more concise api. And more solid flexible system. Plus more fixes or new features. V1 is no more maintained.

Other extensions to check:
- [laravel-mix-webpack-config](https://www.npmjs.com/package/laravel-mix-webpack-config)
- [laravel-mix-listen](https://www.npmjs.com/package/laravel-mix-listen)

## What's new in v2

- Full re-write using typescript and modularity (cleaner code).
Expand Down Expand Up @@ -1268,6 +1272,14 @@ SILENT_LOG
"watch": "cross-env SILENT_LOG=true npx mix watch"
```

## Other laravel mix extensions

Here bellow some extension that are helpful for debugging and logging that i built:

- [laravel-mix-webpack-config](https://www.npmjs.com/package/laravel-mix-webpack-config) to access webpack configuration as object or string unlike `dump()` which only print to console. With extension you can write to file or whatever you want. Check the examples.

- [laravel-mix-listen](https://www.npmjs.com/package/laravel-mix-listen) A laravel mix extension that allow us to listen to Mix internal events. More advanced then laravel-mix-webpack-config. It allow to listen to many events. Including to access webpack config. At different stages. Check the examples.

## Issues and features requests

Don't hesitate to fill an issue for any bug, or feature request.
Expand Down
8 changes: 8 additions & 0 deletions documentation/Footer.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
## Other laravel mix extensions

Here bellow some extension that are helpful for debugging and logging that i built:

- [laravel-mix-webpack-config](https://www.npmjs.com/package/laravel-mix-webpack-config) to access webpack configuration as object or string unlike `dump()` which only print to console. With extension you can write to file or whatever you want. Check the examples.

- [laravel-mix-listen](https://www.npmjs.com/package/laravel-mix-listen) A laravel mix extension that allow us to listen to Mix internal events. More advanced then laravel-mix-webpack-config. It allow to listen to many events. Including to access webpack config. At different stages. Check the examples.

## Issues and features requests

Don't hesitate to fill an issue for any bug, or feature request.
Expand Down
14 changes: 9 additions & 5 deletions documentation/Header.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,11 @@
<a href="https://www.npmjs.org/package/laravel-mix-glob">
<img src="https://img.shields.io/npm/v/laravel-mix-glob.svg?style=flat-square" alt="npm version"/>
</a>
<a href="https://github.com/MohamedLamineAllal/laravel-mix-glob.js/actions?query=workflow%3ACI+branch%3Amain">
<img src="https://img.shields.io/github/actions/workflow/status/MohamedLamineAllal/laravel-mix-glob.js/ci.yml?branch=main" alt="Build Status">
<a href="https://github.com/MohamedLamineAllal/laravel-mix-glob/actions?query=workflow%3ACI+branch%3Amaster">
<img src="https://img.shields.io/github/actions/workflow/status/MohamedLamineAllal/laravel-mix-glob/ci.yml?branch=master" alt="Build Status">
</a>
<a href='https://coveralls.io/github/MohamedLamineAllal/laravel-mix-glob.js?branch=main'>
<img src='https://coveralls.io/repos/github/MohamedLamineAllal/laravel-mix-glob.js/badge.svg?branch=main' alt='Coverage Status' />
<a href='https://coveralls.io/github/MohamedLamineAllal/laravel-mix-glob?branch=master'>
<img src='https://coveralls.io/repos/github/MohamedLamineAllal/laravel-mix-glob/badge.svg?branch=master' alt='Coverage Status' />
</a>
<a href='LICENSE'>
<img src='https://img.shields.io/badge/license-MIT-blue.svg?style=flat' alt='Coverage Status' />
Expand All @@ -34,6 +34,10 @@ This extension add support for globs usage with an extensive concise api. For a

> **V2 is out**. A full re-write. And this document is for it.
Here is the [v1 documentation](../documenation/v1/README.md).
Here is the [v1 documentation](../documentation/v1/README.md).

If you used v1. It's advised to migrate toward v2. As it have a more concise api. And more solid flexible system. Plus more fixes or new features. V1 is no more maintained.

Other extensions to check:
- [laravel-mix-webpack-config](https://www.npmjs.com/package/laravel-mix-webpack-config)
- [laravel-mix-listen](https://www.npmjs.com/package/laravel-mix-listen)

0 comments on commit 7a41b02

Please sign in to comment.