kriszyp / put-selector

A high-performance, lightweight function for creating and manipulating DOM elements with succinct, elegant, familiar CSS selector-based syntax
Other
290 stars 39 forks source link

package.js fixes, primarily for node-html #17

Closed kfranqueiro closed 11 years ago

kfranqueiro commented 11 years ago

This pull request includes 2 commits.

The primary concern is addressed in dac833d, which tags the node-html module as copyOnly instead of marking it as not AMD. Given that this is a module intended for use with node, it's kind of superfluous for the build to process it anyway. This resolves two things:

The other commit moves the regular expression for the amd resource tag into a variable, matching how the test resource tag works.

kriszyp commented 11 years ago

Thank you!