Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
Size: Mime:
# Copyright 2015 Pants project contributors (see CONTRIBUTORS.md).
# Licensed under the Apache License, Version 2.0 (see LICENSE).

from pants.contrib.node.targets.node_module import NodeModule
from pants.contrib.scalajs.targets.scala_js_target import ScalaJSTarget


class ScalaJSBinary(ScalaJSTarget, NodeModule):
    """A binary javascript blob built from a collection of ScalaJSLibrary targets.

    Extends NodeModule to allow consumption by NPM and node.
    """

    pass