electron-archive / grunt-electron-installer

Grunt plugin to build Windows installers for Electron apps
MIT License
402 stars 106 forks source link

Support for several build config (Grunt style) #20

Closed felicienfrancois closed 9 years ago

felicienfrancois commented 9 years ago

The following gruntfile should be supported

...
"create-windows-installer": {
    "myfirstcfg" : {
        appDirectory: "some/path",
        outputDirectory: "target/path"
    },
   "anothercfg": {
        appDirectory: "another/path",
        outputDirectory: "target/other"
    }
},
...

But I get the following error when i run grunt create-windows-installer:myfirstcfg:

Required config property "create-windows-installer.appDirectory" missing
techninja commented 9 years ago

Seconded. April 10?! Sheesh. I'll see if I can't make a PR for this.

techninja commented 9 years ago

Done! #43 I even tested this and it looks like I'll be running it with my builds as well :)

techninja commented 9 years ago

Woot! This just got merged into 0.36.0! @felicienfrancois Test this out and let us know if this should be closed.