einav
einav

Reputation: 609

"NPM Install" of only minified files in the module

I want to publish a module through npm.

I want to publish the .js and .min.js files in order for the npm to install each file separately depending on the environment.

Can I do that?

Upvotes: 1

Views: 610

Answers (1)

Marvin Thobejane
Marvin Thobejane

Reputation: 2250

No. That would be a new npm feature or would require a separate package per device

Also see: npm install minified version only

Upvotes: 1

Related Questions