Ignore:
Timestamp:
03/14/14 12:36:58 (11 years ago)
Author:
hendrikvanantwerpen
Message:

Enable deployment with Grunt.

Location:
Dev/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • Dev/trunk

    • Property svn:ignore
      •  

        old new  
        11build
        2 quod-erat.git
  • Dev/trunk/node_modules/grunt/node_modules/rimraf/README.md

    r484 r516  
    1 A `rm -rf` for node.
     1`rm -rf` for node.
    22
    33Install with `npm install rimraf`, or just drop rimraf.js somewhere.
     
    1010errors are handled for you:
    1111
    12 * `EBUSY` -  rimraf will back off a maximum of opts.maxBusyTries times
    13   before giving up.
    14 * `EMFILE` - If too many file descriptors get opened, rimraf will
    15   patiently wait until more become available.
    16 
     12* Windows: `EBUSY` and `ENOTEMPTY` - rimraf will back off a maximum of
     13  `opts.maxBusyTries` times before giving up.
     14* `ENOENT` - If the file doesn't exist, rimraf will return
     15  successfully, since your desired outcome is already the case.
    1716
    1817## rimraf.sync
     
    2019It can remove stuff synchronously, too.  But that's not so good.  Use
    2120the async API.  It's better.
     21
     22## CLI
     23
     24If installed with `npm install rimraf -g` it can be used as a global
     25command `rimraf <path>` which is useful for cross platform support.
     26
     27## mkdirp
     28
     29If you need to create a directory recursively, check out
     30[mkdirp](https://github.com/substack/node-mkdirp).
Note: See TracChangeset for help on using the changeset viewer.