Ng-pipes is not available as a built module
SteveVanOpstal opened this issue · 3 comments
SteveVanOpstal commented
Current Behaviour
UNPKG currently does not provide a module, but the index file:
https://unpkg.com/ng-pipes
unpkg is a fast, global content delivery network for stuff that is published to npm.
Desired Behaviour
A module can be made available so the user doesn't need to bundle ng-pipes
it into their own code.
Extra information
- build
ng-pipes
into a module (UMD) - minify it (optional)
- add it to git in a
./dist
or./build
folder - add the location of the module to the
main
parameter ofpackage.json
:
{
...
"main": "build/ng-pipes[.min].js",
...
}
a8m commented
Thanks for your feedback @SteveVanOpstal
Would you mind to do a pull request?
SteveVanOpstal commented
I can definitely do that, but what bundling/packaging technology did you have in mind?
I mainly work with webpack but if you prefer something else I probably can probably set that up too.
a8m commented
I don't have any preferences. webpack sounds good.