thom4parisot / grunt-crx

Grunt task used to package private Chrome Extensions.
https://npmjs.com/grunt-crx
MIT License
118 stars 21 forks source link

src and dest not found #42

Closed titaniumlou closed 9 years ago

titaniumlou commented 9 years ago

gruntfile:

module.exports = function(grunt) {
  grunt.initConfig({
    crx: {
      myPublicPackage: {
        "src": "src/**/*",
        "dest": "dist/crx/"
      }
    }
  });
  grunt.loadNpmTasks('grunt-crx');
};

error:

Running "crx:myPublicPackage" (crx) task
Verifying properties src, dest exist in config...ERROR
>> Unable to process task.
Warning: Required config properties "src", "dest" missing. Use --force to continue.
thom4parisot commented 9 years ago

Thanks @titaniumlou. Problem spotted :-)