## 0.29.22

* Patches
    * Admin will not ship with its own node_modules installed. This fix ensures that NPM install is run before everything else.

    From the `bin/gha` shell script;
    ```javascript
    .action(function(){
        console.log(process.cwd());
        console.log('!!!!!!!!! INSTALLING ADMIN DEPENDENCIES !!!!!!!!!!');
        console.log('Could take a second.')
        require('child_process').exec('npm install', { cwd : process.cwd() }, function() {
            console.log('!!!!!!!!! BUILDING ADMIN !!!!!!!!!!');
            require('grunt').cli();
        });
    });
    ```
