a8m/ng-pipes

Ng-pipes is not available as a built module

SteveVanOpstal opened this issue · 3 comments

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

  1. build ng-pipes into a module (UMD)
  2. minify it (optional)
  3. add it to git in a ./dist or ./build folder
  4. add the location of the module to the main parameter of package.json:
{
...
  "main": "build/ng-pipes[.min].js",
...
}
a8m commented

Thanks for your feedback @SteveVanOpstal
Would you mind to do a pull request?

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.