npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

grunt-closure-tools-murally

v0.6.13

Published

Google Closure Library Tools for grunt, Compiler, DepsWriter, Builder.

Downloads

11

Readme

Grunt Closure Tools

Google Closure Tools for grunt:

  • Compiler Compile your JS code using the powerful google closure compiler
  • Builder Concatenate your JS codebase to a single file, optionally also compile it
  • DepsWriter Calculate dependencies of your JS files and generate deps.js

Getting Started

Install the module with: npm install grunt-closure-tools

npm install grunt-closure-tools

Then register the task by adding the following line to your grunt.js:

grunt.loadNpmTasks('grunt-closure-tools');

Documentation

All three tasks (compiler, builder and depswriter) are multitasks, so you can specify several targets depending on the complexity of your project.

Closure Compiler

The Closure Compiler task has two requirements.

  1. closureCompiler The location of the compiler. Find the latest compiler.jar file here.
  2. js The js files you want to compile.

You can fully configure how the compiler will behave, by setting directives in the options. Every key will be used as a directive for the compiler.

You can use grunt file syntax (<config:...> or path/**/*.js) for the js directive and for declaring externs, set in options.externs.

Read more about the closure compiler here.

Sample Config for The Closure Compiler

closureCompiler:  {
  // any name that describes your task
  targetName: {
    // [Required] Path to closure compiler
    closureCompiler: 'path/to/closure/compiler.jar',

    // [Required] Target files to compile. Can be a string, an array of strings
    // or grunt file syntax (<config:...>, *)
    js: 'path/to/file.js',

    // [Optional] set an output file
    output_file: 'path/to/compiled_file.js',

    // [Optional] set to true if you want to check if files were modified
    // before starting compilation (can save some time in large sourcebases)
    checkModified: true,

    // [Optional] Set Closure Compiler Directives here
    options: {
      /**
       * Keys will be used as directives for the compiler
       * values can be strings or arrays.
       * If no value is required use null
       *
       * The directive 'externs' is treated as a special case
       * allowing a grunt file syntax (<config:...>, *)
       *
       * Following are some directive samples...
       */
       compilation_level: 'ADVANCED_OPTIMIZATIONS',
       externs: ['path/to/file.js', '/source/**/*.js'],
       define: ["'goog.DEBUG=false'"],
       warning_level: 'verbose',
       jscomp_off: ['checkTypes', 'fileoverviewTags'],
       summary_detail_level: 3,
       output_wrapper: '(function(){%output%}).call(this);'
    }
  }
}

Closure Builder

The Closure Builder task has 2 required directives:

  1. A way to find the closurebuilder.py file. One of the following two directives are required: * closureLibraryPath A path to the Google Closure Library. From there we can infer the location of the closurebuilder.py file * builder Directly reference the closurebuilder.py file
  2. An input method must be defined. One of the following two directives is required: * inputs String, array or grunt file syntax to define build targets * namespaces String or array to define namespaces to build

The builder has the ability to compile on-the-fly the built files. To enable this option you need to set the option compile to boolean true and then set the location of the compiler.jar file via the compiler directive.

You can set all the compiler directives in the compiler_options object. The js directive is no longer required, as the builder takes care of that. The compiler directives follow the same logic as the ones in the Closure Compiler multitask described above.

Read more about the closure builder in this link.

Sample Config for The Closure Builder

closureBuilder:  {
  // any name that describes your operation
  targetName: {
    // [Required] To find the builder executable we need either the path to
    //    closure library or directly the filepath to the builder:
    closureLibraryPath: 'path/to/closure-library', // path to closure library
    builder: 'path/to/closurebuilder.py', // filepath to builder

    // [Required] One of the two following options are required:
    inputs: 'string|Array', // input files (can just be the entry point)
    namespaces: 'string|Array', // namespaces

    // [Optional] paths to be traversed to build the dependencies
    root: 'string|Array',

    // [Optional] if not set, will output to stdout
    output_file: '',

    // [Optional] output_mode can be 'list', 'script' or 'compiled'.
    //    If compile is set to true, 'compiled' mode is enforced
    output_mode: '',

    // [Optional] if we want builder to also compile
    compile: false, // boolean
    compiler: '', // the location of the compiler.jar
    compiler_options: {
      /**
       * Go wild here...
       * any key will be used as a directive for the compiler
       * value can be a string or an array
       * If no value is required use null
       */
    }
  }
}

Closure DepsWriter

The Closure DepsWriter task has 1 required directive:

  1. A way to find the depswriter.py file. One of the following two directives is required: * closureLibraryPath A path to the Google Closure Library. From there we can infer the location of the depswriter.py file * depswriter Directly reference the depswriter.py file

Read more about depswriter here.

Sample Config for The Closure DepsWriter

closureDepsWriter: {
   // any name that describes your operation
  targetName: {
    // [Required] To find the depswriter executable we need either the path to
    //    closure library or directly the filepath to the depswriter:
    closureLibraryPath: 'path/to/closure-library', // path to closure library
    depswriter: 'path/to/depswriter.py', // filepath to depswriter

    // [Optional] Set file targets. Can be a string, array or
    //    grunt file syntax (<config:...> or *)
    files: 'path/to/awesome.js',

    // [Optional] If not set, will output to stdout
    output_file: '',

    options: {
      // [Optional] Root directory to scan. Can be string or array
      root: ['source/ss', 'source/closure-library', 'source/showcase'],

      // [Optional] Root with prefix takes a pair of strings separated with a space,
      //    so proper way to use it is to suround with quotes.
      //    can be a string or array
      root_with_prefix: '"source/ss ../../ss"',

      // [Optional] string or array
      path_with_depspath: ''
    }
  }
}

Release History

  • v0.6.12, 12 December 2012

    • fixed issue #14, when closureBuilder run from a grunt watch task, the root param got lost.
    • Internal file/folder structure works by scottlangendyk
  • v0.6.11, 07 December 2012

    • Added support for symlinks in file/path parameters (for compiler, builder, and depswriter), using stat.isFile() || stat.isSymboliclink() #12 (by jbenet).
  • v0.6.10, 06 December 2012

    • DepsWriter outputs to a file named undefined if configured output_file does not exist #11 (by scottlangendyk).
  • v0.6.9, 04 December 2012

    • DepsWriter's closureLibraryPath and output_file paths now parse Grunt's directives.

...read the full changelog.

License

Copyright (c) 2012 Thanasis Polychronakis Licensed under the APACHE2 license.

githalytics.com alpha